diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..232d324 --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +LAMPCAE \ No newline at end of file diff --git a/.idea/FastCAE.iml b/.idea/FastCAE.iml new file mode 100644 index 0000000..f08604b --- /dev/null +++ b/.idea/FastCAE.iml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/.idea/QtSettings.xml b/.idea/QtSettings.xml new file mode 100644 index 0000000..e35db1d --- /dev/null +++ b/.idea/QtSettings.xml @@ -0,0 +1,26 @@ + + + + + + \ No newline at end of file diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100644 index 0000000..f603881 --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..79ee123 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..79b3c94 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..a65901d --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..c132c9d --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index 888e557..1402d21 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,16 +4,13 @@ # 指定所需cmake的最低版本 cmake_minimum_required(VERSION 3.21 FATAL_ERROR) # 设置项目名称 语言 -project(FastCAE +project(LAMPCAE VERSION 2.5.0 LANGUAGES CXX - DESCRIPTION "LAMPCAE,基于FastCAE的测量仿真分析软件。" - HOMEPAGE_URL "http://124.16.188.131:9699/web/server3/build/#/Guide/" + DESCRIPTION "LAMPCAE ,基于 FastCAE,一款免费的CAE仿真软件研发支撑平台。" + HOMEPAGE_URL "http://www.LAMPCAE.com/" ) -# 启动vcpkg -set(CMAKE_TOOLCHAIN_FILE D:/vcpkg/scripts/buildsystems/vcpkg.cmake) - #----------------------------------------------------------------------------- # 编译系统设置 #----------------------------------------------------------------------------- @@ -31,12 +28,12 @@ set(BUILD_SHARED_LIBS ON) # 检测操作系统 #----------------------------------------------------------------------------- if(CMAKE_SYSTEM_NAME STREQUAL "Linux") - set(FASTCAE_LINUX True) + set(LAMPCAE_LINUX True) if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) set(CMAKE_INSTALL_PREFIX "/opt/${PROJECT_NAME}" CACHE PATH "${PROJECT_NAME}的安装路径" FORCE) endif() elseif(CMAKE_SYSTEM_NAME STREQUAL "Windows") - set(FASTCAE_WIN True) + set(LAMPCAE_WIN True) if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) set(CMAKE_INSTALL_PREFIX "c:/Program Files/${PROJECT_NAME}" CACHE PATH "${PROJECT_NAME}的安装路径" FORCE) endif() @@ -47,14 +44,15 @@ endif() #----------------------------------------------------------------------------- # 测试环境定义(如果在支持cmake系统的IDE中编写代码,可以打开以下注释,并将路径修改为自己的Qt路径) #----------------------------------------------------------------------------- +set(LAMPCAE_WIN ON) set(CMAKE_INSTALL_PREFIX "${CMAKE_SOURCE_DIR}/install") message(STATUS "${PROJECT_NAME} will be installed to ${CMAKE_INSTALL_PREFIX}") if (NOT DEFINED Qt5_DIR) - if(FASTCAE_LINUX) + if(LAMPCAE_LINUX) set(Qt5_DIR "/opt/Qt5.14.2/5.14.2/gcc_64/lib/cmake/Qt5" CACHE PATH "Qt5Config.cmake所在目录" FORCE) - elseif(FASTCAE_WIN) - set(Qt5_DIR "D:/Qt/Qt5.14.2/5.14.2/msvc2017_64/lib/cmake/Qt5" CACHE PATH "Qt5Config.cmake所在目录" FORCE) + elseif(LAMPCAE_WIN) + set(Qt5_DIR "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5" CACHE PATH "Qt5Config.cmake所在目录" FORCE) endif() endif() @@ -62,14 +60,14 @@ endif() # 编译选项设置 #----------------------------------------------------------------------------- # 是否需要编译调试程序 -option(FASTCAE_ENABLE_DEV "ON:开启代码调试,OFF:仅安装程序" ON) +option(LAMPCAE_ENABLE_DEV "ON:开启代码调试,OFF:仅安装程序" ON) # 是否自动下载依赖库 -option(FASTCAE_AUTO_DOWNLOAD "如果extlib不存在,则自动下载(git)依赖库" ON) -option(FASTCAE_ENABLE_OPENMP "使用OpenMP" OFF) -option(FASTCAE_ENABLE_MPI "使用MPI" OFF) -option(FASTCAE_DOXYGEN_DOC "生成Doxygen文档" OFF) -option(FASTCAE_INSTALLATION_PACKAGE "生成${PROJECT_NAME}安装包" ON) -option(FASTCAE_DEBUG_INFO "输出调试信息" ON) +option(LAMPCAE_AUTO_DOWNLOAD "如果extlib不存在,则自动下载(git)依赖库" ON) +option(LAMPCAE_ENABLE_OPENMP "使用OpenMP" OFF) +option(LAMPCAE_ENABLE_MPI "使用MPI" OFF) +option(LAMPCAE_DOXYGEN_DOC "生成Doxygen文档" ON) +option(LAMPCAE_INSTALLATION_PACKAGE "生成${PROJECT_NAME}安装包" ON) +option(LAMPCAE_DEBUG_INFO "输出调试信息" ON) #----------------------------------------------------------------------------- # 指定编译选项 @@ -96,27 +94,27 @@ endif() #----------------------------------------------------------------------------- # 从系统查找OpenMP(动态库引入使用:OpenMP::OpenMP_CXX) #----------------------------------------------------------------------------- -if(FASTCAE_ENABLE_OPENMP) +if(LAMPCAE_ENABLE_OPENMP) find_package(OpenMP) if(OpenMP_CXX_FOUND) - add_definitions(-DFASTCAE_HAS_OPENMP) + add_definitions(-DLAMPCAE_HAS_OPENMP) endif() endif() #----------------------------------------------------------------------------- # 从系统查找MPI(头文件路径:${MPI_CXX_INCLUDE_DIRS} 动态库引入使用:MPI::MPI_CXX) #----------------------------------------------------------------------------- -if(FASTCAE_ENABLE_MPI) +if(LAMPCAE_ENABLE_MPI) find_package(MPI) if(MPI_CXX_FOUND) - add_definitions(-DFASTCAE_HAS_MPI) + add_definitions(-DLAMPCAE_HAS_MPI) endif() endif() #----------------------------------------------------------------------------- # 输出调试信息 #----------------------------------------------------------------------------- -if(FASTCAE_DEBUG_INFO) +if(LAMPCAE_DEBUG_INFO) add_definitions(-DOUTPUT_DEBUG_INFO) endif() @@ -136,14 +134,8 @@ list(APPEND QtNeededModules OpenGL # Qwt PrintSupport # QwtPolar DBus - Qml - Sql - PrintSupport - QuickWidgets - DataVisualization - Charts ) -if(FASTCAE_LINUX) +if(LAMPCAE_LINUX) list(APPEND QtNeededModules XcbQpa) endif() @@ -160,11 +152,11 @@ endif() #----------------------------------------------------------------------------- # 从远程检索依赖库 #----------------------------------------------------------------------------- -if(FASTCAE_AUTO_DOWNLOAD AND NOT EXISTS ${CMAKE_SOURCE_DIR}/extlib) - if(FASTCAE_WIN) - set(_extlibGitAddr "https://gitee.com/DISOGitee/FastCAEWinExtlib.git") - elseif(FASTCAE_LINUX) - set(_extlibGitAddr "https://gitee.com/DISOGitee/FastCAELinuxExtlib.git") +if(LAMPCAE_AUTO_DOWNLOAD AND NOT EXISTS ${CMAKE_SOURCE_DIR}/extlib) + if(LAMPCAE_WIN) + set(_extlibGitAddr "https://gitee.com/DISOGitee/LAMPCAEWinExtlib.git") + elseif(LAMPCAE_LINUX) + set(_extlibGitAddr "https://gitee.com/DISOGitee/LAMPCAELinuxExtlib.git") endif() find_package(Git REQUIRED) @@ -183,18 +175,12 @@ if(FASTCAE_AUTO_DOWNLOAD AND NOT EXISTS ${CMAKE_SOURCE_DIR}/extlib) endif() #----------------------------------------------------------------------------- -# 引入FastCAE的依赖库 +# 引入LAMPCAE的依赖库 #----------------------------------------------------------------------------- list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake") -# boost -set(BOOST_ROOT "D:/vcpkg/installed/x64-windows") -set(BOOST_INCLUDE_DIRS "${BOOST_ROOT}/include") -set(BOOST_LIBRARY_DIRS "${BOOST_ROOT}/lib") -find_package(Boost REQUIRED) - # VTK -find_package(VTK 9.3 REQUIRED ) +find_package(VTK REQUIRED) # OpenCASCADE find_package(OpenCASCADE REQUIRED) @@ -220,10 +206,6 @@ find_package(Gmsh REQUIRED) # Python find_package(Python REQUIRED) -# PCL -find_package(PCL REQUIRED) - - #----------------------------------------------------------------------------- # 检索系统python(需要修改cmake搜索路径) #----------------------------------------------------------------------------- @@ -235,7 +217,6 @@ find_package(PCL REQUIRED) # 开启项目分组 #----------------------------------------------------------------------------- set_property(GLOBAL PROPERTY USE_FOLDERS ON) - # 可以修改cmake预定义的target分组名称 #set_property(GLOBAL PROPERTY PREDEFINED_TARGETS_FOLDER "Predefined") @@ -248,22 +229,22 @@ set(CMAKE_INSTALL_LIBDIR "lib") #----------------------------------------------------------------------------- # 定义项目构建中间文件的生成目录 #----------------------------------------------------------------------------- -if(FASTCAE_WIN) +if(LAMPCAE_WIN) set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/Debug) set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/Debug) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/Debug) set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/Release) set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/Release) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/Release) - if(FASTCAE_ENABLE_DEV) + if(LAMPCAE_ENABLE_DEV) set(DEVRUNTIME_BINDIR_DEBUG ${CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG}) set(DEVRUNTIME_BINDIR_RELEASE ${CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE}) endif() -elseif(FASTCAE_LINUX) +elseif(LAMPCAE_LINUX) set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR}) set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_LIBDIR}) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_BINDIR}) - if(FASTCAE_ENABLE_DEV) + if(LAMPCAE_ENABLE_DEV) set(DEVRUNTIME_BINDIR ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) set(DEVRUNTIME_LIBDIR ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) endif() @@ -273,7 +254,7 @@ endif() # 定义变量作为项目的安装路径 #----------------------------------------------------------------------------- set(INSTALL_BINDIR ${CMAKE_INSTALL_BINDIR}) -if(FASTCAE_WIN) +if(LAMPCAE_WIN) set(INSTALL_LIBDIR ${CMAKE_INSTALL_BINDIR}) else() set(INSTALL_LIBDIR ${CMAKE_INSTALL_LIBDIR}) @@ -292,8 +273,8 @@ add_subdirectory(src) #----------------------------------------------------------------------------- # 单元测试Ctest #----------------------------------------------------------------------------- -option(FASTCAE_ENABLE_TEST "开启单元测试(尚未开发完成)" OFF) -if(FASTCAE_ENABLE_TEST) +option(LAMPCAE_ENABLE_TEST "开启单元测试(尚未开发完成)" OFF) +if(LAMPCAE_ENABLE_TEST) # 开启测试 enable_testing() #添加测试项目 @@ -303,7 +284,7 @@ endif() #----------------------------------------------------------------------------- # 生成文档(Doxygen + Breathe + Sphinx) #----------------------------------------------------------------------------- -if(FASTCAE_DOXYGEN_DOC) +if(LAMPCAE_DOXYGEN_DOC) find_package(Doxygen REQUIRED) if(DOXYGEN_FOUND) message(STATUS "Found doc generate Tool: Doxygen") @@ -332,8 +313,8 @@ endif() #----------------------------------------------------------------------------- # 安装包生成(windows环境光需要NSIS 3.03+) #----------------------------------------------------------------------------- -if(FASTCAE_INSTALLATION_PACKAGE) - if (FASTCAE_WIN) +if(LAMPCAE_INSTALLATION_PACKAGE) + if (LAMPCAE_WIN) find_program(NSIS_EXECUTABLE NSIS.exe) # WIX尚未调试,暂时取消 #find_program(WIX_EXECUTABLE candle.exe) diff --git a/CMakeLists.txt.user b/CMakeLists.txt.user index 7249f0e..9794693 100644 --- a/CMakeLists.txt.user +++ b/CMakeLists.txt.user @@ -1,6 +1,6 @@ - + EnvironmentId @@ -108,7 +108,7 @@ -DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C} -DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx} -DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG} - D:\WBFZCPP\source\build-FastCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-Debug + D:\WBFZCPP\source\build-LAMPCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-Debug @@ -164,7 +164,7 @@ -DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C} -DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx} -DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG} - D:\WBFZCPP\source\build-FastCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-Release + D:\WBFZCPP\source\build-LAMPCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-Release @@ -218,7 +218,7 @@ -DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C} -DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx} -DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG} - D:\WBFZCPP\source\build-FastCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-RelWithDebInfo + D:\WBFZCPP\source\build-LAMPCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-RelWithDebInfo @@ -273,7 +273,7 @@ -DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx} -DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG} 0 - D:\WBFZCPP\source\build-FastCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-Profile + D:\WBFZCPP\source\build-LAMPCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-Profile @@ -327,7 +327,7 @@ -DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C} -DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx} -DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG} - D:\WBFZCPP\source\build-FastCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-MinSizeRel + D:\WBFZCPP\source\build-LAMPCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-MinSizeRel @@ -391,14 +391,14 @@ 2 false - FastCAE - CMakeProjectManager.CMakeRunConfiguration.FastCAE - FastCAE + LAMPCAE + CMakeProjectManager.CMakeRunConfiguration.LAMPCAE + LAMPCAE false true true true - D:/WBFZCPP/source/build-FastCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-Debug/Debug + D:/WBFZCPP/source/build-LAMPCAE-Desktop_Qt_5_15_2_MSVC2019_64bit-Debug/Debug 1 diff --git a/CMakePresets.json b/CMakePresets.json new file mode 100644 index 0000000..927a1e3 --- /dev/null +++ b/CMakePresets.json @@ -0,0 +1,25 @@ +{ + "version": 3, + "configurePresets": [ + { + "hidden": true, + "name": "Qt", + "cacheVariables": { + "CMAKE_PREFIX_PATH": "$env{QTDIR}" + }, + "environment": { + "PATH": "$penv{PATH};$env{QTDIR}/bin" + }, + "vendor": { + "qt-project.org/Qt": { + "checksum": "Sp19WUpde73JS7nK33HZMqVZTyI=" + } + } + } + ], + "vendor": { + "qt-project.org/Presets": { + "checksum": "+knLrtcP3xTAxZGDu4uUoEIBvBs=" + } + } +} \ No newline at end of file diff --git a/CMakeUserPresets.json b/CMakeUserPresets.json new file mode 100644 index 0000000..a4f33d9 --- /dev/null +++ b/CMakeUserPresets.json @@ -0,0 +1,55 @@ +{ + "version": 3, + "configurePresets": [ + { + "name": "Qt-Debug", + "inherits": "Qt-Default", + "binaryDir": "${sourceDir}/out/build", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Debug", + "CMAKE_CXX_FLAGS": "-DQT_QML_DEBUG" + } + }, + { + "name": "Qt-Release", + "inherits": "Qt-Default", + "binaryDir": "${sourceDir}/out/build", + "cacheVariables": { + "CMAKE_BUILD_TYPE": "Release" + } + }, + { + "hidden": true, + "name": "Qt-Default", + "inherits": "5.15.2_msvc2019_64", + "vendor": { + "qt-project.org/Default": { + "checksum": "hFHqn7KAkQOhAQUh9kbJbv7R0NY=" + } + } + }, + { + "hidden": true, + "name": "5.15.2_msvc2019_64", + "inherits": "Qt", + "environment": { + "QTDIR": "C:/QT/5.15.2/MSVC2019_64" + }, + "architecture": { + "strategy": "external", + "value": "x64" + }, + "generator": "Ninja", + "vendor": { + "qt-project.org/Version": { + "checksum": "ptcEk6DrMo+x2qNR/kb8KvrnFFM=" + } + } + } + ], + "vendor": { + "qt-project.org/Presets": { + "checksum": "phjq3Wa78xncEM1Mjqgn2bZOHPo=" + } + } +} \ No newline at end of file diff --git a/ConfigFiles/Hello.png b/ConfigFiles/Hello.png new file mode 100644 index 0000000..13e02cd Binary files /dev/null and b/ConfigFiles/Hello.png differ diff --git a/ConfigFiles/LAMPTool.qrc b/ConfigFiles/LAMPTool.qrc new file mode 100644 index 0000000..f0987de --- /dev/null +++ b/ConfigFiles/LAMPTool.qrc @@ -0,0 +1,4 @@ + + + + diff --git a/ConfigFiles/OCCViewer/res/antialiasing.png b/ConfigFiles/OCCViewer/res/antialiasing.png new file mode 100644 index 0000000..da8e504 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/antialiasing.png differ diff --git a/ConfigFiles/OCCViewer/res/cursor_rotate.png b/ConfigFiles/OCCViewer/res/cursor_rotate.png new file mode 100644 index 0000000..a3cb0c1 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/cursor_rotate.png differ diff --git a/ConfigFiles/OCCViewer/res/cursor_zoom.png b/ConfigFiles/OCCViewer/res/cursor_zoom.png new file mode 100644 index 0000000..0020fea Binary files /dev/null and b/ConfigFiles/OCCViewer/res/cursor_zoom.png differ diff --git a/ConfigFiles/OCCViewer/res/help.png b/ConfigFiles/OCCViewer/res/help.png new file mode 100644 index 0000000..e573362 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/help.png differ diff --git a/ConfigFiles/OCCViewer/res/lamp.png b/ConfigFiles/OCCViewer/res/lamp.png new file mode 100644 index 0000000..a5a6775 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/lamp.png differ diff --git a/ConfigFiles/OCCViewer/res/raytracing.png b/ConfigFiles/OCCViewer/res/raytracing.png new file mode 100644 index 0000000..211e697 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/raytracing.png differ diff --git a/ConfigFiles/OCCViewer/res/reflections.png b/ConfigFiles/OCCViewer/res/reflections.png new file mode 100644 index 0000000..ad48a95 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/reflections.png differ diff --git a/ConfigFiles/OCCViewer/res/shadows.png b/ConfigFiles/OCCViewer/res/shadows.png new file mode 100644 index 0000000..7562c12 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/shadows.png differ diff --git a/ConfigFiles/OCCViewer/res/tool_color.png b/ConfigFiles/OCCViewer/res/tool_color.png new file mode 100644 index 0000000..0daa160 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/tool_color.png differ diff --git a/ConfigFiles/OCCViewer/res/tool_delete.png b/ConfigFiles/OCCViewer/res/tool_delete.png new file mode 100644 index 0000000..3886af5 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/tool_delete.png differ diff --git a/ConfigFiles/OCCViewer/res/tool_material.png b/ConfigFiles/OCCViewer/res/tool_material.png new file mode 100644 index 0000000..f846a56 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/tool_material.png differ diff --git a/ConfigFiles/OCCViewer/res/tool_shading.png b/ConfigFiles/OCCViewer/res/tool_shading.png new file mode 100644 index 0000000..6bb9dc4 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/tool_shading.png differ diff --git a/ConfigFiles/OCCViewer/res/tool_transparency.png b/ConfigFiles/OCCViewer/res/tool_transparency.png new file mode 100644 index 0000000..786803a Binary files /dev/null and b/ConfigFiles/OCCViewer/res/tool_transparency.png differ diff --git a/ConfigFiles/OCCViewer/res/tool_wireframe.png b/ConfigFiles/OCCViewer/res/tool_wireframe.png new file mode 100644 index 0000000..32ad524 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/tool_wireframe.png differ diff --git a/ConfigFiles/OCCViewer/res/view_axo.png b/ConfigFiles/OCCViewer/res/view_axo.png new file mode 100644 index 0000000..4801ab4 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/view_axo.png differ diff --git a/ConfigFiles/OCCViewer/res/view_back.png b/ConfigFiles/OCCViewer/res/view_back.png new file mode 100644 index 0000000..0798f52 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/view_back.png differ diff --git a/ConfigFiles/OCCViewer/res/view_bottom.png b/ConfigFiles/OCCViewer/res/view_bottom.png new file mode 100644 index 0000000..c7cfdc2 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/view_bottom.png differ diff --git a/ConfigFiles/OCCViewer/res/view_comp_off.png b/ConfigFiles/OCCViewer/res/view_comp_off.png new file mode 100644 index 0000000..c900b19 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/view_comp_off.png differ diff --git a/ConfigFiles/OCCViewer/res/view_comp_on.png b/ConfigFiles/OCCViewer/res/view_comp_on.png new file mode 100644 index 0000000..73ca4c8 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/view_comp_on.png differ diff --git a/ConfigFiles/OCCViewer/res/view_fitall.png b/ConfigFiles/OCCViewer/res/view_fitall.png new file mode 100644 index 0000000..21d2f42 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/view_fitall.png differ diff --git a/ConfigFiles/OCCViewer/res/view_front.png b/ConfigFiles/OCCViewer/res/view_front.png new file mode 100644 index 0000000..a9e99c5 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/view_front.png differ diff --git a/ConfigFiles/OCCViewer/res/view_left.png b/ConfigFiles/OCCViewer/res/view_left.png new file mode 100644 index 0000000..7d25b6a Binary files /dev/null and b/ConfigFiles/OCCViewer/res/view_left.png differ diff --git a/ConfigFiles/OCCViewer/res/view_reset.png b/ConfigFiles/OCCViewer/res/view_reset.png new file mode 100644 index 0000000..38849fd Binary files /dev/null and b/ConfigFiles/OCCViewer/res/view_reset.png differ diff --git a/ConfigFiles/OCCViewer/res/view_right.png b/ConfigFiles/OCCViewer/res/view_right.png new file mode 100644 index 0000000..5540220 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/view_right.png differ diff --git a/ConfigFiles/OCCViewer/res/view_top.png b/ConfigFiles/OCCViewer/res/view_top.png new file mode 100644 index 0000000..b788de3 Binary files /dev/null and b/ConfigFiles/OCCViewer/res/view_top.png differ diff --git a/ConfigFiles/PointCloudProcess/images/1.gif b/ConfigFiles/PointCloudProcess/images/1.gif new file mode 100644 index 0000000..0004449 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/1.gif differ diff --git a/ConfigFiles/PointCloudProcess/images/QTreeView/branch-closed.png b/ConfigFiles/PointCloudProcess/images/QTreeView/branch-closed.png new file mode 100644 index 0000000..84c0cb1 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/QTreeView/branch-closed.png differ diff --git a/ConfigFiles/PointCloudProcess/images/QTreeView/branch-end.png b/ConfigFiles/PointCloudProcess/images/QTreeView/branch-end.png new file mode 100644 index 0000000..daed9ca Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/QTreeView/branch-end.png differ diff --git a/ConfigFiles/PointCloudProcess/images/QTreeView/branch-more.png b/ConfigFiles/PointCloudProcess/images/QTreeView/branch-more.png new file mode 100644 index 0000000..2ee63ec Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/QTreeView/branch-more.png differ diff --git a/ConfigFiles/PointCloudProcess/images/QTreeView/branch-open.png b/ConfigFiles/PointCloudProcess/images/QTreeView/branch-open.png new file mode 100644 index 0000000..ec3e78e Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/QTreeView/branch-open.png differ diff --git a/ConfigFiles/PointCloudProcess/images/QTreeView/vline.png b/ConfigFiles/PointCloudProcess/images/QTreeView/vline.png new file mode 100644 index 0000000..6b1db9a Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/QTreeView/vline.png differ diff --git a/ConfigFiles/PointCloudProcess/images/RGB.png b/ConfigFiles/PointCloudProcess/images/RGB.png new file mode 100644 index 0000000..2466843 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/RGB.png differ diff --git a/ConfigFiles/PointCloudProcess/images/algorithm/DASHBOARD.png b/ConfigFiles/PointCloudProcess/images/algorithm/DASHBOARD.png new file mode 100644 index 0000000..c84211a Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/algorithm/DASHBOARD.png differ diff --git a/ConfigFiles/PointCloudProcess/images/algorithm/DBSCAN.png b/ConfigFiles/PointCloudProcess/images/algorithm/DBSCAN.png new file mode 100644 index 0000000..17a7f0a Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/algorithm/DBSCAN.png differ diff --git a/ConfigFiles/PointCloudProcess/images/algorithm/Histogram.png b/ConfigFiles/PointCloudProcess/images/algorithm/Histogram.png new file mode 100644 index 0000000..2816185 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/algorithm/Histogram.png differ diff --git a/ConfigFiles/PointCloudProcess/images/algorithm/KMeans.png b/ConfigFiles/PointCloudProcess/images/algorithm/KMeans.png new file mode 100644 index 0000000..235a8af Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/algorithm/KMeans.png differ diff --git a/ConfigFiles/PointCloudProcess/images/algorithm/binary.png b/ConfigFiles/PointCloudProcess/images/algorithm/binary.png new file mode 100644 index 0000000..fc5726a Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/algorithm/binary.png differ diff --git a/ConfigFiles/PointCloudProcess/images/algorithm/chooseMatrix.png b/ConfigFiles/PointCloudProcess/images/algorithm/chooseMatrix.png new file mode 100644 index 0000000..3fa9a3e Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/algorithm/chooseMatrix.png differ diff --git a/ConfigFiles/PointCloudProcess/images/algorithm/density.png b/ConfigFiles/PointCloudProcess/images/algorithm/density.png new file mode 100644 index 0000000..b0a3c82 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/algorithm/density.png differ diff --git a/ConfigFiles/PointCloudProcess/images/algorithm/extract.png b/ConfigFiles/PointCloudProcess/images/algorithm/extract.png new file mode 100644 index 0000000..6fca78d Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/algorithm/extract.png differ diff --git a/ConfigFiles/PointCloudProcess/images/algorithm/filter.png b/ConfigFiles/PointCloudProcess/images/algorithm/filter.png new file mode 100644 index 0000000..c3c002e Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/algorithm/filter.png differ diff --git a/ConfigFiles/PointCloudProcess/images/algorithm/help.png b/ConfigFiles/PointCloudProcess/images/algorithm/help.png new file mode 100644 index 0000000..514bb85 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/algorithm/help.png differ diff --git a/ConfigFiles/PointCloudProcess/images/algorithm/matrix.png b/ConfigFiles/PointCloudProcess/images/algorithm/matrix.png new file mode 100644 index 0000000..d9e5196 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/algorithm/matrix.png differ diff --git a/ConfigFiles/PointCloudProcess/images/algorithm/more.png b/ConfigFiles/PointCloudProcess/images/algorithm/more.png new file mode 100644 index 0000000..85f9e61 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/algorithm/more.png differ diff --git a/ConfigFiles/PointCloudProcess/images/algorithm/nihe.png b/ConfigFiles/PointCloudProcess/images/algorithm/nihe.png new file mode 100644 index 0000000..c94631a Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/algorithm/nihe.png differ diff --git a/ConfigFiles/PointCloudProcess/images/algorithm/person.png b/ConfigFiles/PointCloudProcess/images/algorithm/person.png new file mode 100644 index 0000000..7657912 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/algorithm/person.png differ diff --git a/ConfigFiles/PointCloudProcess/images/algorithm/pingjie.png b/ConfigFiles/PointCloudProcess/images/algorithm/pingjie.png new file mode 100644 index 0000000..8a5deb9 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/algorithm/pingjie.png differ diff --git a/ConfigFiles/PointCloudProcess/images/algorithm/transform.png b/ConfigFiles/PointCloudProcess/images/algorithm/transform.png new file mode 100644 index 0000000..cdebf0c Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/algorithm/transform.png differ diff --git a/ConfigFiles/PointCloudProcess/images/algorithm/tree.png b/ConfigFiles/PointCloudProcess/images/algorithm/tree.png new file mode 100644 index 0000000..2572786 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/algorithm/tree.png differ diff --git a/ConfigFiles/PointCloudProcess/images/back.png b/ConfigFiles/PointCloudProcess/images/back.png new file mode 100644 index 0000000..ca9535c Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/back.png differ diff --git a/ConfigFiles/PointCloudProcess/images/bottom.png b/ConfigFiles/PointCloudProcess/images/bottom.png new file mode 100644 index 0000000..f146f97 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/bottom.png differ diff --git a/ConfigFiles/PointCloudProcess/images/camera.png b/ConfigFiles/PointCloudProcess/images/camera.png new file mode 100644 index 0000000..e85444a Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/camera.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccAddConstSF.png b/ConfigFiles/PointCloudProcess/images/ccAddConstSF.png new file mode 100644 index 0000000..cb0c2dd Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccAddConstSF.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccAlign.png b/ConfigFiles/PointCloudProcess/images/ccAlign.png new file mode 100644 index 0000000..9467151 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccAlign.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccBilateralFilter.png b/ConfigFiles/PointCloudProcess/images/ccBilateralFilter.png new file mode 100644 index 0000000..73885d2 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccBilateralFilter.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccCCExtract.png b/ConfigFiles/PointCloudProcess/images/ccCCExtract.png new file mode 100644 index 0000000..c32c944 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccCCExtract.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccCenteredPerspective32.png b/ConfigFiles/PointCloudProcess/images/ccCenteredPerspective32.png new file mode 100644 index 0000000..d15acc3 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccCenteredPerspective32.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccClippingBox.png b/ConfigFiles/PointCloudProcess/images/ccClippingBox.png new file mode 100644 index 0000000..fcbe90a Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccClippingBox.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccClippingBoxMultExport.png b/ConfigFiles/PointCloudProcess/images/ccClippingBoxMultExport.png new file mode 100644 index 0000000..51317d9 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccClippingBoxMultExport.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccClippingBoxSingleExport.png b/ConfigFiles/PointCloudProcess/images/ccClippingBoxSingleExport.png new file mode 100644 index 0000000..7fd4fdc Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccClippingBoxSingleExport.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccClone.png b/ConfigFiles/PointCloudProcess/images/ccClone.png new file mode 100644 index 0000000..73ae233 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccClone.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccCloudCloudDistance.png b/ConfigFiles/PointCloudProcess/images/ccCloudCloudDistance.png new file mode 100644 index 0000000..b167579 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccCloudCloudDistance.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccCloudMeshDistance.png b/ConfigFiles/PointCloudProcess/images/ccCloudMeshDistance.png new file mode 100644 index 0000000..2f76717 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccCloudMeshDistance.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccCloudPrimitiveDistance.png b/ConfigFiles/PointCloudProcess/images/ccCloudPrimitiveDistance.png new file mode 100644 index 0000000..d5f0265 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccCloudPrimitiveDistance.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccComputeStat.png b/ConfigFiles/PointCloudProcess/images/ccComputeStat.png new file mode 100644 index 0000000..9cbb09f Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccComputeStat.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccConsole.png b/ConfigFiles/PointCloudProcess/images/ccConsole.png new file mode 100644 index 0000000..a97d31c Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccConsole.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccDelete.png b/ConfigFiles/PointCloudProcess/images/ccDelete.png new file mode 100644 index 0000000..cd599e2 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccDelete.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccDeleteSF.png b/ConfigFiles/PointCloudProcess/images/ccDeleteSF.png new file mode 100644 index 0000000..5c99a51 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccDeleteSF.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccExit.png b/ConfigFiles/PointCloudProcess/images/ccExit.png new file mode 100644 index 0000000..9553b04 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccExit.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccFilterByValue.png b/ConfigFiles/PointCloudProcess/images/ccFilterByValue.png new file mode 100644 index 0000000..85c6211 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccFilterByValue.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccFullScreen.png b/ConfigFiles/PointCloudProcess/images/ccFullScreen.png new file mode 100644 index 0000000..9517dca Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccFullScreen.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccGaussianFilter.png b/ConfigFiles/PointCloudProcess/images/ccGaussianFilter.png new file mode 100644 index 0000000..90d51c6 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccGaussianFilter.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccGear.png b/ConfigFiles/PointCloudProcess/images/ccGear.png new file mode 100644 index 0000000..bc1e989 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccGear.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccGlobalZoom.png b/ConfigFiles/PointCloudProcess/images/ccGlobalZoom.png new file mode 100644 index 0000000..aeffcb6 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccGlobalZoom.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccGradient.png b/ConfigFiles/PointCloudProcess/images/ccGradient.png new file mode 100644 index 0000000..00940ef Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccGradient.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccGrid.png b/ConfigFiles/PointCloudProcess/images/ccGrid.png new file mode 100644 index 0000000..5f141bf Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccGrid.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccHistogram.png b/ConfigFiles/PointCloudProcess/images/ccHistogram.png new file mode 100644 index 0000000..cede7d5 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccHistogram.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccInteractiveTransformation.png b/ConfigFiles/PointCloudProcess/images/ccInteractiveTransformation.png new file mode 100644 index 0000000..a4a289b Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccInteractiveTransformation.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccLevel.png b/ConfigFiles/PointCloudProcess/images/ccLevel.png new file mode 100644 index 0000000..6701008 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccLevel.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccLightParams.png b/ConfigFiles/PointCloudProcess/images/ccLightParams.png new file mode 100644 index 0000000..2e63dff Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccLightParams.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccMerge.png b/ConfigFiles/PointCloudProcess/images/ccMerge.png new file mode 100644 index 0000000..dd26c4e Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccMerge.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccMinus.png b/ConfigFiles/PointCloudProcess/images/ccMinus.png new file mode 100644 index 0000000..d66a86e Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccMinus.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccOpen.png b/ConfigFiles/PointCloudProcess/images/ccOpen.png new file mode 100644 index 0000000..46d2796 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccOpen.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccOrthoMode32.png b/ConfigFiles/PointCloudProcess/images/ccOrthoMode32.png new file mode 100644 index 0000000..59d4009 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccOrthoMode32.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccPencil.png b/ConfigFiles/PointCloudProcess/images/ccPencil.png new file mode 100644 index 0000000..16b6008 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccPencil.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccPickCenter.png b/ConfigFiles/PointCloudProcess/images/ccPickCenter.png new file mode 100644 index 0000000..3d31e7f Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccPickCenter.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccPickCenterAuto.png b/ConfigFiles/PointCloudProcess/images/ccPickCenterAuto.png new file mode 100644 index 0000000..4ced310 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccPickCenterAuto.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccPivotAuto.png b/ConfigFiles/PointCloudProcess/images/ccPivotAuto.png new file mode 100644 index 0000000..76d4191 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccPivotAuto.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccPivotOff.png b/ConfigFiles/PointCloudProcess/images/ccPivotOff.png new file mode 100644 index 0000000..9e3df37 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccPivotOff.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccPivotOn.png b/ConfigFiles/PointCloudProcess/images/ccPivotOn.png new file mode 100644 index 0000000..63a72f2 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccPivotOn.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccPlus.png b/ConfigFiles/PointCloudProcess/images/ccPlus.png new file mode 100644 index 0000000..819f02b Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccPlus.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccPointListPicking.png b/ConfigFiles/PointCloudProcess/images/ccPointListPicking.png new file mode 100644 index 0000000..04d9b8a Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccPointListPicking.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccPointPicking.png b/ConfigFiles/PointCloudProcess/images/ccPointPicking.png new file mode 100644 index 0000000..06cd343 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccPointPicking.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccPointSize.png b/ConfigFiles/PointCloudProcess/images/ccPointSize.png new file mode 100644 index 0000000..dc68b06 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccPointSize.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccRegister.png b/ConfigFiles/PointCloudProcess/images/ccRegister.png new file mode 100644 index 0000000..27b54b7 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccRegister.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccSORFilter.png b/ConfigFiles/PointCloudProcess/images/ccSORFilter.png new file mode 100644 index 0000000..9cb94fe Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccSORFilter.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccSampleCloud.png b/ConfigFiles/PointCloudProcess/images/ccSampleCloud.png new file mode 100644 index 0000000..4f6f829 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccSampleCloud.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccSamplePoints.png b/ConfigFiles/PointCloudProcess/images/ccSamplePoints.png new file mode 100644 index 0000000..7c6e5df Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccSamplePoints.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccSave.png b/ConfigFiles/PointCloudProcess/images/ccSave.png new file mode 100644 index 0000000..cda9bb1 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccSave.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccSaveProject.png b/ConfigFiles/PointCloudProcess/images/ccSaveProject.png new file mode 100644 index 0000000..0d03911 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccSaveProject.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccSegment.png b/ConfigFiles/PointCloudProcess/images/ccSegment.png new file mode 100644 index 0000000..69faec7 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccSegment.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccSfArithmetic.png b/ConfigFiles/PointCloudProcess/images/ccSfArithmetic.png new file mode 100644 index 0000000..3ae7d88 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccSfArithmetic.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccStatTest.png b/ConfigFiles/PointCloudProcess/images/ccStatTest.png new file mode 100644 index 0000000..93d64b9 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccStatTest.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccStereo.png b/ConfigFiles/PointCloudProcess/images/ccStereo.png new file mode 100644 index 0000000..1be974f Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccStereo.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccSunLight.png b/ConfigFiles/PointCloudProcess/images/ccSunLight.png new file mode 100644 index 0000000..ec9309f Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccSunLight.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccSwapUpDown.png b/ConfigFiles/PointCloudProcess/images/ccSwapUpDown.png new file mode 100644 index 0000000..5754c87 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccSwapUpDown.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccTracePolyline.png b/ConfigFiles/PointCloudProcess/images/ccTracePolyline.png new file mode 100644 index 0000000..0654163 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccTracePolyline.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccTracePolyline.svg b/ConfigFiles/PointCloudProcess/images/ccTracePolyline.svg new file mode 100644 index 0000000..e932e25 --- /dev/null +++ b/ConfigFiles/PointCloudProcess/images/ccTracePolyline.svg @@ -0,0 +1,79 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/ConfigFiles/PointCloudProcess/images/ccUnstack.png b/ConfigFiles/PointCloudProcess/images/ccUnstack.png new file mode 100644 index 0000000..b63cb3d Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccUnstack.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccViewIso1.png b/ConfigFiles/PointCloudProcess/images/ccViewIso1.png new file mode 100644 index 0000000..4fa8242 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccViewIso1.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccViewIso2.png b/ConfigFiles/PointCloudProcess/images/ccViewIso2.png new file mode 100644 index 0000000..d970b24 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccViewIso2.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccViewXneg.png b/ConfigFiles/PointCloudProcess/images/ccViewXneg.png new file mode 100644 index 0000000..a69b1f9 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccViewXneg.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccViewXpos.png b/ConfigFiles/PointCloudProcess/images/ccViewXpos.png new file mode 100644 index 0000000..4b68a67 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccViewXpos.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccViewYneg.png b/ConfigFiles/PointCloudProcess/images/ccViewYneg.png new file mode 100644 index 0000000..3a885b1 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccViewYneg.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccViewYpos.png b/ConfigFiles/PointCloudProcess/images/ccViewYpos.png new file mode 100644 index 0000000..7a877b6 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccViewYpos.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccViewZneg.png b/ConfigFiles/PointCloudProcess/images/ccViewZneg.png new file mode 100644 index 0000000..d896c9e Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccViewZneg.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccViewZpos.png b/ConfigFiles/PointCloudProcess/images/ccViewZpos.png new file mode 100644 index 0000000..177f20e Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccViewZpos.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccViewerBasedPerspective32.png b/ConfigFiles/PointCloudProcess/images/ccViewerBasedPerspective32.png new file mode 100644 index 0000000..2e7c14f Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccViewerBasedPerspective32.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ccZoomIn.png b/ConfigFiles/PointCloudProcess/images/ccZoomIn.png new file mode 100644 index 0000000..66bbe5d Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ccZoomIn.png differ diff --git a/ConfigFiles/PointCloudProcess/images/clipboard.png b/ConfigFiles/PointCloudProcess/images/clipboard.png new file mode 100644 index 0000000..6ca4263 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/clipboard.png differ diff --git a/ConfigFiles/PointCloudProcess/images/color.png b/ConfigFiles/PointCloudProcess/images/color.png new file mode 100644 index 0000000..54b7ebc Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/color.png differ diff --git a/ConfigFiles/PointCloudProcess/images/coodinate.png b/ConfigFiles/PointCloudProcess/images/coodinate.png new file mode 100644 index 0000000..a876d14 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/coodinate.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbAreaLabelSymbol.png b/ConfigFiles/PointCloudProcess/images/dbAreaLabelSymbol.png new file mode 100644 index 0000000..e20ba93 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbAreaLabelSymbol.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbCalibratedImageSymbol.png b/ConfigFiles/PointCloudProcess/images/dbCalibratedImageSymbol.png new file mode 100644 index 0000000..7d7b36b Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbCalibratedImageSymbol.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbCamSensorSymbol.png b/ConfigFiles/PointCloudProcess/images/dbCamSensorSymbol.png new file mode 100644 index 0000000..63eb4b2 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbCamSensorSymbol.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbCloudSymbol.png b/ConfigFiles/PointCloudProcess/images/dbCloudSymbol.png new file mode 100644 index 0000000..3239145 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbCloudSymbol.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbCloudSymbolLocked.png b/ConfigFiles/PointCloudProcess/images/dbCloudSymbolLocked.png new file mode 100644 index 0000000..663c7da Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbCloudSymbolLocked.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbContainerSymbol.png b/ConfigFiles/PointCloudProcess/images/dbContainerSymbol.png new file mode 100644 index 0000000..93fdcd4 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbContainerSymbol.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbContainerSymbolLocked.png b/ConfigFiles/PointCloudProcess/images/dbContainerSymbolLocked.png new file mode 100644 index 0000000..c35dde8 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbContainerSymbolLocked.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbGBLSensorSymbol.png b/ConfigFiles/PointCloudProcess/images/dbGBLSensorSymbol.png new file mode 100644 index 0000000..83abd5c Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbGBLSensorSymbol.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbHObjectSymbol.png b/ConfigFiles/PointCloudProcess/images/dbHObjectSymbol.png new file mode 100644 index 0000000..553dbc0 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbHObjectSymbol.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbHObjectSymbolLocked.png b/ConfigFiles/PointCloudProcess/images/dbHObjectSymbolLocked.png new file mode 100644 index 0000000..d94227b Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbHObjectSymbolLocked.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbImageSymbol.png b/ConfigFiles/PointCloudProcess/images/dbImageSymbol.png new file mode 100644 index 0000000..bcafc71 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbImageSymbol.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbLabelSymbol.png b/ConfigFiles/PointCloudProcess/images/dbLabelSymbol.png new file mode 100644 index 0000000..2581b3a Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbLabelSymbol.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbLockSymbol.png b/ConfigFiles/PointCloudProcess/images/dbLockSymbol.png new file mode 100644 index 0000000..661bab6 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbLockSymbol.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbMaterialSymbol.png b/ConfigFiles/PointCloudProcess/images/dbMaterialSymbol.png new file mode 100644 index 0000000..5ce0832 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbMaterialSymbol.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbMeshSymbol.png b/ConfigFiles/PointCloudProcess/images/dbMeshSymbol.png new file mode 100644 index 0000000..99ba763 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbMeshSymbol.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbMeshSymbolLocked.png b/ConfigFiles/PointCloudProcess/images/dbMeshSymbolLocked.png new file mode 100644 index 0000000..e0380a5 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbMeshSymbolLocked.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbMiscGeomSymbol.png b/ConfigFiles/PointCloudProcess/images/dbMiscGeomSymbol.png new file mode 100644 index 0000000..83abf0c Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbMiscGeomSymbol.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbMiscGeomSymbolLocked.png b/ConfigFiles/PointCloudProcess/images/dbMiscGeomSymbolLocked.png new file mode 100644 index 0000000..3798330 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbMiscGeomSymbolLocked.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbOctreeSymbol.png b/ConfigFiles/PointCloudProcess/images/dbOctreeSymbol.png new file mode 100644 index 0000000..7aed4b3 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbOctreeSymbol.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbOctreeSymbolLocked.png b/ConfigFiles/PointCloudProcess/images/dbOctreeSymbolLocked.png new file mode 100644 index 0000000..bc25838 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbOctreeSymbolLocked.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbPolylineSymbol.png b/ConfigFiles/PointCloudProcess/images/dbPolylineSymbol.png new file mode 100644 index 0000000..e0f6bfd Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbPolylineSymbol.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbSubMeshSymbol.png b/ConfigFiles/PointCloudProcess/images/dbSubMeshSymbol.png new file mode 100644 index 0000000..199debd Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbSubMeshSymbol.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbSubMeshSymbolLocked.png b/ConfigFiles/PointCloudProcess/images/dbSubMeshSymbolLocked.png new file mode 100644 index 0000000..40cfe6a Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbSubMeshSymbolLocked.png differ diff --git a/ConfigFiles/PointCloudProcess/images/dbViewportSymbol.png b/ConfigFiles/PointCloudProcess/images/dbViewportSymbol.png new file mode 100644 index 0000000..4f842fb Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/dbViewportSymbol.png differ diff --git a/ConfigFiles/PointCloudProcess/images/donate.png b/ConfigFiles/PointCloudProcess/images/donate.png new file mode 100644 index 0000000..29de589 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/donate.png differ diff --git a/ConfigFiles/PointCloudProcess/images/exportIcon.png b/ConfigFiles/PointCloudProcess/images/exportIcon.png new file mode 100644 index 0000000..2851e66 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/exportIcon.png differ diff --git a/ConfigFiles/PointCloudProcess/images/files/CSV.png b/ConfigFiles/PointCloudProcess/images/files/CSV.png new file mode 100644 index 0000000..bd647f6 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/files/CSV.png differ diff --git a/ConfigFiles/PointCloudProcess/images/files/add.png b/ConfigFiles/PointCloudProcess/images/files/add.png new file mode 100644 index 0000000..d0ed821 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/files/add.png differ diff --git a/ConfigFiles/PointCloudProcess/images/files/bgColor.png b/ConfigFiles/PointCloudProcess/images/files/bgColor.png new file mode 100644 index 0000000..58747ef Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/files/bgColor.png differ diff --git a/ConfigFiles/PointCloudProcess/images/files/cloud.png b/ConfigFiles/PointCloudProcess/images/files/cloud.png new file mode 100644 index 0000000..c03b518 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/files/cloud.png differ diff --git a/ConfigFiles/PointCloudProcess/images/files/cloud2.png b/ConfigFiles/PointCloudProcess/images/files/cloud2.png new file mode 100644 index 0000000..8e9fcff Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/files/cloud2.png differ diff --git a/ConfigFiles/PointCloudProcess/images/files/copy.png b/ConfigFiles/PointCloudProcess/images/files/copy.png new file mode 100644 index 0000000..87f9061 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/files/copy.png differ diff --git a/ConfigFiles/PointCloudProcess/images/files/cut.png b/ConfigFiles/PointCloudProcess/images/files/cut.png new file mode 100644 index 0000000..aa825e6 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/files/cut.png differ diff --git a/ConfigFiles/PointCloudProcess/images/files/log.png b/ConfigFiles/PointCloudProcess/images/files/log.png new file mode 100644 index 0000000..5590717 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/files/log.png differ diff --git a/ConfigFiles/PointCloudProcess/images/files/new1.png b/ConfigFiles/PointCloudProcess/images/files/new1.png new file mode 100644 index 0000000..6524892 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/files/new1.png differ diff --git a/ConfigFiles/PointCloudProcess/images/files/new2.png b/ConfigFiles/PointCloudProcess/images/files/new2.png new file mode 100644 index 0000000..6452192 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/files/new2.png differ diff --git a/ConfigFiles/PointCloudProcess/images/files/paste.png b/ConfigFiles/PointCloudProcess/images/files/paste.png new file mode 100644 index 0000000..5746bab Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/files/paste.png differ diff --git a/ConfigFiles/PointCloudProcess/images/files/pointCloud.png b/ConfigFiles/PointCloudProcess/images/files/pointCloud.png new file mode 100644 index 0000000..33364dd Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/files/pointCloud.png differ diff --git a/ConfigFiles/PointCloudProcess/images/files/search.png b/ConfigFiles/PointCloudProcess/images/files/search.png new file mode 100644 index 0000000..b24cd07 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/files/search.png differ diff --git a/ConfigFiles/PointCloudProcess/images/files/snapshot.png b/ConfigFiles/PointCloudProcess/images/files/snapshot.png new file mode 100644 index 0000000..1111163 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/files/snapshot.png differ diff --git a/ConfigFiles/PointCloudProcess/images/files/star.png b/ConfigFiles/PointCloudProcess/images/files/star.png new file mode 100644 index 0000000..d4dcd3e Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/files/star.png differ diff --git a/ConfigFiles/PointCloudProcess/images/files/txt.png b/ConfigFiles/PointCloudProcess/images/files/txt.png new file mode 100644 index 0000000..e89f1bf Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/files/txt.png differ diff --git a/ConfigFiles/PointCloudProcess/images/front.png b/ConfigFiles/PointCloudProcess/images/front.png new file mode 100644 index 0000000..3bcaf0b Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/front.png differ diff --git a/ConfigFiles/PointCloudProcess/images/gamepad.png b/ConfigFiles/PointCloudProcess/images/gamepad.png new file mode 100644 index 0000000..aadd503 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/gamepad.png differ diff --git a/ConfigFiles/PointCloudProcess/images/gearIcon.png b/ConfigFiles/PointCloudProcess/images/gearIcon.png new file mode 100644 index 0000000..bc1e989 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/gearIcon.png differ diff --git a/ConfigFiles/PointCloudProcess/images/grey.png b/ConfigFiles/PointCloudProcess/images/grey.png new file mode 100644 index 0000000..bda44ca Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/grey.png differ diff --git a/ConfigFiles/PointCloudProcess/images/hashtag.png b/ConfigFiles/PointCloudProcess/images/hashtag.png new file mode 100644 index 0000000..2cb8891 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/hashtag.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ic-redo.png b/ConfigFiles/PointCloudProcess/images/ic-redo.png new file mode 100644 index 0000000..966205b Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ic-redo.png differ diff --git a/ConfigFiles/PointCloudProcess/images/ic-undo.png b/ConfigFiles/PointCloudProcess/images/ic-undo.png new file mode 100644 index 0000000..2754aa9 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/ic-undo.png differ diff --git a/ConfigFiles/PointCloudProcess/images/icon/cc_icon.ico b/ConfigFiles/PointCloudProcess/images/icon/cc_icon.ico new file mode 100644 index 0000000..6bc8e3c Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/icon/cc_icon.ico differ diff --git a/ConfigFiles/PointCloudProcess/images/icon/cc_icon.rc b/ConfigFiles/PointCloudProcess/images/icon/cc_icon.rc new file mode 100644 index 0000000..b46373d --- /dev/null +++ b/ConfigFiles/PointCloudProcess/images/icon/cc_icon.rc @@ -0,0 +1 @@ +IDI_ICON1 ICON DISCARDABLE "cc_icon.ico" diff --git a/ConfigFiles/PointCloudProcess/images/icon/cc_icon.svg b/ConfigFiles/PointCloudProcess/images/icon/cc_icon.svg new file mode 100644 index 0000000..37be245 --- /dev/null +++ b/ConfigFiles/PointCloudProcess/images/icon/cc_icon.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/ConfigFiles/PointCloudProcess/images/icon/cc_icon_16.png b/ConfigFiles/PointCloudProcess/images/icon/cc_icon_16.png new file mode 100644 index 0000000..c7a5f64 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/icon/cc_icon_16.png differ diff --git a/ConfigFiles/PointCloudProcess/images/icon/cc_icon_256.png b/ConfigFiles/PointCloudProcess/images/icon/cc_icon_256.png new file mode 100644 index 0000000..334328e Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/icon/cc_icon_256.png differ diff --git a/ConfigFiles/PointCloudProcess/images/icon/cc_icon_32.png b/ConfigFiles/PointCloudProcess/images/icon/cc_icon_32.png new file mode 100644 index 0000000..bd96d63 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/icon/cc_icon_32.png differ diff --git a/ConfigFiles/PointCloudProcess/images/icon/cc_icon_64.png b/ConfigFiles/PointCloudProcess/images/icon/cc_icon_64.png new file mode 100644 index 0000000..3e46852 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/icon/cc_icon_64.png differ diff --git a/ConfigFiles/PointCloudProcess/images/icon/cc_viewer_icon.svg b/ConfigFiles/PointCloudProcess/images/icon/cc_viewer_icon.svg new file mode 100644 index 0000000..7ef0022 --- /dev/null +++ b/ConfigFiles/PointCloudProcess/images/icon/cc_viewer_icon.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/ConfigFiles/PointCloudProcess/images/icon/cc_viewer_icon_16.png b/ConfigFiles/PointCloudProcess/images/icon/cc_viewer_icon_16.png new file mode 100644 index 0000000..ad1462e Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/icon/cc_viewer_icon_16.png differ diff --git a/ConfigFiles/PointCloudProcess/images/icon/cc_viewer_icon_256.png b/ConfigFiles/PointCloudProcess/images/icon/cc_viewer_icon_256.png new file mode 100644 index 0000000..fbd1346 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/icon/cc_viewer_icon_256.png differ diff --git a/ConfigFiles/PointCloudProcess/images/icon/cc_viewer_icon_32.png b/ConfigFiles/PointCloudProcess/images/icon/cc_viewer_icon_32.png new file mode 100644 index 0000000..f22d963 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/icon/cc_viewer_icon_32.png differ diff --git a/ConfigFiles/PointCloudProcess/images/icon/cc_viewer_icon_64.png b/ConfigFiles/PointCloudProcess/images/icon/cc_viewer_icon_64.png new file mode 100644 index 0000000..b56aa07 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/icon/cc_viewer_icon_64.png differ diff --git a/ConfigFiles/PointCloudProcess/images/im3DxLogo.png b/ConfigFiles/PointCloudProcess/images/im3DxLogo.png new file mode 100644 index 0000000..59a5e70 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/im3DxLogo.png differ diff --git a/ConfigFiles/PointCloudProcess/images/imLogoV2Qt.png b/ConfigFiles/PointCloudProcess/images/imLogoV2Qt.png new file mode 100644 index 0000000..211fdc4 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/imLogoV2Qt.png differ diff --git a/ConfigFiles/PointCloudProcess/images/interactors.png b/ConfigFiles/PointCloudProcess/images/interactors.png new file mode 100644 index 0000000..4706a21 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/interactors.png differ diff --git a/ConfigFiles/PointCloudProcess/images/keda.ico b/ConfigFiles/PointCloudProcess/images/keda.ico new file mode 100644 index 0000000..8c55425 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/keda.ico differ diff --git a/ConfigFiles/PointCloudProcess/images/left.png b/ConfigFiles/PointCloudProcess/images/left.png new file mode 100644 index 0000000..20f105b Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/left.png differ diff --git a/ConfigFiles/PointCloudProcess/images/lock.png b/ConfigFiles/PointCloudProcess/images/lock.png new file mode 100644 index 0000000..3e3ca8b Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/lock.png differ diff --git a/ConfigFiles/PointCloudProcess/images/mapIcon.png b/ConfigFiles/PointCloudProcess/images/mapIcon.png new file mode 100644 index 0000000..f365db0 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/mapIcon.png differ diff --git a/ConfigFiles/PointCloudProcess/images/material/3DxLogo.png b/ConfigFiles/PointCloudProcess/images/material/3DxLogo.png new file mode 100644 index 0000000..59a5e70 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/material/3DxLogo.png differ diff --git a/ConfigFiles/PointCloudProcess/images/material/Raster_grid.pptx b/ConfigFiles/PointCloudProcess/images/material/Raster_grid.pptx new file mode 100644 index 0000000..f073705 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/material/Raster_grid.pptx differ diff --git a/ConfigFiles/PointCloudProcess/images/material/ccCenteredPerspective.svg b/ConfigFiles/PointCloudProcess/images/material/ccCenteredPerspective.svg new file mode 100644 index 0000000..3188824 --- /dev/null +++ b/ConfigFiles/PointCloudProcess/images/material/ccCenteredPerspective.svg @@ -0,0 +1,199 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ConfigFiles/PointCloudProcess/images/material/ccClippingBox.svg b/ConfigFiles/PointCloudProcess/images/material/ccClippingBox.svg new file mode 100644 index 0000000..7d96073 --- /dev/null +++ b/ConfigFiles/PointCloudProcess/images/material/ccClippingBox.svg @@ -0,0 +1,242 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ConfigFiles/PointCloudProcess/images/material/ccClippingBoxBase.svg b/ConfigFiles/PointCloudProcess/images/material/ccClippingBoxBase.svg new file mode 100644 index 0000000..7d96073 --- /dev/null +++ b/ConfigFiles/PointCloudProcess/images/material/ccClippingBoxBase.svg @@ -0,0 +1,242 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ConfigFiles/PointCloudProcess/images/material/ccOrthoMode.svg b/ConfigFiles/PointCloudProcess/images/material/ccOrthoMode.svg new file mode 100644 index 0000000..c81ac58 --- /dev/null +++ b/ConfigFiles/PointCloudProcess/images/material/ccOrthoMode.svg @@ -0,0 +1,192 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ConfigFiles/PointCloudProcess/images/material/ccOrthoSections.svg b/ConfigFiles/PointCloudProcess/images/material/ccOrthoSections.svg new file mode 100644 index 0000000..244bbaf --- /dev/null +++ b/ConfigFiles/PointCloudProcess/images/material/ccOrthoSections.svg @@ -0,0 +1,97 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/ConfigFiles/PointCloudProcess/images/material/ccPivot.svg b/ConfigFiles/PointCloudProcess/images/material/ccPivot.svg new file mode 100644 index 0000000..4b925a5 --- /dev/null +++ b/ConfigFiles/PointCloudProcess/images/material/ccPivot.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/ConfigFiles/PointCloudProcess/images/material/ccSectionExtraction.svg b/ConfigFiles/PointCloudProcess/images/material/ccSectionExtraction.svg new file mode 100644 index 0000000..679bc0c --- /dev/null +++ b/ConfigFiles/PointCloudProcess/images/material/ccSectionExtraction.svg @@ -0,0 +1,211 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ConfigFiles/PointCloudProcess/images/material/ccViewIso1.svg b/ConfigFiles/PointCloudProcess/images/material/ccViewIso1.svg new file mode 100644 index 0000000..a20aed8 --- /dev/null +++ b/ConfigFiles/PointCloudProcess/images/material/ccViewIso1.svg @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + FRONT + + diff --git a/ConfigFiles/PointCloudProcess/images/material/ccViewIso2.svg b/ConfigFiles/PointCloudProcess/images/material/ccViewIso2.svg new file mode 100644 index 0000000..457df31 --- /dev/null +++ b/ConfigFiles/PointCloudProcess/images/material/ccViewIso2.svg @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + BACK + + diff --git a/ConfigFiles/PointCloudProcess/images/material/ccViewerBasedPerspective.svg b/ConfigFiles/PointCloudProcess/images/material/ccViewerBasedPerspective.svg new file mode 100644 index 0000000..624f81b --- /dev/null +++ b/ConfigFiles/PointCloudProcess/images/material/ccViewerBasedPerspective.svg @@ -0,0 +1,226 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ConfigFiles/PointCloudProcess/images/monitor.svg b/ConfigFiles/PointCloudProcess/images/monitor.svg new file mode 100644 index 0000000..8a2a636 --- /dev/null +++ b/ConfigFiles/PointCloudProcess/images/monitor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/ConfigFiles/PointCloudProcess/images/noFilter.png b/ConfigFiles/PointCloudProcess/images/noFilter.png new file mode 100644 index 0000000..0488983 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/noFilter.png differ diff --git a/ConfigFiles/PointCloudProcess/images/nvidia.png b/ConfigFiles/PointCloudProcess/images/nvidia.png new file mode 100644 index 0000000..ce2e4a1 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/nvidia.png differ diff --git a/ConfigFiles/PointCloudProcess/images/oculus.png b/ConfigFiles/PointCloudProcess/images/oculus.png new file mode 100644 index 0000000..111e3ee Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/oculus.png differ diff --git a/ConfigFiles/PointCloudProcess/images/open.png b/ConfigFiles/PointCloudProcess/images/open.png new file mode 100644 index 0000000..3b08a06 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/open.png differ diff --git a/ConfigFiles/PointCloudProcess/images/orthoSections.png b/ConfigFiles/PointCloudProcess/images/orthoSections.png new file mode 100644 index 0000000..42bbc69 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/orthoSections.png differ diff --git a/ConfigFiles/PointCloudProcess/images/photo-camera.svg b/ConfigFiles/PointCloudProcess/images/photo-camera.svg new file mode 100644 index 0000000..3827286 --- /dev/null +++ b/ConfigFiles/PointCloudProcess/images/photo-camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/ConfigFiles/PointCloudProcess/images/primBox.gif b/ConfigFiles/PointCloudProcess/images/primBox.gif new file mode 100644 index 0000000..137e6da Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/primBox.gif differ diff --git a/ConfigFiles/PointCloudProcess/images/primCone.gif b/ConfigFiles/PointCloudProcess/images/primCone.gif new file mode 100644 index 0000000..753320c Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/primCone.gif differ diff --git a/ConfigFiles/PointCloudProcess/images/primCylinder.gif b/ConfigFiles/PointCloudProcess/images/primCylinder.gif new file mode 100644 index 0000000..765f4bd Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/primCylinder.gif differ diff --git a/ConfigFiles/PointCloudProcess/images/primDish.gif b/ConfigFiles/PointCloudProcess/images/primDish.gif new file mode 100644 index 0000000..e04ee7c Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/primDish.gif differ diff --git a/ConfigFiles/PointCloudProcess/images/primPlane.gif b/ConfigFiles/PointCloudProcess/images/primPlane.gif new file mode 100644 index 0000000..650ea8b Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/primPlane.gif differ diff --git a/ConfigFiles/PointCloudProcess/images/primSphere.gif b/ConfigFiles/PointCloudProcess/images/primSphere.gif new file mode 100644 index 0000000..635cb3e Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/primSphere.gif differ diff --git a/ConfigFiles/PointCloudProcess/images/primTorus.gif b/ConfigFiles/PointCloudProcess/images/primTorus.gif new file mode 100644 index 0000000..1e72ef0 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/primTorus.gif differ diff --git a/ConfigFiles/PointCloudProcess/images/qCompass.png b/ConfigFiles/PointCloudProcess/images/qCompass.png new file mode 100644 index 0000000..e3c4548 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/qCompass.png differ diff --git a/ConfigFiles/PointCloudProcess/images/raster_grid.jpg b/ConfigFiles/PointCloudProcess/images/raster_grid.jpg new file mode 100644 index 0000000..71f58bb Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/raster_grid.jpg differ diff --git a/ConfigFiles/PointCloudProcess/images/redo.png b/ConfigFiles/PointCloudProcess/images/redo.png new file mode 100644 index 0000000..34b31ec Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/redo.png differ diff --git a/ConfigFiles/PointCloudProcess/images/reset.png b/ConfigFiles/PointCloudProcess/images/reset.png new file mode 100644 index 0000000..523c742 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/reset.png differ diff --git a/ConfigFiles/PointCloudProcess/images/restore.png b/ConfigFiles/PointCloudProcess/images/restore.png new file mode 100644 index 0000000..7e722f5 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/restore.png differ diff --git a/ConfigFiles/PointCloudProcess/images/right.png b/ConfigFiles/PointCloudProcess/images/right.png new file mode 100644 index 0000000..851fe5a Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/right.png differ diff --git a/ConfigFiles/PointCloudProcess/images/rotate0.png b/ConfigFiles/PointCloudProcess/images/rotate0.png new file mode 100644 index 0000000..7334354 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/rotate0.png differ diff --git a/ConfigFiles/PointCloudProcess/images/rotate180.png b/ConfigFiles/PointCloudProcess/images/rotate180.png new file mode 100644 index 0000000..453cdbe Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/rotate180.png differ diff --git a/ConfigFiles/PointCloudProcess/images/rotate270.png b/ConfigFiles/PointCloudProcess/images/rotate270.png new file mode 100644 index 0000000..5f84dd5 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/rotate270.png differ diff --git a/ConfigFiles/PointCloudProcess/images/rotate90.png b/ConfigFiles/PointCloudProcess/images/rotate90.png new file mode 100644 index 0000000..d1f6874 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/rotate90.png differ diff --git a/ConfigFiles/PointCloudProcess/images/search.svg b/ConfigFiles/PointCloudProcess/images/search.svg new file mode 100644 index 0000000..9834028 --- /dev/null +++ b/ConfigFiles/PointCloudProcess/images/search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/ConfigFiles/PointCloudProcess/images/sectionExtraction.png b/ConfigFiles/PointCloudProcess/images/sectionExtraction.png new file mode 100644 index 0000000..6da20ea Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/sectionExtraction.png differ diff --git a/ConfigFiles/PointCloudProcess/images/seting.png b/ConfigFiles/PointCloudProcess/images/seting.png new file mode 100644 index 0000000..8f8558f Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/seting.png differ diff --git a/ConfigFiles/PointCloudProcess/images/smallBasket.png b/ConfigFiles/PointCloudProcess/images/smallBasket.png new file mode 100644 index 0000000..977488a Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/smallBasket.png differ diff --git a/ConfigFiles/PointCloudProcess/images/smallCSVFile.png b/ConfigFiles/PointCloudProcess/images/smallCSVFile.png new file mode 100644 index 0000000..37d95b0 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/smallCSVFile.png differ diff --git a/ConfigFiles/PointCloudProcess/images/smallCancel.png b/ConfigFiles/PointCloudProcess/images/smallCancel.png new file mode 100644 index 0000000..8b54722 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/smallCancel.png differ diff --git a/ConfigFiles/PointCloudProcess/images/smallPause.png b/ConfigFiles/PointCloudProcess/images/smallPause.png new file mode 100644 index 0000000..584ea2c Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/smallPause.png differ diff --git a/ConfigFiles/PointCloudProcess/images/smallPointDistance.png b/ConfigFiles/PointCloudProcess/images/smallPointDistance.png new file mode 100644 index 0000000..0cc8815 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/smallPointDistance.png differ diff --git a/ConfigFiles/PointCloudProcess/images/smallPointProperties.png b/ConfigFiles/PointCloudProcess/images/smallPointProperties.png new file mode 100644 index 0000000..320e95d Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/smallPointProperties.png differ diff --git a/ConfigFiles/PointCloudProcess/images/smallPointsAngle.png b/ConfigFiles/PointCloudProcess/images/smallPointsAngle.png new file mode 100644 index 0000000..08865e8 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/smallPointsAngle.png differ diff --git a/ConfigFiles/PointCloudProcess/images/smallPolygonSelect.png b/ConfigFiles/PointCloudProcess/images/smallPolygonSelect.png new file mode 100644 index 0000000..761ed01 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/smallPolygonSelect.png differ diff --git a/ConfigFiles/PointCloudProcess/images/smallRectangleSelect.png b/ConfigFiles/PointCloudProcess/images/smallRectangleSelect.png new file mode 100644 index 0000000..e20ba93 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/smallRectangleSelect.png differ diff --git a/ConfigFiles/PointCloudProcess/images/smallReset.png b/ConfigFiles/PointCloudProcess/images/smallReset.png new file mode 100644 index 0000000..698c1da Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/smallReset.png differ diff --git a/ConfigFiles/PointCloudProcess/images/smallRevert.png b/ConfigFiles/PointCloudProcess/images/smallRevert.png new file mode 100644 index 0000000..bed7e9c Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/smallRevert.png differ diff --git a/ConfigFiles/PointCloudProcess/images/smallSegmentIn.png b/ConfigFiles/PointCloudProcess/images/smallSegmentIn.png new file mode 100644 index 0000000..2821ff8 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/smallSegmentIn.png differ diff --git a/ConfigFiles/PointCloudProcess/images/smallSegmentOut.png b/ConfigFiles/PointCloudProcess/images/smallSegmentOut.png new file mode 100644 index 0000000..a87b84c Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/smallSegmentOut.png differ diff --git a/ConfigFiles/PointCloudProcess/images/smallSphere.png b/ConfigFiles/PointCloudProcess/images/smallSphere.png new file mode 100644 index 0000000..14e04f2 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/smallSphere.png differ diff --git a/ConfigFiles/PointCloudProcess/images/smallTrash.png b/ConfigFiles/PointCloudProcess/images/smallTrash.png new file mode 100644 index 0000000..d479e96 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/smallTrash.png differ diff --git a/ConfigFiles/PointCloudProcess/images/smallValidate.png b/ConfigFiles/PointCloudProcess/images/smallValidate.png new file mode 100644 index 0000000..e34f3e9 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/smallValidate.png differ diff --git a/ConfigFiles/PointCloudProcess/images/square.png b/ConfigFiles/PointCloudProcess/images/square.png new file mode 100644 index 0000000..2f7d4b4 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/square.png differ diff --git a/ConfigFiles/PointCloudProcess/images/store.png b/ConfigFiles/PointCloudProcess/images/store.png new file mode 100644 index 0000000..04a030a Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/store.png differ diff --git a/ConfigFiles/PointCloudProcess/images/theme/snowman.png b/ConfigFiles/PointCloudProcess/images/theme/snowman.png new file mode 100644 index 0000000..e3b33af Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/theme/snowman.png differ diff --git a/ConfigFiles/PointCloudProcess/images/typeGrayColor.png b/ConfigFiles/PointCloudProcess/images/typeGrayColor.png new file mode 100644 index 0000000..b83bd1f Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/typeGrayColor.png differ diff --git a/ConfigFiles/PointCloudProcess/images/typeNormal.png b/ConfigFiles/PointCloudProcess/images/typeNormal.png new file mode 100644 index 0000000..3755146 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/typeNormal.png differ diff --git a/ConfigFiles/PointCloudProcess/images/typePositiveSF.png b/ConfigFiles/PointCloudProcess/images/typePositiveSF.png new file mode 100644 index 0000000..2b04e33 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/typePositiveSF.png differ diff --git a/ConfigFiles/PointCloudProcess/images/typeQuaternion.png b/ConfigFiles/PointCloudProcess/images/typeQuaternion.png new file mode 100644 index 0000000..77a395e Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/typeQuaternion.png differ diff --git a/ConfigFiles/PointCloudProcess/images/typeRgbCcolor.png b/ConfigFiles/PointCloudProcess/images/typeRgbCcolor.png new file mode 100644 index 0000000..f1ce068 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/typeRgbCcolor.png differ diff --git a/ConfigFiles/PointCloudProcess/images/typeSF.png b/ConfigFiles/PointCloudProcess/images/typeSF.png new file mode 100644 index 0000000..c9ff80f Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/typeSF.png differ diff --git a/ConfigFiles/PointCloudProcess/images/typeXCoordinate.png b/ConfigFiles/PointCloudProcess/images/typeXCoordinate.png new file mode 100644 index 0000000..c1edeb9 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/typeXCoordinate.png differ diff --git a/ConfigFiles/PointCloudProcess/images/typeYCoordinate.png b/ConfigFiles/PointCloudProcess/images/typeYCoordinate.png new file mode 100644 index 0000000..05af74f Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/typeYCoordinate.png differ diff --git a/ConfigFiles/PointCloudProcess/images/typeZCoordinate.png b/ConfigFiles/PointCloudProcess/images/typeZCoordinate.png new file mode 100644 index 0000000..ffd2d44 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/typeZCoordinate.png differ diff --git a/ConfigFiles/PointCloudProcess/images/undo.png b/ConfigFiles/PointCloudProcess/images/undo.png new file mode 100644 index 0000000..fa2c2a9 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/undo.png differ diff --git a/ConfigFiles/PointCloudProcess/images/unfoldSmall.png b/ConfigFiles/PointCloudProcess/images/unfoldSmall.png new file mode 100644 index 0000000..4e78344 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/unfoldSmall.png differ diff --git a/ConfigFiles/PointCloudProcess/images/up.png b/ConfigFiles/PointCloudProcess/images/up.png new file mode 100644 index 0000000..e1cf7bc Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/up.png differ diff --git a/ConfigFiles/PointCloudProcess/images/zoomin.png b/ConfigFiles/PointCloudProcess/images/zoomin.png new file mode 100644 index 0000000..83eb564 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/zoomin.png differ diff --git a/ConfigFiles/PointCloudProcess/images/zoomout.png b/ConfigFiles/PointCloudProcess/images/zoomout.png new file mode 100644 index 0000000..3a254c1 Binary files /dev/null and b/ConfigFiles/PointCloudProcess/images/zoomout.png differ diff --git a/ConfigFiles/QUI/HEADERIMAGE.bmp b/ConfigFiles/QUI/HEADERIMAGE.bmp new file mode 100644 index 0000000..876353f Binary files /dev/null and b/ConfigFiles/QUI/HEADERIMAGE.bmp differ diff --git a/ConfigFiles/QUI/UNWELCOMEFINISHPAGE.bmp b/ConfigFiles/QUI/UNWELCOMEFINISHPAGE.bmp new file mode 100644 index 0000000..6398ee1 Binary files /dev/null and b/ConfigFiles/QUI/UNWELCOMEFINISHPAGE.bmp differ diff --git a/ConfigFiles/QUI/WELCOMEFINISHPAGE.bmp b/ConfigFiles/QUI/WELCOMEFINISHPAGE.bmp new file mode 100644 index 0000000..0c117ea Binary files /dev/null and b/ConfigFiles/QUI/WELCOMEFINISHPAGE.bmp differ diff --git a/ConfigFiles/QUI/beauty/Sticker_Star.png b/ConfigFiles/QUI/beauty/Sticker_Star.png new file mode 100644 index 0000000..211ca50 Binary files /dev/null and b/ConfigFiles/QUI/beauty/Sticker_Star.png differ diff --git a/ConfigFiles/QUI/beauty/btn_close.png b/ConfigFiles/QUI/beauty/btn_close.png new file mode 100644 index 0000000..6a48bfe Binary files /dev/null and b/ConfigFiles/QUI/beauty/btn_close.png differ diff --git a/ConfigFiles/QUI/beauty/btn_max.png b/ConfigFiles/QUI/beauty/btn_max.png new file mode 100644 index 0000000..d0a6ea8 Binary files /dev/null and b/ConfigFiles/QUI/beauty/btn_max.png differ diff --git a/ConfigFiles/QUI/beauty/btn_min.png b/ConfigFiles/QUI/beauty/btn_min.png new file mode 100644 index 0000000..8b7e7b3 Binary files /dev/null and b/ConfigFiles/QUI/beauty/btn_min.png differ diff --git a/ConfigFiles/QUI/beauty/btn_normal.png b/ConfigFiles/QUI/beauty/btn_normal.png new file mode 100644 index 0000000..46691f2 Binary files /dev/null and b/ConfigFiles/QUI/beauty/btn_normal.png differ diff --git a/ConfigFiles/QUI/beauty/checked.png b/ConfigFiles/QUI/beauty/checked.png new file mode 100644 index 0000000..2f9e0cf Binary files /dev/null and b/ConfigFiles/QUI/beauty/checked.png differ diff --git a/ConfigFiles/QUI/beauty/close_normal.png b/ConfigFiles/QUI/beauty/close_normal.png new file mode 100644 index 0000000..5f6b0b5 Binary files /dev/null and b/ConfigFiles/QUI/beauty/close_normal.png differ diff --git a/ConfigFiles/QUI/beauty/close_pressed.png b/ConfigFiles/QUI/beauty/close_pressed.png new file mode 100644 index 0000000..f4a811e Binary files /dev/null and b/ConfigFiles/QUI/beauty/close_pressed.png differ diff --git a/ConfigFiles/QUI/beauty/dock_title.png b/ConfigFiles/QUI/beauty/dock_title.png new file mode 100644 index 0000000..4945c3c Binary files /dev/null and b/ConfigFiles/QUI/beauty/dock_title.png differ diff --git a/ConfigFiles/QUI/beauty/max_normal.png b/ConfigFiles/QUI/beauty/max_normal.png new file mode 100644 index 0000000..06efb36 Binary files /dev/null and b/ConfigFiles/QUI/beauty/max_normal.png differ diff --git a/ConfigFiles/QUI/beauty/max_pressed.png b/ConfigFiles/QUI/beauty/max_pressed.png new file mode 100644 index 0000000..dd23b02 Binary files /dev/null and b/ConfigFiles/QUI/beauty/max_pressed.png differ diff --git a/ConfigFiles/QUI/beauty/min_normal.png b/ConfigFiles/QUI/beauty/min_normal.png new file mode 100644 index 0000000..5ea0848 Binary files /dev/null and b/ConfigFiles/QUI/beauty/min_normal.png differ diff --git a/ConfigFiles/QUI/beauty/min_pressed.png b/ConfigFiles/QUI/beauty/min_pressed.png new file mode 100644 index 0000000..5773247 Binary files /dev/null and b/ConfigFiles/QUI/beauty/min_pressed.png differ diff --git a/ConfigFiles/QUI/beauty/qianfan.qss b/ConfigFiles/QUI/beauty/qianfan.qss new file mode 100644 index 0000000..be2f409 --- /dev/null +++ b/ConfigFiles/QUI/beauty/qianfan.qss @@ -0,0 +1,353 @@ + +QMainWindow{ + background-color: #FFFFFF; +} + + +/* Nice Windows-XP-style password character. */ +QLineEdit[echoMode="2"] { + lineedit-password-character: 9679; +} + +/*inside button*/ +QPushButton{ + background-color: #eaeef2; + color: #1d8de0; + border-width: 1px; + border-color: #1d8de0; + border-style: outset; + border-radius: 2; + min-width: 80px; + min-height: 24px; +} + +QPushButton:hover{ + background-color: #f0f5ff; + border-width: 1px; + border-color: 106da0; + border-style: outset; + border-radius: 2; +} + +QPushButton:pressed{ + background-color: #9cc1e4; + color: blue; + border-width: 1px; + border-color: #1d8de0; + border-style: outset; + border-radius: 2; + min-width: 80px; + min-height: 24px; +} + +QPushButton:!enabled{ + background-color: #eaeef2; + color: #ccc; + border-width: 1px; + border-color: #1d8de0; + border-style: outset; + border-radius: 2; + min-width: 80px; + min-height: 24px; +} + + +/*outside button*//*save_pushButton close_pushButton saveAni_Btn cancle_Btn solveButton cancleButton addPushButton deletePushButton ok_btn From Solver Manger Of Settings*/ +QPushButton#out_OkButton,QPushButton#out_ApplyButton,QPushButton#out_CancelButton,QDialogButtonBox QPushButton,QPushButton#out_AddButton,QPushButton#out_DeleteButton{ + background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:0.5, x3:0, y3:1, stop:0 #2bc7b7, stop:1 #1d8de0, stop:2 #1556d7); + color: white; + border-width: 1px; + border-color: #1d8de0; + border-style: outset; + border-radius: 2; + min-width: 80px; + min-height: 24px; +} + +QPushButton#out_OkButton:hover,QPushButton#out_ApplyButton:hover,QPushButton#out_CancelButton:hover,QDialogButtonBox:hover,QDialogButtonBox QPushButton:hover{ + background-color: rgb(28,181,255); + border-width: 1px; + border-color: #1d8de0; + border-style: outset; + border-radius: 2; + color: white; +} + +QPushButton#out_OkButton:pressed,QPushButton#out_ApplyButton:pressed,QPushButton#out_CancelButton:pressed,QDialogButtonBox:pressed,QDialogButtonBox QPushButton:pressed{ + padding-left: 3px; + padding-top: 3px; + background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #72c5bd, stop:1 #6c87d2); + color: green; +} + +QPushButton#addButton,QPushButton#removeButton,QPushButton#btn_add,QPushButton#btn_del,QPushButton#moreButton{ + min-width:24px; + min-height:24px; + max-width:24px; + max-height:24px; +} + +QPushButton#geoSelectPoint,QPushButton#geoSelectCurve,QPushButton#geoSelectSurface,QPushButton#geoSelectPoint_1,QPushButton#geoSelectCurve_1,QPushButton#geoSelectSurface_1,QPushButton#geoSelectCurve_2,QPushButton#geoSelect{ + min-width:31px; + min-height:28px; + max-width:31px; + max-height:28px; +} + +QPushButton#fileSelect,QPushButton#fileSelect_1,QPushButton#fileSelect_2,QPushButton#dirSelect,QPushButton#dirSelect_1,QPushButton#dirSelect_2{ + min-width:28px; + min-height:22px; + max-width:28px; + max-height:22px; +} +QMessageBox QLabel#qt_msgbox_label { /* textLabel */ + min-width: 240px; /* textLabel设置最小宽度可以相应的改变QMessageBox的最小宽度 */ + min-height: 40px; /* textLabel和iconLabel高度保持一致 */ +} + +QMessageBox QLabel#qt_msgboxex_icon_label { /* iconLabel */ + width: 40px; + height: 40px; /* textLabel和iconLabel高度保持一致 */ +} + +/*MessageBox 's button*/ +QMessageBox QPushButton { + max-height:22px; +} + +/* Mark mandatory fields with a brownish color. */ +.mandatory { + color: brown; +} + +/* Bold text on status bar looks awful. */ +QStatusBar QLabel { + font: normal; +} + +QStatusBar::item { + border-width: 1; + border-color: #c9c9c9; + border-style: solid; + border-radius: 2; +} + +QComboBox, QLineEdit, QSpinBox, QTextEdit { + background-color: #eaeef1; /*背景颜色*/ + selection-color: #0a214c; /*被选中时候的颜色*/ + selection-background-color: #C19A6B; /*被选中时候背景的颜色*/ +} + +QTextEdit#textEdit { + selection-color: #0a214c; /*被选中时候的颜色*/ + selection-background-color: #C19A6B; /*被选中时候背景的颜色*/ +} + +/* We reserve 1 pixel space in padding. When we get the focus, + we kill the padding and enlarge the border. This makes the items + glow. */ +QLineEdit{ + border-width: 1px; /*边的宽度*/ + padding: 1px; + border-style: solid; + border-color: #a9a9a9; /*边的颜色*/ + border-radius: 1px; +} + +QLineEdit,QComboBox,QLabel{ + min-height:20px; +} + +/* A QLabel is a QFrame ... */ +QLabel { + border: none; + padding: 0; + background: none; +} + +QLabel#DialogBaseTitleLabel{ + color :white; +} + +QLabel#title_lable{ + color:white; +} + +/* A QToolTip is a QLabel ... */ +QToolTip { + border: 2px solid #c9c9c9; + padding: 5px; + border-radius: 3px; + opacity: 200; +} + +QToolBar, QMenuBar{ + background: rgb(234,238,241); + spacing: 3px; +/* border: 1px solid #c9c9c9; */ +} + +QMenuBar { + border-top: 1px solid #ffffff; +} + + +QToolBar { + /*border: 1px solid #c5c5c5;*/ +} + +/* +QMenu::item { + padding: 6px 50px 6px 40px; +} + +QMenu::icon{ + padding: 6px 0px 6px 40px; +}*/ + + +/*QMenuBar { + color:gray; + border: none; +} + +QMenuBar::item { + padding: 10px 10px 10px 30px; + background: transparent; +} +QMenuBar::item:enabled { + color: gray; +} +QMenuBar::item:!enabled { + color: gray; +} +QMenuBar::item:enabled:selected { + background: rgba(255, 255, 255, 40); +}*/ + +QToolBar{ + background-image: url(:/Beauty/QUI/beauty/toolbar_bk.png); +} + + +/* Nice to have the background color change when hovered. */ +QRadioButton:hover /*, QCheckBox:hover*/ { + background-color: #eaeef2; +} + +QRadioButton::indicator::unchecked{ + image: url(:/Beauty/QUI/beauty/radio_unselected.png); +} + +QRadioButton::indicator::checked{ + image: url(:/Beauty/QUI/beauty/radio_selected.png); +} + +/* Force the dialog's buttons to follow the Windows guidelines. */ +QDialogButtonBox { + button-layout: 2; +} + +QTableView, QListView{ + color: #000000; + alternate-background-color: #eaeef2; + selection-background-color: #dbebff; +} + +QTableView, QListView { + show-decoration-selected: 1; +} + +QListWidget::Item { + margin :6px; +} + +QTableView::item:hover, QListView::item:hover { + padding-top:2px; + padding-bottom:2px; + color: #C19A6B; +} + +QTableView::item:selected{ + color : black; +} + +QTabBar::tab { + min-width: 20px; +} +/*QTabBar::tab { + min-width: 20px; + background-color: rgb(137,179,223); + color: white; + border: 3px; + border-top-left-radius:2px; + border-top-right-radius:2px; + padding:5px; +}*/ + +QTreeView { + background-color :qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 #ffffff, stop:1 #eaeef1); +/* background-color :#eaeef1;*/ + border: 20px green; + show-decoration-selected:1; +} + +QTreeView::item{ + margin:6px; +} + + +QTreeView::branch:has-children:!has-siblings:closed, +QTreeView::branch:closed:has-children:has-siblings { + border-image: none; + image: url(:/Beauty/QUI/beauty/tree_normal.png); +} + +QTreeView::branch:open:has-children:!has-siblings, +QTreeView::branch:open:has-children:has-siblings { + border-image: none; + image: url(:/Beauty/QUI/beauty/tree_expand.png); +} + +QTreeView::indicator:enabled:unchecked { /** 指示器 - 未选中 **/ + image: url(:/Beauty/QUI/beauty/tree_item_unchecked.png); +} +QTreeView::indicator:enabled:unchecked:hover { + image: url(:/Beauty/QUI/beauty/tree_item_unchecked.png); +} +QTreeView::indicator:enabled:unchecked:pressed { + image: url(:/Beauty/QUI/beauty/tree_item_unchecked.png); +} +QTreeView::indicator:enabled:checked { /** 指示器 - 选中 **/ + image: url(:/Beauty/QUI/beauty/tree_item_checked.png); +} +QTreeView::indicator:enabled:checked:hover { + image: url(:/Beauty/QUI/beauty/tree_item_checked.png); +} +QTreeView::indicator:enabled:checked:pressed { + image: url(:/Beauty/QUI/beauty/tree_item_checked.png); +} +QTableView::indicator:enabled:indeterminate { /** 指示器 - 半选 **/ + background-color: transparent; +} +QTreeView::indicator:enabled:indeterminate:hover { + background-color: transparent; +} +QTreeView::indicator:enabled:indeterminate:pressed { + background-color: transparent; +} + +QProgressBar{ + border:2px solid grey; + border-radius:5px; + text-align: center; +} + +QProgressBar::chunk { + background-color:#05B8CC; + width:20px; +} + +/*QTabBar::tab:selected{ + background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:0.5, x3:0, y3:1, stop:0 #2bc7b7, stop:1 #1d8de0, stop:2 #1556d7); +}*/ diff --git a/ConfigFiles/QUI/beauty/radio_selected.png b/ConfigFiles/QUI/beauty/radio_selected.png new file mode 100644 index 0000000..256af4e Binary files /dev/null and b/ConfigFiles/QUI/beauty/radio_selected.png differ diff --git a/ConfigFiles/QUI/beauty/radio_unselected.png b/ConfigFiles/QUI/beauty/radio_unselected.png new file mode 100644 index 0000000..0aa1e03 Binary files /dev/null and b/ConfigFiles/QUI/beauty/radio_unselected.png differ diff --git a/ConfigFiles/QUI/beauty/restore_normal.png b/ConfigFiles/QUI/beauty/restore_normal.png new file mode 100644 index 0000000..f00626f Binary files /dev/null and b/ConfigFiles/QUI/beauty/restore_normal.png differ diff --git a/ConfigFiles/QUI/beauty/restore_pressed.png b/ConfigFiles/QUI/beauty/restore_pressed.png new file mode 100644 index 0000000..c9baef9 Binary files /dev/null and b/ConfigFiles/QUI/beauty/restore_pressed.png differ diff --git a/ConfigFiles/QUI/beauty/toolbar_bk.png b/ConfigFiles/QUI/beauty/toolbar_bk.png new file mode 100644 index 0000000..7ad9485 Binary files /dev/null and b/ConfigFiles/QUI/beauty/toolbar_bk.png differ diff --git a/ConfigFiles/QUI/beauty/tree_expand.png b/ConfigFiles/QUI/beauty/tree_expand.png new file mode 100644 index 0000000..42edb87 Binary files /dev/null and b/ConfigFiles/QUI/beauty/tree_expand.png differ diff --git a/ConfigFiles/QUI/beauty/tree_item_checked.png b/ConfigFiles/QUI/beauty/tree_item_checked.png new file mode 100644 index 0000000..0f6099c Binary files /dev/null and b/ConfigFiles/QUI/beauty/tree_item_checked.png differ diff --git a/ConfigFiles/QUI/beauty/tree_item_unchecked.png b/ConfigFiles/QUI/beauty/tree_item_unchecked.png new file mode 100644 index 0000000..c4e1cf9 Binary files /dev/null and b/ConfigFiles/QUI/beauty/tree_item_unchecked.png differ diff --git a/ConfigFiles/QUI/beauty/tree_normal.png b/ConfigFiles/QUI/beauty/tree_normal.png new file mode 100644 index 0000000..082a9f2 Binary files /dev/null and b/ConfigFiles/QUI/beauty/tree_normal.png differ diff --git a/ConfigFiles/QUI/geometry/FitAll.png b/ConfigFiles/QUI/geometry/FitAll.png new file mode 100644 index 0000000..cbcae68 Binary files /dev/null and b/ConfigFiles/QUI/geometry/FitAll.png differ diff --git a/ConfigFiles/QUI/geometry/Home.png b/ConfigFiles/QUI/geometry/Home.png new file mode 100644 index 0000000..439e362 Binary files /dev/null and b/ConfigFiles/QUI/geometry/Home.png differ diff --git a/ConfigFiles/QUI/geometry/Rotate.png b/ConfigFiles/QUI/geometry/Rotate.png new file mode 100644 index 0000000..3b06e69 Binary files /dev/null and b/ConfigFiles/QUI/geometry/Rotate.png differ diff --git a/ConfigFiles/QUI/geometry/Zoom.png b/ConfigFiles/QUI/geometry/Zoom.png new file mode 100644 index 0000000..9b4cdf1 Binary files /dev/null and b/ConfigFiles/QUI/geometry/Zoom.png differ diff --git a/ConfigFiles/QUI/geometry/add.png b/ConfigFiles/QUI/geometry/add.png new file mode 100644 index 0000000..7d09ab8 Binary files /dev/null and b/ConfigFiles/QUI/geometry/add.png differ diff --git a/ConfigFiles/QUI/geometry/box.png b/ConfigFiles/QUI/geometry/box.png new file mode 100644 index 0000000..190547f Binary files /dev/null and b/ConfigFiles/QUI/geometry/box.png differ diff --git a/ConfigFiles/QUI/geometry/chamfer.png b/ConfigFiles/QUI/geometry/chamfer.png new file mode 100644 index 0000000..603e742 Binary files /dev/null and b/ConfigFiles/QUI/geometry/chamfer.png differ diff --git a/ConfigFiles/QUI/geometry/common.png b/ConfigFiles/QUI/geometry/common.png new file mode 100644 index 0000000..c37c32c Binary files /dev/null and b/ConfigFiles/QUI/geometry/common.png differ diff --git a/ConfigFiles/QUI/geometry/cone.png b/ConfigFiles/QUI/geometry/cone.png new file mode 100644 index 0000000..4fa22bf Binary files /dev/null and b/ConfigFiles/QUI/geometry/cone.png differ diff --git a/ConfigFiles/QUI/geometry/cut.png b/ConfigFiles/QUI/geometry/cut.png new file mode 100644 index 0000000..db3e4f9 Binary files /dev/null and b/ConfigFiles/QUI/geometry/cut.png differ diff --git a/ConfigFiles/QUI/geometry/cylinder.png b/ConfigFiles/QUI/geometry/cylinder.png new file mode 100644 index 0000000..d7c0215 Binary files /dev/null and b/ConfigFiles/QUI/geometry/cylinder.png differ diff --git a/ConfigFiles/QUI/geometry/edgeDisplay.png b/ConfigFiles/QUI/geometry/edgeDisplay.png new file mode 100644 index 0000000..8c13f29 Binary files /dev/null and b/ConfigFiles/QUI/geometry/edgeDisplay.png differ diff --git a/ConfigFiles/QUI/geometry/extrude.png b/ConfigFiles/QUI/geometry/extrude.png new file mode 100644 index 0000000..70c8b70 Binary files /dev/null and b/ConfigFiles/QUI/geometry/extrude.png differ diff --git a/ConfigFiles/QUI/geometry/extrusion.png b/ConfigFiles/QUI/geometry/extrusion.png new file mode 100644 index 0000000..d2a8a19 Binary files /dev/null and b/ConfigFiles/QUI/geometry/extrusion.png differ diff --git a/ConfigFiles/QUI/geometry/face.png b/ConfigFiles/QUI/geometry/face.png new file mode 100644 index 0000000..379c1e8 Binary files /dev/null and b/ConfigFiles/QUI/geometry/face.png differ diff --git a/ConfigFiles/QUI/geometry/facedisplay.png b/ConfigFiles/QUI/geometry/facedisplay.png new file mode 100644 index 0000000..6cabc22 Binary files /dev/null and b/ConfigFiles/QUI/geometry/facedisplay.png differ diff --git a/ConfigFiles/QUI/geometry/fillet.png b/ConfigFiles/QUI/geometry/fillet.png new file mode 100644 index 0000000..f5d7805 Binary files /dev/null and b/ConfigFiles/QUI/geometry/fillet.png differ diff --git a/ConfigFiles/QUI/geometry/fuse.png b/ConfigFiles/QUI/geometry/fuse.png new file mode 100644 index 0000000..c3e9859 Binary files /dev/null and b/ConfigFiles/QUI/geometry/fuse.png differ diff --git a/ConfigFiles/QUI/geometry/geoComponent.png b/ConfigFiles/QUI/geometry/geoComponent.png new file mode 100644 index 0000000..77e9454 Binary files /dev/null and b/ConfigFiles/QUI/geometry/geoComponent.png differ diff --git a/ConfigFiles/QUI/geometry/geoFillHole.png b/ConfigFiles/QUI/geometry/geoFillHole.png new file mode 100644 index 0000000..0510614 Binary files /dev/null and b/ConfigFiles/QUI/geometry/geoFillHole.png differ diff --git a/ConfigFiles/QUI/geometry/geoFixSurface.png b/ConfigFiles/QUI/geometry/geoFixSurface.png new file mode 100644 index 0000000..67b21f8 Binary files /dev/null and b/ConfigFiles/QUI/geometry/geoFixSurface.png differ diff --git a/ConfigFiles/QUI/geometry/geoMeasure.png b/ConfigFiles/QUI/geometry/geoMeasure.png new file mode 100644 index 0000000..f867caf Binary files /dev/null and b/ConfigFiles/QUI/geometry/geoMeasure.png differ diff --git a/ConfigFiles/QUI/geometry/geoRemoveFace.png b/ConfigFiles/QUI/geometry/geoRemoveFace.png new file mode 100644 index 0000000..b3beb8c Binary files /dev/null and b/ConfigFiles/QUI/geometry/geoRemoveFace.png differ diff --git a/ConfigFiles/QUI/geometry/geoSSplit.png b/ConfigFiles/QUI/geometry/geoSSplit.png new file mode 100644 index 0000000..0fd341f Binary files /dev/null and b/ConfigFiles/QUI/geometry/geoSSplit.png differ diff --git a/ConfigFiles/QUI/geometry/helix.png b/ConfigFiles/QUI/geometry/helix.png new file mode 100644 index 0000000..5c4a418 Binary files /dev/null and b/ConfigFiles/QUI/geometry/helix.png differ diff --git a/ConfigFiles/QUI/geometry/lamp.png b/ConfigFiles/QUI/geometry/lamp.png new file mode 100644 index 0000000..4b86dbf Binary files /dev/null and b/ConfigFiles/QUI/geometry/lamp.png differ diff --git a/ConfigFiles/QUI/geometry/line.png b/ConfigFiles/QUI/geometry/line.png new file mode 100644 index 0000000..295c19c Binary files /dev/null and b/ConfigFiles/QUI/geometry/line.png differ diff --git a/ConfigFiles/QUI/geometry/loft.png b/ConfigFiles/QUI/geometry/loft.png new file mode 100644 index 0000000..824e5bd Binary files /dev/null and b/ConfigFiles/QUI/geometry/loft.png differ diff --git a/ConfigFiles/QUI/geometry/matrix.png b/ConfigFiles/QUI/geometry/matrix.png new file mode 100644 index 0000000..be49dc9 Binary files /dev/null and b/ConfigFiles/QUI/geometry/matrix.png differ diff --git a/ConfigFiles/QUI/geometry/mirror.png b/ConfigFiles/QUI/geometry/mirror.png new file mode 100644 index 0000000..f27f1b5 Binary files /dev/null and b/ConfigFiles/QUI/geometry/mirror.png differ diff --git a/ConfigFiles/QUI/geometry/move.png b/ConfigFiles/QUI/geometry/move.png new file mode 100644 index 0000000..09812b0 Binary files /dev/null and b/ConfigFiles/QUI/geometry/move.png differ diff --git a/ConfigFiles/QUI/geometry/point.png b/ConfigFiles/QUI/geometry/point.png new file mode 100644 index 0000000..e9cf0e0 Binary files /dev/null and b/ConfigFiles/QUI/geometry/point.png differ diff --git a/ConfigFiles/QUI/geometry/pointDisplay.png b/ConfigFiles/QUI/geometry/pointDisplay.png new file mode 100644 index 0000000..f10142f Binary files /dev/null and b/ConfigFiles/QUI/geometry/pointDisplay.png differ diff --git a/ConfigFiles/QUI/geometry/redo.png b/ConfigFiles/QUI/geometry/redo.png new file mode 100644 index 0000000..8bb881a Binary files /dev/null and b/ConfigFiles/QUI/geometry/redo.png differ diff --git a/ConfigFiles/QUI/geometry/remove.png b/ConfigFiles/QUI/geometry/remove.png new file mode 100644 index 0000000..dcdcc28 Binary files /dev/null and b/ConfigFiles/QUI/geometry/remove.png differ diff --git a/ConfigFiles/QUI/geometry/revolve.png b/ConfigFiles/QUI/geometry/revolve.png new file mode 100644 index 0000000..83147e6 Binary files /dev/null and b/ConfigFiles/QUI/geometry/revolve.png differ diff --git a/ConfigFiles/QUI/geometry/select.png b/ConfigFiles/QUI/geometry/select.png new file mode 100644 index 0000000..82fbf4a Binary files /dev/null and b/ConfigFiles/QUI/geometry/select.png differ diff --git a/ConfigFiles/QUI/geometry/selectbody.png b/ConfigFiles/QUI/geometry/selectbody.png new file mode 100644 index 0000000..6bb3cee Binary files /dev/null and b/ConfigFiles/QUI/geometry/selectbody.png differ diff --git a/ConfigFiles/QUI/geometry/selectface.png b/ConfigFiles/QUI/geometry/selectface.png new file mode 100644 index 0000000..8317b3e Binary files /dev/null and b/ConfigFiles/QUI/geometry/selectface.png differ diff --git a/ConfigFiles/QUI/geometry/selectpoint.png b/ConfigFiles/QUI/geometry/selectpoint.png new file mode 100644 index 0000000..298aa3a Binary files /dev/null and b/ConfigFiles/QUI/geometry/selectpoint.png differ diff --git a/ConfigFiles/QUI/geometry/selectwire.png b/ConfigFiles/QUI/geometry/selectwire.png new file mode 100644 index 0000000..711f24d Binary files /dev/null and b/ConfigFiles/QUI/geometry/selectwire.png differ diff --git a/ConfigFiles/QUI/geometry/sphere.png b/ConfigFiles/QUI/geometry/sphere.png new file mode 100644 index 0000000..c49e4ac Binary files /dev/null and b/ConfigFiles/QUI/geometry/sphere.png differ diff --git a/ConfigFiles/QUI/geometry/split.png b/ConfigFiles/QUI/geometry/split.png new file mode 100644 index 0000000..0e401fd Binary files /dev/null and b/ConfigFiles/QUI/geometry/split.png differ diff --git a/ConfigFiles/QUI/geometry/sweep.png b/ConfigFiles/QUI/geometry/sweep.png new file mode 100644 index 0000000..2459537 Binary files /dev/null and b/ConfigFiles/QUI/geometry/sweep.png differ diff --git a/ConfigFiles/QUI/geometry/torus.png b/ConfigFiles/QUI/geometry/torus.png new file mode 100644 index 0000000..a038688 Binary files /dev/null and b/ConfigFiles/QUI/geometry/torus.png differ diff --git a/ConfigFiles/QUI/geometry/undo.png b/ConfigFiles/QUI/geometry/undo.png new file mode 100644 index 0000000..b7b7642 Binary files /dev/null and b/ConfigFiles/QUI/geometry/undo.png differ diff --git a/ConfigFiles/QUI/geometry/variableFillet.png b/ConfigFiles/QUI/geometry/variableFillet.png new file mode 100644 index 0000000..3486202 Binary files /dev/null and b/ConfigFiles/QUI/geometry/variableFillet.png differ diff --git a/ConfigFiles/QUI/geometry/wedge.png b/ConfigFiles/QUI/geometry/wedge.png new file mode 100644 index 0000000..f0b705c Binary files /dev/null and b/ConfigFiles/QUI/geometry/wedge.png differ diff --git a/src/qrc/QUI/icon/FastCAEFrame.png b/ConfigFiles/QUI/icon/FastCAEFrame.png similarity index 100% rename from src/qrc/QUI/icon/FastCAEFrame.png rename to ConfigFiles/QUI/icon/FastCAEFrame.png diff --git a/ConfigFiles/QUI/icon/Plugin_ava.png b/ConfigFiles/QUI/icon/Plugin_ava.png new file mode 100644 index 0000000..d5d4c11 Binary files /dev/null and b/ConfigFiles/QUI/icon/Plugin_ava.png differ diff --git a/ConfigFiles/QUI/icon/Plugin_ins.png b/ConfigFiles/QUI/icon/Plugin_ins.png new file mode 100644 index 0000000..c28f3a9 Binary files /dev/null and b/ConfigFiles/QUI/icon/Plugin_ins.png differ diff --git a/ConfigFiles/QUI/icon/about_us.png b/ConfigFiles/QUI/icon/about_us.png new file mode 100644 index 0000000..ea1bc71 Binary files /dev/null and b/ConfigFiles/QUI/icon/about_us.png differ diff --git a/ConfigFiles/QUI/icon/acce.png b/ConfigFiles/QUI/icon/acce.png new file mode 100644 index 0000000..8024673 Binary files /dev/null and b/ConfigFiles/QUI/icon/acce.png differ diff --git a/ConfigFiles/QUI/icon/angle.png b/ConfigFiles/QUI/icon/angle.png new file mode 100644 index 0000000..22b9d60 Binary files /dev/null and b/ConfigFiles/QUI/icon/angle.png differ diff --git a/ConfigFiles/QUI/icon/bc.png b/ConfigFiles/QUI/icon/bc.png new file mode 100644 index 0000000..2ea27b0 Binary files /dev/null and b/ConfigFiles/QUI/icon/bc.png differ diff --git a/ConfigFiles/QUI/icon/boxCell.png b/ConfigFiles/QUI/icon/boxCell.png new file mode 100644 index 0000000..8729a06 Binary files /dev/null and b/ConfigFiles/QUI/icon/boxCell.png differ diff --git a/ConfigFiles/QUI/icon/boxNode.png b/ConfigFiles/QUI/icon/boxNode.png new file mode 100644 index 0000000..1ba51d9 Binary files /dev/null and b/ConfigFiles/QUI/icon/boxNode.png differ diff --git a/ConfigFiles/QUI/icon/chinese_language.png b/ConfigFiles/QUI/icon/chinese_language.png new file mode 100644 index 0000000..fa6adfc Binary files /dev/null and b/ConfigFiles/QUI/icon/chinese_language.png differ diff --git a/ConfigFiles/QUI/icon/counter.png b/ConfigFiles/QUI/icon/counter.png new file mode 100644 index 0000000..528a4fe Binary files /dev/null and b/ConfigFiles/QUI/icon/counter.png differ diff --git a/ConfigFiles/QUI/icon/createNew.png b/ConfigFiles/QUI/icon/createNew.png new file mode 100644 index 0000000..a26c123 Binary files /dev/null and b/ConfigFiles/QUI/icon/createNew.png differ diff --git a/ConfigFiles/QUI/icon/createSet.png b/ConfigFiles/QUI/icon/createSet.png new file mode 100644 index 0000000..2a9c26f Binary files /dev/null and b/ConfigFiles/QUI/icon/createSet.png differ diff --git a/ConfigFiles/QUI/icon/createSketch.png b/ConfigFiles/QUI/icon/createSketch.png new file mode 100644 index 0000000..2744ca7 Binary files /dev/null and b/ConfigFiles/QUI/icon/createSketch.png differ diff --git a/ConfigFiles/QUI/icon/curve.png b/ConfigFiles/QUI/icon/curve.png new file mode 100644 index 0000000..cc492ba Binary files /dev/null and b/ConfigFiles/QUI/icon/curve.png differ diff --git a/ConfigFiles/QUI/icon/datumPlane.png b/ConfigFiles/QUI/icon/datumPlane.png new file mode 100644 index 0000000..fa29db0 Binary files /dev/null and b/ConfigFiles/QUI/icon/datumPlane.png differ diff --git a/ConfigFiles/QUI/icon/desCase.png b/ConfigFiles/QUI/icon/desCase.png new file mode 100644 index 0000000..3b74e9d Binary files /dev/null and b/ConfigFiles/QUI/icon/desCase.png differ diff --git a/ConfigFiles/QUI/icon/desGeo.png b/ConfigFiles/QUI/icon/desGeo.png new file mode 100644 index 0000000..02292e6 Binary files /dev/null and b/ConfigFiles/QUI/icon/desGeo.png differ diff --git a/ConfigFiles/QUI/icon/desMesh.png b/ConfigFiles/QUI/icon/desMesh.png new file mode 100644 index 0000000..5ba8a1c Binary files /dev/null and b/ConfigFiles/QUI/icon/desMesh.png differ diff --git a/ConfigFiles/QUI/icon/eleset.png b/ConfigFiles/QUI/icon/eleset.png new file mode 100644 index 0000000..fbee062 Binary files /dev/null and b/ConfigFiles/QUI/icon/eleset.png differ diff --git a/ConfigFiles/QUI/icon/english_language.png b/ConfigFiles/QUI/icon/english_language.png new file mode 100644 index 0000000..ec28a36 Binary files /dev/null and b/ConfigFiles/QUI/icon/english_language.png differ diff --git a/ConfigFiles/QUI/icon/execScript.png b/ConfigFiles/QUI/icon/execScript.png new file mode 100644 index 0000000..644238c Binary files /dev/null and b/ConfigFiles/QUI/icon/execScript.png differ diff --git a/ConfigFiles/QUI/icon/expandL1.png b/ConfigFiles/QUI/icon/expandL1.png new file mode 100644 index 0000000..42edb87 Binary files /dev/null and b/ConfigFiles/QUI/icon/expandL1.png differ diff --git a/ConfigFiles/QUI/icon/exportGeometry.png b/ConfigFiles/QUI/icon/exportGeometry.png new file mode 100644 index 0000000..e300d89 Binary files /dev/null and b/ConfigFiles/QUI/icon/exportGeometry.png differ diff --git a/ConfigFiles/QUI/icon/exportMesh.png b/ConfigFiles/QUI/icon/exportMesh.png new file mode 100644 index 0000000..21c5409 Binary files /dev/null and b/ConfigFiles/QUI/icon/exportMesh.png differ diff --git a/ConfigFiles/QUI/icon/face.png b/ConfigFiles/QUI/icon/face.png new file mode 100644 index 0000000..c90c71b Binary files /dev/null and b/ConfigFiles/QUI/icon/face.png differ diff --git a/ConfigFiles/QUI/icon/faceWithEdge.png b/ConfigFiles/QUI/icon/faceWithEdge.png new file mode 100644 index 0000000..5e57c88 Binary files /dev/null and b/ConfigFiles/QUI/icon/faceWithEdge.png differ diff --git a/ConfigFiles/QUI/icon/family.png b/ConfigFiles/QUI/icon/family.png new file mode 100644 index 0000000..04ec12b Binary files /dev/null and b/ConfigFiles/QUI/icon/family.png differ diff --git a/ConfigFiles/QUI/icon/far.png b/ConfigFiles/QUI/icon/far.png new file mode 100644 index 0000000..cb4b3fa Binary files /dev/null and b/ConfigFiles/QUI/icon/far.png differ diff --git a/ConfigFiles/QUI/icon/fit.png b/ConfigFiles/QUI/icon/fit.png new file mode 100644 index 0000000..b713434 Binary files /dev/null and b/ConfigFiles/QUI/icon/fit.png differ diff --git a/ConfigFiles/QUI/icon/fix.png b/ConfigFiles/QUI/icon/fix.png new file mode 100644 index 0000000..39cb235 Binary files /dev/null and b/ConfigFiles/QUI/icon/fix.png differ diff --git a/ConfigFiles/QUI/icon/fulid.png b/ConfigFiles/QUI/icon/fulid.png new file mode 100644 index 0000000..45ceb15 Binary files /dev/null and b/ConfigFiles/QUI/icon/fulid.png differ diff --git a/ConfigFiles/QUI/icon/geometry.png b/ConfigFiles/QUI/icon/geometry.png new file mode 100644 index 0000000..7d1b757 Binary files /dev/null and b/ConfigFiles/QUI/icon/geometry.png differ diff --git a/ConfigFiles/QUI/icon/graphOption.png b/ConfigFiles/QUI/icon/graphOption.png new file mode 100644 index 0000000..550ceed Binary files /dev/null and b/ConfigFiles/QUI/icon/graphOption.png differ diff --git a/ConfigFiles/QUI/icon/help.png b/ConfigFiles/QUI/icon/help.png new file mode 100644 index 0000000..4c1aa1a Binary files /dev/null and b/ConfigFiles/QUI/icon/help.png differ diff --git a/ConfigFiles/QUI/icon/icon.png b/ConfigFiles/QUI/icon/icon.png new file mode 100644 index 0000000..f6b48a9 Binary files /dev/null and b/ConfigFiles/QUI/icon/icon.png differ diff --git a/ConfigFiles/QUI/icon/importGeometry.png b/ConfigFiles/QUI/icon/importGeometry.png new file mode 100644 index 0000000..8682848 Binary files /dev/null and b/ConfigFiles/QUI/icon/importGeometry.png differ diff --git a/ConfigFiles/QUI/icon/importMesh.png b/ConfigFiles/QUI/icon/importMesh.png new file mode 100644 index 0000000..13ad6d9 Binary files /dev/null and b/ConfigFiles/QUI/icon/importMesh.png differ diff --git a/ConfigFiles/QUI/icon/inlet.png b/ConfigFiles/QUI/icon/inlet.png new file mode 100644 index 0000000..9fb5df4 Binary files /dev/null and b/ConfigFiles/QUI/icon/inlet.png differ diff --git a/ConfigFiles/QUI/icon/iso.png b/ConfigFiles/QUI/icon/iso.png new file mode 100644 index 0000000..faf3551 Binary files /dev/null and b/ConfigFiles/QUI/icon/iso.png differ diff --git a/ConfigFiles/QUI/icon/language.png b/ConfigFiles/QUI/icon/language.png new file mode 100644 index 0000000..39b922a Binary files /dev/null and b/ConfigFiles/QUI/icon/language.png differ diff --git a/ConfigFiles/QUI/icon/material.png b/ConfigFiles/QUI/icon/material.png new file mode 100644 index 0000000..f8529a2 Binary files /dev/null and b/ConfigFiles/QUI/icon/material.png differ diff --git a/ConfigFiles/QUI/icon/mesh.png b/ConfigFiles/QUI/icon/mesh.png new file mode 100644 index 0000000..eafe1a3 Binary files /dev/null and b/ConfigFiles/QUI/icon/mesh.png differ diff --git a/ConfigFiles/QUI/icon/meshChecking.png b/ConfigFiles/QUI/icon/meshChecking.png new file mode 100644 index 0000000..fabd78f Binary files /dev/null and b/ConfigFiles/QUI/icon/meshChecking.png differ diff --git a/ConfigFiles/QUI/icon/meshComponent.png b/ConfigFiles/QUI/icon/meshComponent.png new file mode 100644 index 0000000..481605f Binary files /dev/null and b/ConfigFiles/QUI/icon/meshComponent.png differ diff --git a/ConfigFiles/QUI/icon/meshFilter.png b/ConfigFiles/QUI/icon/meshFilter.png new file mode 100644 index 0000000..c84698b Binary files /dev/null and b/ConfigFiles/QUI/icon/meshFilter.png differ diff --git a/ConfigFiles/QUI/icon/meshFluid.png b/ConfigFiles/QUI/icon/meshFluid.png new file mode 100644 index 0000000..ac97541 Binary files /dev/null and b/ConfigFiles/QUI/icon/meshFluid.png differ diff --git a/ConfigFiles/QUI/icon/meshmodeling.png b/ConfigFiles/QUI/icon/meshmodeling.png new file mode 100644 index 0000000..f9b894c Binary files /dev/null and b/ConfigFiles/QUI/icon/meshmodeling.png differ diff --git a/ConfigFiles/QUI/icon/monitor.png b/ConfigFiles/QUI/icon/monitor.png new file mode 100644 index 0000000..618977a Binary files /dev/null and b/ConfigFiles/QUI/icon/monitor.png differ diff --git a/ConfigFiles/QUI/icon/near.png b/ConfigFiles/QUI/icon/near.png new file mode 100644 index 0000000..633ff6a Binary files /dev/null and b/ConfigFiles/QUI/icon/near.png differ diff --git a/ConfigFiles/QUI/icon/node.png b/ConfigFiles/QUI/icon/node.png new file mode 100644 index 0000000..06454f0 Binary files /dev/null and b/ConfigFiles/QUI/icon/node.png differ diff --git a/ConfigFiles/QUI/icon/nodeset.png b/ConfigFiles/QUI/icon/nodeset.png new file mode 100644 index 0000000..81885e5 Binary files /dev/null and b/ConfigFiles/QUI/icon/nodeset.png differ diff --git a/ConfigFiles/QUI/icon/normalL1.png b/ConfigFiles/QUI/icon/normalL1.png new file mode 100644 index 0000000..082a9f2 Binary files /dev/null and b/ConfigFiles/QUI/icon/normalL1.png differ diff --git a/ConfigFiles/QUI/icon/open.png b/ConfigFiles/QUI/icon/open.png new file mode 100644 index 0000000..012ef1f Binary files /dev/null and b/ConfigFiles/QUI/icon/open.png differ diff --git a/ConfigFiles/QUI/icon/outlet.png b/ConfigFiles/QUI/icon/outlet.png new file mode 100644 index 0000000..b4b9f9d Binary files /dev/null and b/ConfigFiles/QUI/icon/outlet.png differ diff --git a/ConfigFiles/QUI/icon/physics.png b/ConfigFiles/QUI/icon/physics.png new file mode 100644 index 0000000..8f73bdb Binary files /dev/null and b/ConfigFiles/QUI/icon/physics.png differ diff --git a/ConfigFiles/QUI/icon/pluginManager.png b/ConfigFiles/QUI/icon/pluginManager.png new file mode 100644 index 0000000..912a07a Binary files /dev/null and b/ConfigFiles/QUI/icon/pluginManager.png differ diff --git a/ConfigFiles/QUI/icon/post.png b/ConfigFiles/QUI/icon/post.png new file mode 100644 index 0000000..c17d718 Binary files /dev/null and b/ConfigFiles/QUI/icon/post.png differ diff --git a/ConfigFiles/QUI/icon/press.png b/ConfigFiles/QUI/icon/press.png new file mode 100644 index 0000000..7e26909 Binary files /dev/null and b/ConfigFiles/QUI/icon/press.png differ diff --git a/ConfigFiles/QUI/icon/ruler.png b/ConfigFiles/QUI/icon/ruler.png new file mode 100644 index 0000000..80ef6ad Binary files /dev/null and b/ConfigFiles/QUI/icon/ruler.png differ diff --git a/ConfigFiles/QUI/icon/save.png b/ConfigFiles/QUI/icon/save.png new file mode 100644 index 0000000..c50a714 Binary files /dev/null and b/ConfigFiles/QUI/icon/save.png differ diff --git a/ConfigFiles/QUI/icon/saveAnimate.png b/ConfigFiles/QUI/icon/saveAnimate.png new file mode 100644 index 0000000..3675dd8 Binary files /dev/null and b/ConfigFiles/QUI/icon/saveAnimate.png differ diff --git a/ConfigFiles/QUI/icon/saveAs.png b/ConfigFiles/QUI/icon/saveAs.png new file mode 100644 index 0000000..6604ce7 Binary files /dev/null and b/ConfigFiles/QUI/icon/saveAs.png differ diff --git a/ConfigFiles/QUI/icon/saveImage.png b/ConfigFiles/QUI/icon/saveImage.png new file mode 100644 index 0000000..839f0af Binary files /dev/null and b/ConfigFiles/QUI/icon/saveImage.png differ diff --git a/ConfigFiles/QUI/icon/saveScript.png b/ConfigFiles/QUI/icon/saveScript.png new file mode 100644 index 0000000..e2c7e55 Binary files /dev/null and b/ConfigFiles/QUI/icon/saveScript.png differ diff --git a/ConfigFiles/QUI/icon/selectElement.png b/ConfigFiles/QUI/icon/selectElement.png new file mode 100644 index 0000000..a58d085 Binary files /dev/null and b/ConfigFiles/QUI/icon/selectElement.png differ diff --git a/ConfigFiles/QUI/icon/selectGeo.png b/ConfigFiles/QUI/icon/selectGeo.png new file mode 100644 index 0000000..3d90fc0 Binary files /dev/null and b/ConfigFiles/QUI/icon/selectGeo.png differ diff --git a/ConfigFiles/QUI/icon/selectNode.png b/ConfigFiles/QUI/icon/selectNode.png new file mode 100644 index 0000000..d3a77d3 Binary files /dev/null and b/ConfigFiles/QUI/icon/selectNode.png differ diff --git a/ConfigFiles/QUI/icon/selectOff.png b/ConfigFiles/QUI/icon/selectOff.png new file mode 100644 index 0000000..318406a Binary files /dev/null and b/ConfigFiles/QUI/icon/selectOff.png differ diff --git a/ConfigFiles/QUI/icon/setting.png b/ConfigFiles/QUI/icon/setting.png new file mode 100644 index 0000000..9137485 Binary files /dev/null and b/ConfigFiles/QUI/icon/setting.png differ diff --git a/ConfigFiles/QUI/icon/sketchArc.png b/ConfigFiles/QUI/icon/sketchArc.png new file mode 100644 index 0000000..1a8bbc2 Binary files /dev/null and b/ConfigFiles/QUI/icon/sketchArc.png differ diff --git a/ConfigFiles/QUI/icon/sketchCircle.png b/ConfigFiles/QUI/icon/sketchCircle.png new file mode 100644 index 0000000..0f8c35e Binary files /dev/null and b/ConfigFiles/QUI/icon/sketchCircle.png differ diff --git a/ConfigFiles/QUI/icon/sketchLine.png b/ConfigFiles/QUI/icon/sketchLine.png new file mode 100644 index 0000000..26224f2 Binary files /dev/null and b/ConfigFiles/QUI/icon/sketchLine.png differ diff --git a/ConfigFiles/QUI/icon/sketchPolyLine.png b/ConfigFiles/QUI/icon/sketchPolyLine.png new file mode 100644 index 0000000..dfb5dec Binary files /dev/null and b/ConfigFiles/QUI/icon/sketchPolyLine.png differ diff --git a/ConfigFiles/QUI/icon/sketchRectangle.png b/ConfigFiles/QUI/icon/sketchRectangle.png new file mode 100644 index 0000000..ee19de6 Binary files /dev/null and b/ConfigFiles/QUI/icon/sketchRectangle.png differ diff --git a/ConfigFiles/QUI/icon/sketchSpline.png b/ConfigFiles/QUI/icon/sketchSpline.png new file mode 100644 index 0000000..032266c Binary files /dev/null and b/ConfigFiles/QUI/icon/sketchSpline.png differ diff --git a/ConfigFiles/QUI/icon/solidMesh.png b/ConfigFiles/QUI/icon/solidMesh.png new file mode 100644 index 0000000..a193f61 Binary files /dev/null and b/ConfigFiles/QUI/icon/solidMesh.png differ diff --git a/ConfigFiles/QUI/icon/solumationsetting.png b/ConfigFiles/QUI/icon/solumationsetting.png new file mode 100644 index 0000000..857377e Binary files /dev/null and b/ConfigFiles/QUI/icon/solumationsetting.png differ diff --git a/ConfigFiles/QUI/icon/solve.png b/ConfigFiles/QUI/icon/solve.png new file mode 100644 index 0000000..f54051e Binary files /dev/null and b/ConfigFiles/QUI/icon/solve.png differ diff --git a/ConfigFiles/QUI/icon/speed.png b/ConfigFiles/QUI/icon/speed.png new file mode 100644 index 0000000..8a681ac Binary files /dev/null and b/ConfigFiles/QUI/icon/speed.png differ diff --git a/ConfigFiles/QUI/icon/stop.png b/ConfigFiles/QUI/icon/stop.png new file mode 100644 index 0000000..857bd88 Binary files /dev/null and b/ConfigFiles/QUI/icon/stop.png differ diff --git a/ConfigFiles/QUI/icon/streamline.png b/ConfigFiles/QUI/icon/streamline.png new file mode 100644 index 0000000..8022491 Binary files /dev/null and b/ConfigFiles/QUI/icon/streamline.png differ diff --git a/ConfigFiles/QUI/icon/surface.png b/ConfigFiles/QUI/icon/surface.png new file mode 100644 index 0000000..7d1b757 Binary files /dev/null and b/ConfigFiles/QUI/icon/surface.png differ diff --git a/ConfigFiles/QUI/icon/surfaceMesh.png b/ConfigFiles/QUI/icon/surfaceMesh.png new file mode 100644 index 0000000..d7fab50 Binary files /dev/null and b/ConfigFiles/QUI/icon/surfaceMesh.png differ diff --git a/ConfigFiles/QUI/icon/surfaceWithEdge.png b/ConfigFiles/QUI/icon/surfaceWithEdge.png new file mode 100644 index 0000000..b351f43 Binary files /dev/null and b/ConfigFiles/QUI/icon/surfaceWithEdge.png differ diff --git a/ConfigFiles/QUI/icon/symmetry.png b/ConfigFiles/QUI/icon/symmetry.png new file mode 100644 index 0000000..c02bcae Binary files /dev/null and b/ConfigFiles/QUI/icon/symmetry.png differ diff --git a/ConfigFiles/QUI/icon/tempure.png b/ConfigFiles/QUI/icon/tempure.png new file mode 100644 index 0000000..a5f8b0b Binary files /dev/null and b/ConfigFiles/QUI/icon/tempure.png differ diff --git a/ConfigFiles/QUI/icon/userguidance.png b/ConfigFiles/QUI/icon/userguidance.png new file mode 100644 index 0000000..a93ad63 Binary files /dev/null and b/ConfigFiles/QUI/icon/userguidance.png differ diff --git a/ConfigFiles/QUI/icon/vector.png b/ConfigFiles/QUI/icon/vector.png new file mode 100644 index 0000000..4ec040b Binary files /dev/null and b/ConfigFiles/QUI/icon/vector.png differ diff --git a/ConfigFiles/QUI/icon/wall.png b/ConfigFiles/QUI/icon/wall.png new file mode 100644 index 0000000..eddc7ca Binary files /dev/null and b/ConfigFiles/QUI/icon/wall.png differ diff --git a/ConfigFiles/QUI/icon/water_drop.gif b/ConfigFiles/QUI/icon/water_drop.gif new file mode 100644 index 0000000..67753a9 Binary files /dev/null and b/ConfigFiles/QUI/icon/water_drop.gif differ diff --git a/ConfigFiles/QUI/icon/wireFrame.png b/ConfigFiles/QUI/icon/wireFrame.png new file mode 100644 index 0000000..9b30287 Binary files /dev/null and b/ConfigFiles/QUI/icon/wireFrame.png differ diff --git a/ConfigFiles/QUI/icon/workdir.png b/ConfigFiles/QUI/icon/workdir.png new file mode 100644 index 0000000..11d5710 Binary files /dev/null and b/ConfigFiles/QUI/icon/workdir.png differ diff --git a/ConfigFiles/QUI/icon/xMinus.png b/ConfigFiles/QUI/icon/xMinus.png new file mode 100644 index 0000000..db0d9c4 Binary files /dev/null and b/ConfigFiles/QUI/icon/xMinus.png differ diff --git a/ConfigFiles/QUI/icon/xPlus.png b/ConfigFiles/QUI/icon/xPlus.png new file mode 100644 index 0000000..f66db66 Binary files /dev/null and b/ConfigFiles/QUI/icon/xPlus.png differ diff --git a/ConfigFiles/QUI/icon/yMinus.png b/ConfigFiles/QUI/icon/yMinus.png new file mode 100644 index 0000000..8beb8e9 Binary files /dev/null and b/ConfigFiles/QUI/icon/yMinus.png differ diff --git a/ConfigFiles/QUI/icon/yPlus.png b/ConfigFiles/QUI/icon/yPlus.png new file mode 100644 index 0000000..b21c2d7 Binary files /dev/null and b/ConfigFiles/QUI/icon/yPlus.png differ diff --git a/ConfigFiles/QUI/icon/zMinus.png b/ConfigFiles/QUI/icon/zMinus.png new file mode 100644 index 0000000..8b7cfde Binary files /dev/null and b/ConfigFiles/QUI/icon/zMinus.png differ diff --git a/ConfigFiles/QUI/icon/zPlus.png b/ConfigFiles/QUI/icon/zPlus.png new file mode 100644 index 0000000..8fbe91f Binary files /dev/null and b/ConfigFiles/QUI/icon/zPlus.png differ diff --git a/ConfigFiles/QUI/main.ico b/ConfigFiles/QUI/main.ico new file mode 100644 index 0000000..d1092de Binary files /dev/null and b/ConfigFiles/QUI/main.ico differ diff --git a/ConfigFiles/QUI/main.rc b/ConfigFiles/QUI/main.rc new file mode 100644 index 0000000..0e1c28c --- /dev/null +++ b/ConfigFiles/QUI/main.rc @@ -0,0 +1,32 @@ +#include "winver.h" + +IDI_ICON1 ICON "main.ico" + +VS_VERSION_INFO VERSIONINFO + FILEVERSION 1,0,0,0 + PRODUCTVERSION 1,0,0,0 + FILEFLAGS 0x0L + FILEFLAGSMASK 0x3fL + FILEOS VOS_NT_WINDOWS32 + FILETYPE VFT_APP + FILESUBTYPE VFT2_UNKNOWN +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "000004b0" + BEGIN + VALUE "CompanyName", "feiyangqingyun@163.com QQ:517216493" + VALUE "FileDescription", "QUI" + VALUE "FileVersion", "1.0.0.0" + VALUE "LegalCopyright", "feiyangqingyun@163.com QQ:517216493" + VALUE "InternalName", "QUI" + VALUE "OriginalFilename", "QUI" + VALUE "ProductName", "QUI" + VALUE "ProductVersion", "1.0.0.0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x0, 1200 + END +END \ No newline at end of file diff --git a/ConfigFiles/QUI/post/Reflection.png b/ConfigFiles/QUI/post/Reflection.png new file mode 100644 index 0000000..cfce527 Binary files /dev/null and b/ConfigFiles/QUI/post/Reflection.png differ diff --git a/ConfigFiles/QUI/post/ScalarBar.png b/ConfigFiles/QUI/post/ScalarBar.png new file mode 100644 index 0000000..528a4fe Binary files /dev/null and b/ConfigFiles/QUI/post/ScalarBar.png differ diff --git a/ConfigFiles/QUI/post/back.png b/ConfigFiles/QUI/post/back.png new file mode 100644 index 0000000..43bc44f Binary files /dev/null and b/ConfigFiles/QUI/post/back.png differ diff --git a/ConfigFiles/QUI/post/calculator.png b/ConfigFiles/QUI/post/calculator.png new file mode 100644 index 0000000..2c670b0 Binary files /dev/null and b/ConfigFiles/QUI/post/calculator.png differ diff --git a/ConfigFiles/QUI/post/clip.png b/ConfigFiles/QUI/post/clip.png new file mode 100644 index 0000000..9251dcb Binary files /dev/null and b/ConfigFiles/QUI/post/clip.png differ diff --git a/ConfigFiles/QUI/post/counter.png b/ConfigFiles/QUI/post/counter.png new file mode 100644 index 0000000..528a4fe Binary files /dev/null and b/ConfigFiles/QUI/post/counter.png differ diff --git a/ConfigFiles/QUI/post/editColor.png b/ConfigFiles/QUI/post/editColor.png new file mode 100644 index 0000000..c17d718 Binary files /dev/null and b/ConfigFiles/QUI/post/editColor.png differ diff --git a/ConfigFiles/QUI/post/end.png b/ConfigFiles/QUI/post/end.png new file mode 100644 index 0000000..c6a42ea Binary files /dev/null and b/ConfigFiles/QUI/post/end.png differ diff --git a/ConfigFiles/QUI/post/first.png b/ConfigFiles/QUI/post/first.png new file mode 100644 index 0000000..f101bc0 Binary files /dev/null and b/ConfigFiles/QUI/post/first.png differ diff --git a/ConfigFiles/QUI/post/fit.png b/ConfigFiles/QUI/post/fit.png new file mode 100644 index 0000000..b713434 Binary files /dev/null and b/ConfigFiles/QUI/post/fit.png differ diff --git a/ConfigFiles/QUI/post/front.png b/ConfigFiles/QUI/post/front.png new file mode 100644 index 0000000..e87475e Binary files /dev/null and b/ConfigFiles/QUI/post/front.png differ diff --git a/ConfigFiles/QUI/post/glyph.png b/ConfigFiles/QUI/post/glyph.png new file mode 100644 index 0000000..0584eec Binary files /dev/null and b/ConfigFiles/QUI/post/glyph.png differ diff --git a/ConfigFiles/QUI/post/isocurve.png b/ConfigFiles/QUI/post/isocurve.png new file mode 100644 index 0000000..a56c6e1 Binary files /dev/null and b/ConfigFiles/QUI/post/isocurve.png differ diff --git a/ConfigFiles/QUI/post/isosurf.png b/ConfigFiles/QUI/post/isosurf.png new file mode 100644 index 0000000..0e50c01 Binary files /dev/null and b/ConfigFiles/QUI/post/isosurf.png differ diff --git a/ConfigFiles/QUI/post/last.png b/ConfigFiles/QUI/post/last.png new file mode 100644 index 0000000..07e6ea1 Binary files /dev/null and b/ConfigFiles/QUI/post/last.png differ diff --git a/ConfigFiles/QUI/post/next.png b/ConfigFiles/QUI/post/next.png new file mode 100644 index 0000000..92baf72 Binary files /dev/null and b/ConfigFiles/QUI/post/next.png differ diff --git a/ConfigFiles/QUI/post/open.png b/ConfigFiles/QUI/post/open.png new file mode 100644 index 0000000..9ddbb61 Binary files /dev/null and b/ConfigFiles/QUI/post/open.png differ diff --git a/ConfigFiles/QUI/post/point.png b/ConfigFiles/QUI/post/point.png new file mode 100644 index 0000000..d1b5dda Binary files /dev/null and b/ConfigFiles/QUI/post/point.png differ diff --git a/ConfigFiles/QUI/post/post.png b/ConfigFiles/QUI/post/post.png new file mode 100644 index 0000000..c17d718 Binary files /dev/null and b/ConfigFiles/QUI/post/post.png differ diff --git a/ConfigFiles/QUI/post/previous.png b/ConfigFiles/QUI/post/previous.png new file mode 100644 index 0000000..07e6ea1 Binary files /dev/null and b/ConfigFiles/QUI/post/previous.png differ diff --git a/ConfigFiles/QUI/post/rep_point.png b/ConfigFiles/QUI/post/rep_point.png new file mode 100644 index 0000000..01e94cf Binary files /dev/null and b/ConfigFiles/QUI/post/rep_point.png differ diff --git a/ConfigFiles/QUI/post/rep_surface.png b/ConfigFiles/QUI/post/rep_surface.png new file mode 100644 index 0000000..7d1b757 Binary files /dev/null and b/ConfigFiles/QUI/post/rep_surface.png differ diff --git a/ConfigFiles/QUI/post/rep_surfaceWithEdge.png b/ConfigFiles/QUI/post/rep_surfaceWithEdge.png new file mode 100644 index 0000000..b351f43 Binary files /dev/null and b/ConfigFiles/QUI/post/rep_surfaceWithEdge.png differ diff --git a/ConfigFiles/QUI/post/rep_wireFrame.png b/ConfigFiles/QUI/post/rep_wireFrame.png new file mode 100644 index 0000000..bde1c62 Binary files /dev/null and b/ConfigFiles/QUI/post/rep_wireFrame.png differ diff --git a/ConfigFiles/QUI/post/run.png b/ConfigFiles/QUI/post/run.png new file mode 100644 index 0000000..c1678ea Binary files /dev/null and b/ConfigFiles/QUI/post/run.png differ diff --git a/ConfigFiles/QUI/post/saveImage.png b/ConfigFiles/QUI/post/saveImage.png new file mode 100644 index 0000000..839f0af Binary files /dev/null and b/ConfigFiles/QUI/post/saveImage.png differ diff --git a/ConfigFiles/QUI/post/slice.png b/ConfigFiles/QUI/post/slice.png new file mode 100644 index 0000000..c49bf66 Binary files /dev/null and b/ConfigFiles/QUI/post/slice.png differ diff --git a/ConfigFiles/QUI/post/stop.png b/ConfigFiles/QUI/post/stop.png new file mode 100644 index 0000000..e0e5827 Binary files /dev/null and b/ConfigFiles/QUI/post/stop.png differ diff --git a/ConfigFiles/QUI/post/streamline.png b/ConfigFiles/QUI/post/streamline.png new file mode 100644 index 0000000..8022491 Binary files /dev/null and b/ConfigFiles/QUI/post/streamline.png differ diff --git a/ConfigFiles/QUI/post/up.png b/ConfigFiles/QUI/post/up.png new file mode 100644 index 0000000..41b63e9 Binary files /dev/null and b/ConfigFiles/QUI/post/up.png differ diff --git a/ConfigFiles/QUI/post/val_on_cell.png b/ConfigFiles/QUI/post/val_on_cell.png new file mode 100644 index 0000000..fbee062 Binary files /dev/null and b/ConfigFiles/QUI/post/val_on_cell.png differ diff --git a/ConfigFiles/QUI/post/val_on_point.png b/ConfigFiles/QUI/post/val_on_point.png new file mode 100644 index 0000000..81885e5 Binary files /dev/null and b/ConfigFiles/QUI/post/val_on_point.png differ diff --git a/ConfigFiles/QUI/post/vector.png b/ConfigFiles/QUI/post/vector.png new file mode 100644 index 0000000..0584eec Binary files /dev/null and b/ConfigFiles/QUI/post/vector.png differ diff --git a/ConfigFiles/QUI/post/video.png b/ConfigFiles/QUI/post/video.png new file mode 100644 index 0000000..f5d8989 Binary files /dev/null and b/ConfigFiles/QUI/post/video.png differ diff --git a/ConfigFiles/QUI/tools/XMaterial.ico b/ConfigFiles/QUI/tools/XMaterial.ico new file mode 100644 index 0000000..fe663c0 Binary files /dev/null and b/ConfigFiles/QUI/tools/XMaterial.ico differ diff --git a/ConfigFiles/QUI/uninstall.ico b/ConfigFiles/QUI/uninstall.ico new file mode 100644 index 0000000..531900a Binary files /dev/null and b/ConfigFiles/QUI/uninstall.ico differ diff --git a/ConfigFiles/QUI/window/2dplot.png b/ConfigFiles/QUI/window/2dplot.png new file mode 100644 index 0000000..e55bd5b Binary files /dev/null and b/ConfigFiles/QUI/window/2dplot.png differ diff --git a/ConfigFiles/QUI/window/3dgraph.png b/ConfigFiles/QUI/window/3dgraph.png new file mode 100644 index 0000000..3aaa3c9 Binary files /dev/null and b/ConfigFiles/QUI/window/3dgraph.png differ diff --git a/ConfigFiles/QUI/window/preWindow.png b/ConfigFiles/QUI/window/preWindow.png new file mode 100644 index 0000000..654b5fb Binary files /dev/null and b/ConfigFiles/QUI/window/preWindow.png differ diff --git a/ConfigFiles/QUI/window/startpage.png b/ConfigFiles/QUI/window/startpage.png new file mode 100644 index 0000000..6b5e3c4 Binary files /dev/null and b/ConfigFiles/QUI/window/startpage.png differ diff --git a/ConfigFiles/WBCLFZSystemModule.qrc b/ConfigFiles/WBCLFZSystemModule.qrc new file mode 100644 index 0000000..76db7c6 --- /dev/null +++ b/ConfigFiles/WBCLFZSystemModule.qrc @@ -0,0 +1,91 @@ + + + PointCloudProcess/images/back.png + PointCloudProcess/images/bottom.png + PointCloudProcess/images/color.png + PointCloudProcess/images/front.png + PointCloudProcess/images/keda.ico + PointCloudProcess/images/left.png + PointCloudProcess/images/lock.png + PointCloudProcess/images/open.png + PointCloudProcess/images/redo.png + PointCloudProcess/images/reset.png + PointCloudProcess/images/right.png + PointCloudProcess/images/rotate270.png + PointCloudProcess/images/undo.png + PointCloudProcess/images/up.png + PointCloudProcess/images/zoomin.png + PointCloudProcess/images/zoomout.png + PointCloudProcess/images/rotate0.png + PointCloudProcess/images/ic-redo.png + PointCloudProcess/images/ic-undo.png + PointCloudProcess/images/files/add.png + PointCloudProcess/images/files/cloud.png + PointCloudProcess/images/files/copy.png + PointCloudProcess/images/files/CSV.png + PointCloudProcess/images/files/cut.png + PointCloudProcess/images/files/log.png + PointCloudProcess/images/files/new1.png + PointCloudProcess/images/files/new2.png + PointCloudProcess/images/files/paste.png + PointCloudProcess/images/files/search.png + PointCloudProcess/images/files/star.png + PointCloudProcess/images/files/txt.png + PointCloudProcess/images/algorithm/binary.png + PointCloudProcess/images/algorithm/chooseMatrix.png + PointCloudProcess/images/algorithm/DASHBOARD.png + PointCloudProcess/images/algorithm/DBSCAN.png + PointCloudProcess/images/algorithm/density.png + PointCloudProcess/images/algorithm/filter.png + PointCloudProcess/images/algorithm/help.png + PointCloudProcess/images/algorithm/Histogram.png + PointCloudProcess/images/algorithm/KMeans.png + PointCloudProcess/images/algorithm/matrix.png + PointCloudProcess/images/algorithm/more.png + PointCloudProcess/images/algorithm/nihe.png + PointCloudProcess/images/algorithm/person.png + PointCloudProcess/images/algorithm/pingjie.png + PointCloudProcess/images/algorithm/transform.png + PointCloudProcess/images/algorithm/tree.png + PointCloudProcess/images/camera.png + PointCloudProcess/images/rotate90.png + PointCloudProcess/images/rotate180.png + PointCloudProcess/images/files/cloud2.png + PointCloudProcess/images/files/pointCloud.png + PointCloudProcess/images/files/snapshot.png + PointCloudProcess/images/algorithm/extract.png + PointCloudProcess/images/seting.png + PointCloudProcess/images/coodinate.png + PointCloudProcess/images/grey.png + PointCloudProcess/images/RGB.png + PointCloudProcess/images/files/bgColor.png + PointCloudProcess/images/1.gif + + + OCCViewer/res/lamp.png + OCCViewer/res/view_axo.png + OCCViewer/res/view_back.png + OCCViewer/res/view_bottom.png + OCCViewer/res/view_comp_off.png + OCCViewer/res/view_comp_on.png + OCCViewer/res/view_fitall.png + OCCViewer/res/view_front.png + OCCViewer/res/view_left.png + OCCViewer/res/view_reset.png + OCCViewer/res/view_top.png + OCCViewer/res/antialiasing.png + OCCViewer/res/raytracing.png + OCCViewer/res/reflections.png + OCCViewer/res/shadows.png + OCCViewer/res/view_right.png + OCCViewer/res/tool_material.png + OCCViewer/res/tool_color.png + OCCViewer/res/tool_delete.png + OCCViewer/res/tool_shading.png + OCCViewer/res/tool_transparency.png + OCCViewer/res/tool_wireframe.png + OCCViewer/res/help.png + OCCViewer/res/cursor_rotate.png + OCCViewer/res/cursor_zoom.png + + diff --git a/ConfigFiles/icons/application_go.png b/ConfigFiles/icons/application_go.png new file mode 100644 index 0000000..5cc2b0d Binary files /dev/null and b/ConfigFiles/icons/application_go.png differ diff --git a/ConfigFiles/icons/application_link.png b/ConfigFiles/icons/application_link.png new file mode 100644 index 0000000..f8fbb3e Binary files /dev/null and b/ConfigFiles/icons/application_link.png differ diff --git a/ConfigFiles/icons/application_side_list.png b/ConfigFiles/icons/application_side_list.png new file mode 100644 index 0000000..37b4131 Binary files /dev/null and b/ConfigFiles/icons/application_side_list.png differ diff --git a/ConfigFiles/icons/bullet_arrow_bottom.png b/ConfigFiles/icons/bullet_arrow_bottom.png new file mode 100644 index 0000000..1a28d82 Binary files /dev/null and b/ConfigFiles/icons/bullet_arrow_bottom.png differ diff --git a/ConfigFiles/icons/bullet_arrow_down.png b/ConfigFiles/icons/bullet_arrow_down.png new file mode 100644 index 0000000..9b23c06 Binary files /dev/null and b/ConfigFiles/icons/bullet_arrow_down.png differ diff --git a/ConfigFiles/icons/bullet_arrow_top.png b/ConfigFiles/icons/bullet_arrow_top.png new file mode 100644 index 0000000..0ce86d2 Binary files /dev/null and b/ConfigFiles/icons/bullet_arrow_top.png differ diff --git a/ConfigFiles/icons/bullet_arrow_up.png b/ConfigFiles/icons/bullet_arrow_up.png new file mode 100644 index 0000000..24df0f4 Binary files /dev/null and b/ConfigFiles/icons/bullet_arrow_up.png differ diff --git a/ConfigFiles/icons/cancel.png b/ConfigFiles/icons/cancel.png new file mode 100644 index 0000000..c149c2b Binary files /dev/null and b/ConfigFiles/icons/cancel.png differ diff --git a/ConfigFiles/icons/chart_curve.png b/ConfigFiles/icons/chart_curve.png new file mode 100644 index 0000000..01e933a Binary files /dev/null and b/ConfigFiles/icons/chart_curve.png differ diff --git a/ConfigFiles/icons/clear_filters.png b/ConfigFiles/icons/clear_filters.png new file mode 100644 index 0000000..16288fd Binary files /dev/null and b/ConfigFiles/icons/clear_filters.png differ diff --git a/ConfigFiles/icons/clear_sorting.png b/ConfigFiles/icons/clear_sorting.png new file mode 100644 index 0000000..be27fea Binary files /dev/null and b/ConfigFiles/icons/clear_sorting.png differ diff --git a/ConfigFiles/icons/cog.png b/ConfigFiles/icons/cog.png new file mode 100644 index 0000000..67de2c6 Binary files /dev/null and b/ConfigFiles/icons/cog.png differ diff --git a/ConfigFiles/icons/cog_go.png b/ConfigFiles/icons/cog_go.png new file mode 100644 index 0000000..3262767 Binary files /dev/null and b/ConfigFiles/icons/cog_go.png differ diff --git a/ConfigFiles/icons/color_swatch.png b/ConfigFiles/icons/color_swatch.png new file mode 100644 index 0000000..6e6e852 Binary files /dev/null and b/ConfigFiles/icons/color_swatch.png differ diff --git a/ConfigFiles/icons/comment_block.png b/ConfigFiles/icons/comment_block.png new file mode 100644 index 0000000..3b3ee4c Binary files /dev/null and b/ConfigFiles/icons/comment_block.png differ diff --git a/ConfigFiles/icons/cross.png b/ConfigFiles/icons/cross.png new file mode 100644 index 0000000..1514d51 Binary files /dev/null and b/ConfigFiles/icons/cross.png differ diff --git a/ConfigFiles/icons/database.png b/ConfigFiles/icons/database.png new file mode 100644 index 0000000..3d09261 Binary files /dev/null and b/ConfigFiles/icons/database.png differ diff --git a/ConfigFiles/icons/database_add.png b/ConfigFiles/icons/database_add.png new file mode 100644 index 0000000..802bd6c Binary files /dev/null and b/ConfigFiles/icons/database_add.png differ diff --git a/ConfigFiles/icons/database_go.png b/ConfigFiles/icons/database_go.png new file mode 100644 index 0000000..61a8556 Binary files /dev/null and b/ConfigFiles/icons/database_go.png differ diff --git a/ConfigFiles/icons/database_link.png b/ConfigFiles/icons/database_link.png new file mode 100644 index 0000000..4c8204a Binary files /dev/null and b/ConfigFiles/icons/database_link.png differ diff --git a/ConfigFiles/icons/database_refresh.png b/ConfigFiles/icons/database_refresh.png new file mode 100644 index 0000000..ff803be Binary files /dev/null and b/ConfigFiles/icons/database_refresh.png differ diff --git a/ConfigFiles/icons/database_save.png b/ConfigFiles/icons/database_save.png new file mode 100644 index 0000000..44c06dd Binary files /dev/null and b/ConfigFiles/icons/database_save.png differ diff --git a/ConfigFiles/icons/document-link.png b/ConfigFiles/icons/document-link.png new file mode 100644 index 0000000..06df131 Binary files /dev/null and b/ConfigFiles/icons/document-link.png differ diff --git a/ConfigFiles/icons/document-open.png b/ConfigFiles/icons/document-open.png new file mode 100644 index 0000000..ab94046 Binary files /dev/null and b/ConfigFiles/icons/document-open.png differ diff --git a/ConfigFiles/icons/edit_cond_formats.png b/ConfigFiles/icons/edit_cond_formats.png new file mode 100644 index 0000000..3b69aa0 Binary files /dev/null and b/ConfigFiles/icons/edit_cond_formats.png differ diff --git a/ConfigFiles/icons/filter.png b/ConfigFiles/icons/filter.png new file mode 100644 index 0000000..58ec874 Binary files /dev/null and b/ConfigFiles/icons/filter.png differ diff --git a/ConfigFiles/icons/folder.png b/ConfigFiles/icons/folder.png new file mode 100644 index 0000000..784e8fa Binary files /dev/null and b/ConfigFiles/icons/folder.png differ diff --git a/ConfigFiles/icons/folder_user.png b/ConfigFiles/icons/folder_user.png new file mode 100644 index 0000000..f021c3e Binary files /dev/null and b/ConfigFiles/icons/folder_user.png differ diff --git a/ConfigFiles/icons/help.png b/ConfigFiles/icons/help.png new file mode 100644 index 0000000..5c87017 Binary files /dev/null and b/ConfigFiles/icons/help.png differ diff --git a/ConfigFiles/icons/hourglass.png b/ConfigFiles/icons/hourglass.png new file mode 100644 index 0000000..57b03ce Binary files /dev/null and b/ConfigFiles/icons/hourglass.png differ diff --git a/ConfigFiles/icons/icons.qrc b/ConfigFiles/icons/icons.qrc new file mode 100644 index 0000000..3d31be5 --- /dev/null +++ b/ConfigFiles/icons/icons.qrc @@ -0,0 +1,106 @@ + + + database_add.png + database_go.png + database_refresh.png + database_save.png + table_add.png + table_delete.png + table_edit.png + tag_blue_add.png + tag_blue_delete.png + page_edit.png + page_delete.png + page_add.png + page_green.png + table.png + tag_blue.png + view-refresh.png + picture_delete.png + picture.png + picture_add.png + script.png + script_add.png + script_delete.png + wrench.png + help.png + tab_add.png + resultset_next.png + page_save.png + page_white_database.png + plugin_add.png + plugin_delete.png + table_save.png + resultset_last.png + layout_sidebar.png + bullet_arrow_down.png + bullet_arrow_up.png + sqlitebrowser.png + internet-web-browser.png + package.png + package_go.png + page_key.png + key.png + document-open.png + chart_curve.png + cog.png + clear_filters.png + page_copy.png + resultset_previous.png + resultset_first.png + picture_edit.png + script_edit.png + tag_blue_edit.png + folder.png + database.png + cog_go.png + page_paste.png + folder_user.png + server_go.png + page_find.png + cross.png + page_white_copy.png + page_copy_sql.png + text_replace.png + picture_save.png + application_side_list.png + database_link.png + text_indent.png + printer.png + package_save.png + cancel.png + comment_block.png + hourglass.png + table_row_delete.png + table_row_insert.png + textfield_delete.png + filter.png + tab.png + package_rename.png + page_foreign_key.png + save_all.png + page_white_text.png + color_swatch.png + edit_cond_formats.png + clear_sorting.png + bullet_arrow_bottom.png + bullet_arrow_top.png + text_bold.png + text_italic.png + text_underline.png + text_align_center.png + text_align_justify.png + text_align_left.png + text_align_right.png + page_paintbrush.png + text_paintbrush.png + style.png + style_edit.png + style_delete.png + style_add.png + application_link.png + document-link.png + application_go.png + server_add.png + + diff --git a/ConfigFiles/icons/internet-web-browser.png b/ConfigFiles/icons/internet-web-browser.png new file mode 100644 index 0000000..ac5957a Binary files /dev/null and b/ConfigFiles/icons/internet-web-browser.png differ diff --git a/ConfigFiles/icons/key.png b/ConfigFiles/icons/key.png new file mode 100644 index 0000000..4ec1a92 Binary files /dev/null and b/ConfigFiles/icons/key.png differ diff --git a/ConfigFiles/icons/layout_sidebar.png b/ConfigFiles/icons/layout_sidebar.png new file mode 100644 index 0000000..3be27bb Binary files /dev/null and b/ConfigFiles/icons/layout_sidebar.png differ diff --git a/ConfigFiles/icons/package.png b/ConfigFiles/icons/package.png new file mode 100644 index 0000000..da3c2a2 Binary files /dev/null and b/ConfigFiles/icons/package.png differ diff --git a/ConfigFiles/icons/package_go.png b/ConfigFiles/icons/package_go.png new file mode 100644 index 0000000..aace63a Binary files /dev/null and b/ConfigFiles/icons/package_go.png differ diff --git a/ConfigFiles/icons/package_rename.png b/ConfigFiles/icons/package_rename.png new file mode 100644 index 0000000..41bf2be Binary files /dev/null and b/ConfigFiles/icons/package_rename.png differ diff --git a/ConfigFiles/icons/package_save.png b/ConfigFiles/icons/package_save.png new file mode 100644 index 0000000..35eb763 Binary files /dev/null and b/ConfigFiles/icons/package_save.png differ diff --git a/ConfigFiles/icons/page_add.png b/ConfigFiles/icons/page_add.png new file mode 100644 index 0000000..d5bfa07 Binary files /dev/null and b/ConfigFiles/icons/page_add.png differ diff --git a/ConfigFiles/icons/page_copy.png b/ConfigFiles/icons/page_copy.png new file mode 100644 index 0000000..195dc6d Binary files /dev/null and b/ConfigFiles/icons/page_copy.png differ diff --git a/ConfigFiles/icons/page_copy_sql.png b/ConfigFiles/icons/page_copy_sql.png new file mode 100644 index 0000000..3b0e3f8 Binary files /dev/null and b/ConfigFiles/icons/page_copy_sql.png differ diff --git a/ConfigFiles/icons/page_delete.png b/ConfigFiles/icons/page_delete.png new file mode 100644 index 0000000..3141467 Binary files /dev/null and b/ConfigFiles/icons/page_delete.png differ diff --git a/ConfigFiles/icons/page_edit.png b/ConfigFiles/icons/page_edit.png new file mode 100644 index 0000000..046811e Binary files /dev/null and b/ConfigFiles/icons/page_edit.png differ diff --git a/ConfigFiles/icons/page_find.png b/ConfigFiles/icons/page_find.png new file mode 100644 index 0000000..2f19388 Binary files /dev/null and b/ConfigFiles/icons/page_find.png differ diff --git a/ConfigFiles/icons/page_foreign_key.png b/ConfigFiles/icons/page_foreign_key.png new file mode 100644 index 0000000..62dc6d4 Binary files /dev/null and b/ConfigFiles/icons/page_foreign_key.png differ diff --git a/ConfigFiles/icons/page_green.png b/ConfigFiles/icons/page_green.png new file mode 100644 index 0000000..de8e003 Binary files /dev/null and b/ConfigFiles/icons/page_green.png differ diff --git a/ConfigFiles/icons/page_key.png b/ConfigFiles/icons/page_key.png new file mode 100644 index 0000000..d6626cb Binary files /dev/null and b/ConfigFiles/icons/page_key.png differ diff --git a/ConfigFiles/icons/page_paintbrush.png b/ConfigFiles/icons/page_paintbrush.png new file mode 100644 index 0000000..246a2f0 Binary files /dev/null and b/ConfigFiles/icons/page_paintbrush.png differ diff --git a/ConfigFiles/icons/page_paste.png b/ConfigFiles/icons/page_paste.png new file mode 100644 index 0000000..968f073 Binary files /dev/null and b/ConfigFiles/icons/page_paste.png differ diff --git a/ConfigFiles/icons/page_save.png b/ConfigFiles/icons/page_save.png new file mode 100644 index 0000000..caea546 Binary files /dev/null and b/ConfigFiles/icons/page_save.png differ diff --git a/ConfigFiles/icons/page_white_copy.png b/ConfigFiles/icons/page_white_copy.png new file mode 100644 index 0000000..a9f31a2 Binary files /dev/null and b/ConfigFiles/icons/page_white_copy.png differ diff --git a/ConfigFiles/icons/page_white_database.png b/ConfigFiles/icons/page_white_database.png new file mode 100644 index 0000000..bddba1f Binary files /dev/null and b/ConfigFiles/icons/page_white_database.png differ diff --git a/ConfigFiles/icons/page_white_text.png b/ConfigFiles/icons/page_white_text.png new file mode 100644 index 0000000..813f712 Binary files /dev/null and b/ConfigFiles/icons/page_white_text.png differ diff --git a/ConfigFiles/icons/picture.png b/ConfigFiles/icons/picture.png new file mode 100644 index 0000000..4a158fe Binary files /dev/null and b/ConfigFiles/icons/picture.png differ diff --git a/ConfigFiles/icons/picture_add.png b/ConfigFiles/icons/picture_add.png new file mode 100644 index 0000000..d6d3f85 Binary files /dev/null and b/ConfigFiles/icons/picture_add.png differ diff --git a/ConfigFiles/icons/picture_delete.png b/ConfigFiles/icons/picture_delete.png new file mode 100644 index 0000000..cca9f53 Binary files /dev/null and b/ConfigFiles/icons/picture_delete.png differ diff --git a/ConfigFiles/icons/picture_edit.png b/ConfigFiles/icons/picture_edit.png new file mode 100644 index 0000000..9a70c34 Binary files /dev/null and b/ConfigFiles/icons/picture_edit.png differ diff --git a/ConfigFiles/icons/picture_save.png b/ConfigFiles/icons/picture_save.png new file mode 100644 index 0000000..777fb5d Binary files /dev/null and b/ConfigFiles/icons/picture_save.png differ diff --git a/ConfigFiles/icons/plugin_add.png b/ConfigFiles/icons/plugin_add.png new file mode 100644 index 0000000..ae43690 Binary files /dev/null and b/ConfigFiles/icons/plugin_add.png differ diff --git a/ConfigFiles/icons/plugin_delete.png b/ConfigFiles/icons/plugin_delete.png new file mode 100644 index 0000000..d9c3376 Binary files /dev/null and b/ConfigFiles/icons/plugin_delete.png differ diff --git a/ConfigFiles/icons/printer.png b/ConfigFiles/icons/printer.png new file mode 100644 index 0000000..a350d18 Binary files /dev/null and b/ConfigFiles/icons/printer.png differ diff --git a/ConfigFiles/icons/resultset_first.png b/ConfigFiles/icons/resultset_first.png new file mode 100644 index 0000000..b03eaf8 Binary files /dev/null and b/ConfigFiles/icons/resultset_first.png differ diff --git a/ConfigFiles/icons/resultset_last.png b/ConfigFiles/icons/resultset_last.png new file mode 100644 index 0000000..8ec8947 Binary files /dev/null and b/ConfigFiles/icons/resultset_last.png differ diff --git a/ConfigFiles/icons/resultset_next.png b/ConfigFiles/icons/resultset_next.png new file mode 100644 index 0000000..e252606 Binary files /dev/null and b/ConfigFiles/icons/resultset_next.png differ diff --git a/ConfigFiles/icons/resultset_previous.png b/ConfigFiles/icons/resultset_previous.png new file mode 100644 index 0000000..18f9cc1 Binary files /dev/null and b/ConfigFiles/icons/resultset_previous.png differ diff --git a/ConfigFiles/icons/save_all.png b/ConfigFiles/icons/save_all.png new file mode 100644 index 0000000..14e2a7c Binary files /dev/null and b/ConfigFiles/icons/save_all.png differ diff --git a/ConfigFiles/icons/script.png b/ConfigFiles/icons/script.png new file mode 100644 index 0000000..0f9ed4d Binary files /dev/null and b/ConfigFiles/icons/script.png differ diff --git a/ConfigFiles/icons/script_add.png b/ConfigFiles/icons/script_add.png new file mode 100644 index 0000000..d650552 Binary files /dev/null and b/ConfigFiles/icons/script_add.png differ diff --git a/ConfigFiles/icons/script_delete.png b/ConfigFiles/icons/script_delete.png new file mode 100644 index 0000000..e6500ce Binary files /dev/null and b/ConfigFiles/icons/script_delete.png differ diff --git a/ConfigFiles/icons/script_edit.png b/ConfigFiles/icons/script_edit.png new file mode 100644 index 0000000..b4d31ce Binary files /dev/null and b/ConfigFiles/icons/script_edit.png differ diff --git a/ConfigFiles/icons/server_add.png b/ConfigFiles/icons/server_add.png new file mode 100644 index 0000000..3f10a3a Binary files /dev/null and b/ConfigFiles/icons/server_add.png differ diff --git a/ConfigFiles/icons/server_go.png b/ConfigFiles/icons/server_go.png new file mode 100644 index 0000000..540c8e2 Binary files /dev/null and b/ConfigFiles/icons/server_go.png differ diff --git a/ConfigFiles/icons/sqlitebrowser.png b/ConfigFiles/icons/sqlitebrowser.png new file mode 100644 index 0000000..7897a11 Binary files /dev/null and b/ConfigFiles/icons/sqlitebrowser.png differ diff --git a/ConfigFiles/icons/style.png b/ConfigFiles/icons/style.png new file mode 100644 index 0000000..81e41de Binary files /dev/null and b/ConfigFiles/icons/style.png differ diff --git a/ConfigFiles/icons/style_add.png b/ConfigFiles/icons/style_add.png new file mode 100644 index 0000000..e0369c6 Binary files /dev/null and b/ConfigFiles/icons/style_add.png differ diff --git a/ConfigFiles/icons/style_delete.png b/ConfigFiles/icons/style_delete.png new file mode 100644 index 0000000..640f187 Binary files /dev/null and b/ConfigFiles/icons/style_delete.png differ diff --git a/ConfigFiles/icons/style_edit.png b/ConfigFiles/icons/style_edit.png new file mode 100644 index 0000000..25bb5b6 Binary files /dev/null and b/ConfigFiles/icons/style_edit.png differ diff --git a/ConfigFiles/icons/tab.png b/ConfigFiles/icons/tab.png new file mode 100644 index 0000000..3d8207f Binary files /dev/null and b/ConfigFiles/icons/tab.png differ diff --git a/ConfigFiles/icons/tab_add.png b/ConfigFiles/icons/tab_add.png new file mode 100644 index 0000000..d3b9936 Binary files /dev/null and b/ConfigFiles/icons/tab_add.png differ diff --git a/ConfigFiles/icons/table.png b/ConfigFiles/icons/table.png new file mode 100644 index 0000000..abcd936 Binary files /dev/null and b/ConfigFiles/icons/table.png differ diff --git a/ConfigFiles/icons/table_add.png b/ConfigFiles/icons/table_add.png new file mode 100644 index 0000000..2a3e5c4 Binary files /dev/null and b/ConfigFiles/icons/table_add.png differ diff --git a/ConfigFiles/icons/table_delete.png b/ConfigFiles/icons/table_delete.png new file mode 100644 index 0000000..b85916d Binary files /dev/null and b/ConfigFiles/icons/table_delete.png differ diff --git a/ConfigFiles/icons/table_edit.png b/ConfigFiles/icons/table_edit.png new file mode 100644 index 0000000..bfcb024 Binary files /dev/null and b/ConfigFiles/icons/table_edit.png differ diff --git a/ConfigFiles/icons/table_row_delete.png b/ConfigFiles/icons/table_row_delete.png new file mode 100644 index 0000000..d52c57e Binary files /dev/null and b/ConfigFiles/icons/table_row_delete.png differ diff --git a/ConfigFiles/icons/table_row_insert.png b/ConfigFiles/icons/table_row_insert.png new file mode 100644 index 0000000..cfbfc75 Binary files /dev/null and b/ConfigFiles/icons/table_row_insert.png differ diff --git a/ConfigFiles/icons/table_save.png b/ConfigFiles/icons/table_save.png new file mode 100644 index 0000000..25b74d1 Binary files /dev/null and b/ConfigFiles/icons/table_save.png differ diff --git a/ConfigFiles/icons/tag_blue.png b/ConfigFiles/icons/tag_blue.png new file mode 100644 index 0000000..9757fc6 Binary files /dev/null and b/ConfigFiles/icons/tag_blue.png differ diff --git a/ConfigFiles/icons/tag_blue_add.png b/ConfigFiles/icons/tag_blue_add.png new file mode 100644 index 0000000..f135248 Binary files /dev/null and b/ConfigFiles/icons/tag_blue_add.png differ diff --git a/ConfigFiles/icons/tag_blue_delete.png b/ConfigFiles/icons/tag_blue_delete.png new file mode 100644 index 0000000..9fbae67 Binary files /dev/null and b/ConfigFiles/icons/tag_blue_delete.png differ diff --git a/ConfigFiles/icons/tag_blue_edit.png b/ConfigFiles/icons/tag_blue_edit.png new file mode 100644 index 0000000..2a9f626 Binary files /dev/null and b/ConfigFiles/icons/tag_blue_edit.png differ diff --git a/ConfigFiles/icons/text_align_center.png b/ConfigFiles/icons/text_align_center.png new file mode 100644 index 0000000..57beb38 Binary files /dev/null and b/ConfigFiles/icons/text_align_center.png differ diff --git a/ConfigFiles/icons/text_align_justify.png b/ConfigFiles/icons/text_align_justify.png new file mode 100644 index 0000000..2fbdd69 Binary files /dev/null and b/ConfigFiles/icons/text_align_justify.png differ diff --git a/ConfigFiles/icons/text_align_left.png b/ConfigFiles/icons/text_align_left.png new file mode 100644 index 0000000..6c8fcc1 Binary files /dev/null and b/ConfigFiles/icons/text_align_left.png differ diff --git a/ConfigFiles/icons/text_align_right.png b/ConfigFiles/icons/text_align_right.png new file mode 100644 index 0000000..a150257 Binary files /dev/null and b/ConfigFiles/icons/text_align_right.png differ diff --git a/ConfigFiles/icons/text_bold.png b/ConfigFiles/icons/text_bold.png new file mode 100644 index 0000000..889ae80 Binary files /dev/null and b/ConfigFiles/icons/text_bold.png differ diff --git a/ConfigFiles/icons/text_indent.png b/ConfigFiles/icons/text_indent.png new file mode 100644 index 0000000..9364532 Binary files /dev/null and b/ConfigFiles/icons/text_indent.png differ diff --git a/ConfigFiles/icons/text_italic.png b/ConfigFiles/icons/text_italic.png new file mode 100644 index 0000000..8482ac8 Binary files /dev/null and b/ConfigFiles/icons/text_italic.png differ diff --git a/ConfigFiles/icons/text_paintbrush.png b/ConfigFiles/icons/text_paintbrush.png new file mode 100644 index 0000000..6187693 Binary files /dev/null and b/ConfigFiles/icons/text_paintbrush.png differ diff --git a/ConfigFiles/icons/text_replace.png b/ConfigFiles/icons/text_replace.png new file mode 100644 index 0000000..877f82f Binary files /dev/null and b/ConfigFiles/icons/text_replace.png differ diff --git a/ConfigFiles/icons/text_underline.png b/ConfigFiles/icons/text_underline.png new file mode 100644 index 0000000..90d0df2 Binary files /dev/null and b/ConfigFiles/icons/text_underline.png differ diff --git a/ConfigFiles/icons/textfield_delete.png b/ConfigFiles/icons/textfield_delete.png new file mode 100644 index 0000000..c7bd58b Binary files /dev/null and b/ConfigFiles/icons/textfield_delete.png differ diff --git a/ConfigFiles/icons/view-refresh.png b/ConfigFiles/icons/view-refresh.png new file mode 100644 index 0000000..3fd71d6 Binary files /dev/null and b/ConfigFiles/icons/view-refresh.png differ diff --git a/ConfigFiles/icons/wrench.png b/ConfigFiles/icons/wrench.png new file mode 100644 index 0000000..5c8213f Binary files /dev/null and b/ConfigFiles/icons/wrench.png differ diff --git a/ConfigFiles/qianfan.aps b/ConfigFiles/qianfan.aps new file mode 100644 index 0000000..e033159 Binary files /dev/null and b/ConfigFiles/qianfan.aps differ diff --git a/ConfigFiles/qianfan.qrc b/ConfigFiles/qianfan.qrc new file mode 100644 index 0000000..2869cd8 --- /dev/null +++ b/ConfigFiles/qianfan.qrc @@ -0,0 +1,274 @@ + + + QUI/main.ico + QUI/icon/createNew.png + QUI/icon/exportGeometry.png + QUI/icon/exportMesh.png + QUI/icon/face.png + QUI/icon/faceWithEdge.png + QUI/icon/geometry.png + QUI/icon/graphOption.png + QUI/icon/importGeometry.png + QUI/icon/importMesh.png + QUI/icon/iso.png + QUI/icon/mesh.png + QUI/icon/node.png + QUI/icon/open.png + QUI/icon/save.png + QUI/icon/saveAnimate.png + QUI/icon/saveAs.png + QUI/icon/selectElement.png + QUI/icon/selectGeo.png + QUI/icon/selectNode.png + QUI/icon/selectOff.png + QUI/icon/setting.png + QUI/icon/solve.png + QUI/icon/stop.png + QUI/icon/wireFrame.png + QUI/icon/xMinus.png + QUI/icon/xPlus.png + QUI/icon/yMinus.png + QUI/icon/yPlus.png + QUI/icon/zMinus.png + QUI/icon/zPlus.png + QUI/icon/fit.png + Hello.png + QUI/icon/solidMesh.png + QUI/icon/surfaceMesh.png + QUI/icon/material.png + QUI/icon/physics.png + QUI/icon/chinese_language.png + QUI/icon/english_language.png + QUI/icon/icon.png + QUI/icon/surface.png + QUI/icon/surfaceWithEdge.png + QUI/icon/about_us.png + QUI/icon/help.png + QUI/icon/createSet.png + QUI/icon/solumationsetting.png + QUI/icon/bc.png + QUI/icon/monitor.png + QUI/icon/counter.png + QUI/icon/post.png + QUI/icon/streamline.png + QUI/icon/vector.png + QUI/icon/eleset.png + QUI/icon/nodeset.png + QUI/icon/acce.png + QUI/icon/angle.png + QUI/icon/far.png + QUI/icon/fulid.png + QUI/icon/inlet.png + QUI/icon/near.png + QUI/icon/outlet.png + QUI/icon/press.png + QUI/icon/speed.png + QUI/icon/symmetry.png + QUI/icon/wall.png + QUI/icon/fix.png + QUI/icon/tempure.png + QUI/icon/curve.png + QUI/icon/desCase.png + QUI/icon/desGeo.png + QUI/icon/desMesh.png + QUI/icon/family.png + QUI/icon/water_drop.gif + QUI/icon/expandL1.png + QUI/icon/normalL1.png + QUI/icon/saveImage.png + QUI/icon/execScript.png + QUI/icon/saveScript.png + QUI/icon/boxCell.png + QUI/icon/boxNode.png + QUI/icon/meshChecking.png + QUI/geometry/box.png + QUI/geometry/chamfer.png + QUI/geometry/common.png + QUI/geometry/cone.png + QUI/geometry/cut.png + QUI/geometry/cylinder.png + QUI/geometry/extrude.png + QUI/geometry/fillet.png + QUI/geometry/FitAll.png + QUI/geometry/fuse.png + QUI/geometry/helix.png + QUI/geometry/Home.png + QUI/geometry/lamp.png + QUI/geometry/loft.png + QUI/geometry/revolve.png + QUI/geometry/Rotate.png + QUI/geometry/sphere.png + QUI/geometry/torus.png + QUI/geometry/wedge.png + QUI/geometry/Zoom.png + QUI/geometry/selectface.png + QUI/geometry/selectpoint.png + QUI/geometry/selectwire.png + QUI/geometry/redo.png + QUI/geometry/undo.png + QUI/geometry/mirror.png + QUI/geometry/extrusion.png + QUI/geometry/variableFillet.png + QUI/geometry/face.png + QUI/geometry/line.png + QUI/geometry/point.png + QUI/geometry/move.png + QUI/geometry/add.png + QUI/geometry/remove.png + QUI/icon/createSketch.png + QUI/icon/datumPlane.png + QUI/icon/sketchArc.png + QUI/icon/sketchCircle.png + QUI/icon/sketchLine.png + QUI/icon/sketchRectangle.png + QUI/icon/sketchPolyLine.png + QUI/icon/sketchSpline.png + QUI/geometry/sweep.png + QUI/geometry/edgeDisplay.png + QUI/geometry/facedisplay.png + QUI/geometry/matrix.png + QUI/geometry/pointDisplay.png + QUI/geometry/selectbody.png + QUI/icon/Plugin_ava.png + QUI/icon/Plugin_ins.png + QUI/icon/FastCAEFrame.png + QUI/icon/ruler.png + QUI/geometry/split.png + QUI/geometry/select.png + QUI/geometry/geoFillHole.png + QUI/geometry/geoFixSurface.png + QUI/geometry/geoRemoveFace.png + QUI/geometry/geoSSplit.png + QUI/geometry/geoMeasure.png + QUI/icon/meshComponent.png + QUI/icon/meshFilter.png + QUI/icon/meshFluid.png + QUI/icon/meshmodeling.png + QUI/icon/pluginManager.png + QUI/icon/language.png + QUI/window/2dplot.png + QUI/window/3dgraph.png + QUI/window/preWindow.png + QUI/window/startpage.png + QUI/icon/userguidance.png + QUI/geometry/geoComponent.png + QUI/post/back.png + QUI/post/clip.png + QUI/post/counter.png + QUI/post/end.png + QUI/post/first.png + QUI/post/fit.png + QUI/post/front.png + QUI/post/isosurf.png + QUI/post/next.png + QUI/post/point.png + QUI/post/post.png + QUI/post/previous.png + QUI/post/run.png + QUI/post/saveImage.png + QUI/post/stop.png + QUI/post/streamline.png + QUI/post/up.png + QUI/post/vector.png + QUI/post/video.png + QUI/post/calculator.png + QUI/post/editColor.png + QUI/post/glyph.png + QUI/post/last.png + QUI/post/Reflection.png + QUI/post/rep_point.png + QUI/post/rep_surface.png + QUI/post/rep_surfaceWithEdge.png + QUI/post/rep_wireFrame.png + QUI/post/ScalarBar.png + QUI/post/slice.png + QUI/post/val_on_cell.png + QUI/post/val_on_point.png + QUI/post/isocurve.png + QUI/post/open.png + + + PointCloudProcess/images/files/add.png + PointCloudProcess/images/files/bgColor.png + PointCloudProcess/images/files/cloud.png + PointCloudProcess/images/files/cloud2.png + PointCloudProcess/images/files/copy.png + PointCloudProcess/images/files/CSV.png + PointCloudProcess/images/files/cut.png + PointCloudProcess/images/files/log.png + PointCloudProcess/images/files/new1.png + PointCloudProcess/images/files/new2.png + PointCloudProcess/images/files/paste.png + PointCloudProcess/images/files/pointCloud.png + PointCloudProcess/images/files/search.png + PointCloudProcess/images/files/snapshot.png + PointCloudProcess/images/files/star.png + PointCloudProcess/images/files/txt.png + PointCloudProcess/images/algorithm/binary.png + PointCloudProcess/images/algorithm/chooseMatrix.png + PointCloudProcess/images/algorithm/DASHBOARD.png + PointCloudProcess/images/algorithm/DBSCAN.png + PointCloudProcess/images/algorithm/density.png + PointCloudProcess/images/algorithm/extract.png + PointCloudProcess/images/algorithm/filter.png + PointCloudProcess/images/algorithm/help.png + PointCloudProcess/images/algorithm/Histogram.png + PointCloudProcess/images/algorithm/KMeans.png + PointCloudProcess/images/algorithm/matrix.png + PointCloudProcess/images/algorithm/more.png + PointCloudProcess/images/algorithm/nihe.png + PointCloudProcess/images/algorithm/person.png + PointCloudProcess/images/algorithm/pingjie.png + PointCloudProcess/images/algorithm/transform.png + PointCloudProcess/images/algorithm/tree.png + PointCloudProcess/images/1.gif + PointCloudProcess/images/back.png + PointCloudProcess/images/bottom.png + PointCloudProcess/images/camera.png + PointCloudProcess/images/color.png + PointCloudProcess/images/coodinate.png + PointCloudProcess/images/front.png + PointCloudProcess/images/grey.png + PointCloudProcess/images/ic-redo.png + PointCloudProcess/images/ic-undo.png + PointCloudProcess/images/keda.ico + PointCloudProcess/images/left.png + PointCloudProcess/images/lock.png + PointCloudProcess/images/open.png + PointCloudProcess/images/redo.png + PointCloudProcess/images/reset.png + PointCloudProcess/images/RGB.png + PointCloudProcess/images/right.png + PointCloudProcess/images/rotate0.png + PointCloudProcess/images/rotate90.png + PointCloudProcess/images/rotate180.png + PointCloudProcess/images/rotate270.png + PointCloudProcess/images/seting.png + PointCloudProcess/images/undo.png + PointCloudProcess/images/up.png + PointCloudProcess/images/zoomin.png + PointCloudProcess/images/zoomout.png + + + QUI/beauty/radio_selected.png + QUI/beauty/radio_unselected.png + QUI/beauty/toolbar_bk.png + QUI/beauty/tree_expand.png + QUI/beauty/tree_normal.png + QUI/beauty/dock_title.png + QUI/beauty/close_normal.png + QUI/beauty/close_pressed.png + QUI/beauty/max_normal.png + QUI/beauty/max_pressed.png + QUI/beauty/min_normal.png + QUI/beauty/min_pressed.png + QUI/beauty/restore_normal.png + QUI/beauty/restore_pressed.png + QUI/beauty/qianfan.qss + QUI/beauty/btn_normal.png + QUI/beauty/checked.png + QUI/beauty/tree_item_checked.png + QUI/beauty/tree_item_unchecked.png + QUI/beauty/Sticker_Star.png + + diff --git a/ConfigFiles/qianfan.rc b/ConfigFiles/qianfan.rc new file mode 100644 index 0000000..26bb0a0 --- /dev/null +++ b/ConfigFiles/qianfan.rc @@ -0,0 +1 @@ +IDI_ICON1 ICON DISCARDABLE "QUI/main.ico" \ No newline at end of file diff --git a/ConfigFiles/tools.qrc b/ConfigFiles/tools.qrc new file mode 100644 index 0000000..e228426 --- /dev/null +++ b/ConfigFiles/tools.qrc @@ -0,0 +1,5 @@ + + + QUI/tools/XMaterial.ico + + diff --git a/ConfigFiles/translations.qrc b/ConfigFiles/translations.qrc new file mode 100644 index 0000000..2ce0984 --- /dev/null +++ b/ConfigFiles/translations.qrc @@ -0,0 +1,20 @@ + + + translations/MainWidgets_zh_CN.qm + translations/MainWindow_zh_CN.qm + translations/ModuleBase_zh_CN.qm + translations/Setting_zh_CN.qm + translations/ProjectTree_zh_CN.qm + translations/PostWidgets_zh_CN.qm + translations/Material_zh_CN.qm + translations/IO_zh_CN.qm + translations/GeometryWidgets_zh_CN.qm + translations/PluginManager_zh_CN.qm + translations/GmshModule_zh_CN.qm + translations/SolverControl_Zh_CN.qm + translations/UserGuidence_zh_CN.qm + translations/SelfDefObject_zh_CN.qm + translations/SARibbonBar_zh_CN.qm + translations/PostInterface_zh_CN.qm + + diff --git a/ConfigFiles/translations/GeometryWidgets_zh_CN.qm b/ConfigFiles/translations/GeometryWidgets_zh_CN.qm new file mode 100644 index 0000000..b8ea49e Binary files /dev/null and b/ConfigFiles/translations/GeometryWidgets_zh_CN.qm differ diff --git a/ConfigFiles/translations/GeometryWidgets_zh_CN.ts b/ConfigFiles/translations/GeometryWidgets_zh_CN.ts new file mode 100644 index 0000000..2948785 --- /dev/null +++ b/ConfigFiles/translations/GeometryWidgets_zh_CN.ts @@ -0,0 +1,2321 @@ + + + + + BoolOptionDialog + + + Bool Dialog + 布尔运算 + + + + Body 1 + 几何体1 + + + + + Selected body(0) + 已选择体(0) + + + + Body 2 + 几何体2 + + + + CreateBox + + + Create Box + 创建立方体 + + + + Name: + 名称: + + + + Location + 位置 + + + + Geometry + 几何 + + + + Length: + 长度: + + + + Width: + 宽度: + + + + + + 10.00 + + + + + + + mm + + + + + Height: + 高度: + + + + CreateChamferDialog + + + Create Chamfer + 创建倒角 + + + + Edge + 倒角边 + + + + Selected edge(0) + 已选择边(0) + + + + Distance + 距离 + + + + Section: + 选项: + + + + Symmetrical + 对称 + + + + Asymmetrical + 非对称 + + + + Distance 1: + 距离1: + + + + + 1.00 + + + + + + mm + + + + + Distance 2: + 距离2: + + + + CreateCone + + + Create Cone + 创建圆台 + + + + Name: + 名称: + + + + Location + 位置 + + + + Geometry + 几何 + + + + Radius 1: + 半径1: + + + + Radius 2: + 半径2: + + + + + + mm + + + + + Length: + 长度: + + + + Axis + 轴线 + + + + X axis + X轴 + + + + Y axis + Y轴 + + + + Z axis + Z轴 + + + + User define + 自定义 + + + + CreateCylinder + + + Create Cylinder + 创建圆柱 + + + + Name: + 名称: + + + + Location + 位置 + + + + Parameter + 参数 + + + + Radius: + 半径: + + + + + mm + + + + + Length: + 长度: + + + + Axis + 轴线 + + + + X axis + X轴 + + + + Y axis + Y轴 + + + + Z axis + Z轴 + + + + User define + 自定义 + + + + CreateDatumplaneDialog + + + Create Datum + 创建基准平面 + + + + Reverse + 反向 + + + + + Distance + 距离 + + + + 10.00 + + + + + Select + 选择面 + + + + Selected Plane + 已选择平面 + + + + CreateExtrusion + + + Create Extrusion + 拉伸 + + + + Select + 选择边 + + + + Selected edge(0) + 已选择边(0) + + + + Direction + 方向 + + + + User define + 自定义 + + + + X axis + X轴 + + + + Y axis + Y轴 + + + + Z axis + Z轴 + + + + Reverse + 反向 + + + + Generate Solid + 生成实体 + + + + + Distance + 距离 + + + + 10.00 + + + + + CreateFaceDialog + + + Create Face + 创建基准平面 + + + + Name: + 名称: + + + + Select Edge + 选择边 + + + + Selected edge(0) + 已选择边(0) + + + + CreateFilterDialog + + + Create Fillet + 创建圆角 + + + + Edge + 倒角边 + + + + Selected edge(0) + 已选择边(0) + + + + Distance + 距离 + + + + Radius: + 半径: + + + + 1.00 + + + + + mm + + + + + CreateLineDialog + + + Create Edge + 创建直线 + + + + Name: + 名称: + + + + Start Point + 起始点 + + + + End Point + 终止点 + + + + Option: + 选项: + + + + Point + 两点 + + + + + Direction + 方向 + + + + Tab 1 + + + + + Tab 2 + + + + + Length: + 长度: + + + + 10.00 + + + + + X axis + X轴 + + + + Y axis + Y轴 + + + + Z axis + Z轴 + + + + User define + 自定义 + + + + Reverse + 反向 + + + + CreateLoftDialog + + + Create Loft + 创建放样 + + + + + Section + 横截面 + + + + Selected Edge(0) + 已选择边(0) + + + + Add new section + 添加新截面 + + + + Sections + 横截面 + + + + Numbers + 边数 + + + + Generate Solid + 生成实体 + + + + CreatePoint + + + Create Point + 创建点 + + + + Name: + 名称: + + + + Location + 位置 + + + + Offset + 偏移 + + + + X: + + + + + Y + + + + + + + 0.00 + + + + + + + mm + + + + + Z + + + + + CreateRevol + + + Create Revol + 旋转 + + + + Basic Point + 基准点 + + + + + Degree + 角度 + + + + 90.0 + + + + + deg + + + + + Edge + 选择边 + + + + + Selected edge(0) + 已选择边(0) + + + + Generate Solid + 生成实体 + + + + Direction + 方向 + + + + Option + 选项 + + + + Select On Geometry + 选取几何边 + + + + Coordinate + 坐标系 + + + + Tab 1 + + + + + Tab 2 + + + + + X axis + X轴 + + + + Y axis + Y轴 + + + + Z axis + Z轴 + + + + User define + 自定义 + + + + Reverse + 反向 + + + + CreateSphere + + + Create Sphere + 创建球体 + + + + Name: + 名称: + + + + Location + 位置 + + + + Geometry + 几何 + + + + Radius: + 半径: + + + + mm + + + + + DialogFillGap + + + DialogFillGap + 填补缝隙 + + + + Edge + 曲线 + + + + Surface + 曲面 + + + + Solid + 实体 + + + + Please Select + 选取类型 + + + + Tab 2 + + + + + + + Selected Object(0) + 已选取对象(0) + + + + + 页 + + + + + DialogRemoveSurface + + + DialogRemoveSurface + 移除曲面 + + + + Surfaces + 曲面 + + + + Selected Surface(0) + 已选择曲面(0) + + + + FillHoleDialog + + + DialogFillHole + 填补孔洞 + + + + Hole + 孔洞 + + + + Selected Hole(0) + 选择孔洞 + + + + GeoSplitterDialog + + + Geometry Splitter + 几何分割 + + + + Body + 实体 + + + + Selected Body(0) + 已选择实体(0) + + + + Select Plane + 选取平面 + + + + Method + 方法 + + + + Select plane on geometry + 选取几何平面 + + + + Coordinate + 坐标系 + + + + Random + 任意 + + + + Tab 1 + + + + + Tab 2 + + + + + Plane: + 平面: + + + + XOY + + + + + XOZ + + + + + YOZ + + + + + Tab 3 + + + + + Basic Point + 基准点 + + + + Axis + 轴线 + + + + X axis + X轴 + + + + Y axis + Y轴 + + + + Z axis + Z轴 + + + + User define + 自定义 + + + + Selected Plane(0) + 已选择平面(0) + + + + GeometryWidget::BoolOpertionDialog + + + Cut + 求差 + + + + Fause + 求和 + + + + Common + 求交 + + + + Unmaned + 未命名 + + + + + Selected body(1) + 已选择体(1) + + + + Selected body(0) + 已选择体(0) + + + + Warning + 警告 + + + + Input Wrong ! + 输入错误! + + + + GeometryWidget::CreateBoxDialog + + + Edit Box + 编辑 + + + + Warning + 警告 + + + + Input Wrong ! + 输入错误! + + + + GeometryWidget::CreateChamferDialog + + + + Selected edge(%1) + 已选择边(%1) + + + + Warning + 警告 + + + + Input Wrong ! + 输入错误! + + + + GeometryWidget::CreateConeDialog + + + + Warning + 警告 + + + + The two radii are equal! + 两端面半径相等! + + + + Input Wrong ! + 输入错误! + + + + GeometryWidget::CreateCylinderDialog + + + Warning + 警告 + + + + Input Wrong ! + 输入错误! + + + + GeometryWidget::CreateDatumplaneDialog + + + + Warning + 警告 + + + + Input Wrong ! + 输入错误! + + + + Create failed ! + 创建失败! + + + + GeometryWidget::CreateExtrusionDialog + + + + Selected edge(%1) + 已选择边(%1) + + + + Warning + 警告 + + + + Input Wrong ! + 输入错误! + + + + GeometryWidget::CreateFaceDialog + + + Warning + 警告 + + + + Input Wrong ! + 输入错误! + + + + + Selected edge(%1) + 已选择边(%1) + + + + GeometryWidget::CreateFiletDialog + + + Edit Fillet + 编辑 + + + + Warning + 警告 + + + + Input Wrong ! + 输入错误! + + + + + Selected edge(%1) + 已选择边(%1) + + + + GeometryWidget::CreateLineDialog + + + Warning + 警告 + + + + Input Wrong ! + 输入错误! + + + + GeometryWidget::CreateLoftDialog + + + + Selected TopEdge(%1) + 已选择边(%1) + + + + Warning + 警告 + + + + Create failed ! + 创建失败! + + + + GeometryWidget::CreatePointDialog + + + Warning + 警告 + + + + Input Wrong ! + 输入错误! + + + + GeometryWidget::CreateRevolDialog + + + Selected edge(%1) + 已选择边(%1) + + + + Selected Axis_edge(1) + 已选轴线(1) + + + + Warning + 警告 + + + + Input Wrong ! + 输入错误! + + + + GeometryWidget::CreateSphereDialog + + + Warning + 警告 + + + + Input Wrong ! + 输入错误! + + + + GeometryWidget::GeoDialogBase + + + OK + 确认 + + + + Cancel + 取消 + + + + GeometryWidget::GeoSplitterDialog + + + Selected body(1) + 已选择体(1) + + + + + Selected Plane(1) + 已选择平面(1) + + + + Selected body(%1) + 已选择体(%1) + + + + GeometryWidget::MakeFillGapDialog + + + + + + + + Selected Object(%1) + 已选取对象(%1) + + + + GeometryWidget::MakeFillHoleDialog + + + Edit Hole + 编辑 + + + + + Selected Hole(%1) + 已选择孔洞(%1) + + + + Warning + 警告 + + + + Input Wrong ! + 输入错误! + + + + GeometryWidget::MakeMatrixDialog + + + + Warning + 警告 + + + + + Input Wrong ! + 输入错误! + + + + + Selected body(%1) + 已选择体(%1) + + + + GeometryWidget::MakeRemoveSurfaceDialog + + + Edit RemoveSurface + 编辑移除曲面 + + + + + Selected Surface(%1) + 已选择曲面(%1) + + + + Warning + 警告 + + + + Input Wrong ! + 输入错误! + + + + GeometryWidget::MeasureDistanceDialog + + + Selected Object(%1) + 已选取对象(%1) + + + + + + Selected Object(1) + 已选取对象(1) + + + + GeometryWidget::MirorFeatureDialog + + + Warning + 警告 + + + + Input Wrong ! + 输入错误! + + + + + Selected body(%1) + 已选择体(%1) + + + + + Selected Plane(1) + 已选择平面(1) + + + + GeometryWidget::MoveFeatureDialog + + + Warning + 警告 + + + + Input Wrong ! + 输入错误! + + + + + Selected body(%1) + 已选择体(%1) + + + + GeometryWidget::RotateFeatureDialog + + + Warning + 警告 + + + + Input Wrong ! + 输入错误! + + + + + Selected body(%1) + 已选择体(%1) + + + + + Selected edge(1) + 已选择边(1) + + + + GeometryWidget::SketchPlanDialog + + + Warning + 警告 + + + + Create failed ! + 创建失败! + + + + GeometryWidget::SweepDialog + + + + + + Selected edge(%1) + 已选择边(%1) + + + + Warning + 警告 + + + + Input Wrong ! + 输入错误! + + + + GeometryWidget::VariableFilletDialog + + + + Selected edge(1) + 已选择边(1) + + + + + Warning + 警告 + + + + + Input Wrong ! + 输入错误! + + + + MakeMatrixDialog + + + Make Matrix + 阵列 + + + + Option: + 选项: + + + + Linear Matrix + 线性阵列 + + + + Wire Matrix + 环形阵列 + + + + Body + 几何体 + + + + Selected body(0) + 已选择体(0) + + + + Tab 1 + + + + + Direction 2 + 方向2 + + + + + + Direction + 方向 + + + + + + X axis + X轴 + + + + + + Y axis + Y轴 + + + + + + Z axis + Z轴 + + + + + + User define + 自定义 + + + + + + Reverse + 反向 + + + + + Distance + 距离 + + + + + 15 + + + + + + + Count + 数目 + + + + Direction 1 + 方向1 + + + + Set Direction 2 + 设置方向2 + + + + Tab 2 + + + + + Axis + 轴线 + + + + Basic Point + 基准点 + + + + Pitch Angle + 角度 + + + + 30 + + + + + deg + + + + + MeasureaDistanceDialog + + + + Distance + 距离 + + + + Calculate + 计算 + + + + MeasureDistance + 测量距离 + + + + The Length Of Curve + 曲线长度 + + + + The Area Of Surface + 曲面面积 + + + + The Volume Of Solid + 实体体积 + + + + Tab 1 + + + + + Location + 位置 + + + + Point 1: + 第一点: + + + + + + + + + 0.0 + + + + + + + + , + + + + + Point 2: + 第二点: + + + + Distance: + 距离: + + + + + + + 0.00 + + + + + + mm + + + + + Tab 2 + + + + + Length + 长度 + + + + The Length is: + 长度为: + + + + + 页 + + + + + Area + 面积 + + + + The Area is: + 面积是: + + + + mm^2 + + + + + Volume + 体积 + + + + The Volume is: + 体积是: + + + + mm^3 + + + + + Close + 关闭 + + + + + + + Object + 对象 + + + + + + + Selected Object(0) + 已选取对象(0) + + + + MirrorFeatureDialog + + + Mirror Feature + 镜像特征 + + + + Body + 镜像对象 + + + + Selected body(0) + 已选择体(0) + + + + Symmetric Plane + 对称平面 + + + + Plane + 平面 + + + + Select plane on geometry + 选取几何平面 + + + + Coordinate + 坐标系 + + + + Random + 任意 + + + + Tab 1 + + + + + Selected Plane(0) + 已选择平面(0) + + + + Tab 2 + + + + + Plane: + 平面: + + + + XOY + + + + + XOZ + + + + + YOZ + + + + + Tab 3 + + + + + Basic Point + 基准点 + + + + Axis + 轴线 + + + + X axis + X轴 + + + + Y axis + Y轴 + + + + Z axis + Z轴 + + + + User define + 自定义 + + + + Save Origin body + 保留原始几何体 + + + + MoveFeatureDialog + + + Move Feature + 移动特征 + + + + Body + 移动对象 + + + + Selected body(0) + 已选择体(0) + + + + Transform + 移动 + + + + Option: + 选项: + + + + Two Points + 两点 + + + + Distance + 距离 + + + + Tab 1 + + + + + Base Point + 基准点 + + + + End Point + 终止点 + + + + Tab 2 + + + + + Length: + 长度: + + + + 10.00 + + + + + Direction + 方向 + + + + X axis + X轴 + + + + Y axis + Y轴 + + + + Z axis + Z轴 + + + + User define + 自定义 + + + + Reverse + 反向 + + + + Save Origin body + 保留原始几何体 + + + + RotateFeatureDialog + + + Rotate Feature + 转动特征 + + + + Body + 转动对象 + + + + Selected body(0) + 已选择体(0) + + + + Basic Point + 基准点 + + + + Axis + 轴线 + + + + Option: + 选项: + + + + Select on geometry + 选取几何边 + + + + Coordinate + 坐标系 + + + + Tab 1 + + + + + Selected edge(0) + 已选择边(0) + + + + Tab 2 + + + + + X axis + X轴 + + + + Y axis + Y轴 + + + + Z axis + Z轴 + + + + User define + 自定义 + + + + Reverse + 反向 + + + + Degree + 角度 + + + + Degree: + 角度: + + + + 30.00 + + + + + deg + + + + + Save Origin body + 保留原始几何体 + + + + SketchPlaneDialog + + + Sketch Plane + 草绘平面 + + + + Plane + 平面 + + + + XOY plane + XOY平面 + + + + YOZ plane + YOZ平面 + + + + XOZ plane + XOZ平面 + + + + Select a plane + 选择一个平面 + + + + Reverse + 反向 + + + + SketchPointWidget + + + Input Sketch Point + 输入草绘点 + + + + Coordinate + 坐标 + + + + X: + + + + + + 0.00 + + + + + + mm + + + + + Y: + + + + + Add + 添加 + + + + SweepDialog + + + Sweep + 扫略 + + + + Section + 横截面 + + + + + Selected edge(0) + 已选择边(0) + + + + Path + 路径 + + + + Generate Solid + 生成实体 + + + + VariableFilletDialog + + + Variable Fillet + 创建可变圆角 + + + + Edge + 倒角边 + + + + Selected edge(0) + 已选择边(0) + + + + + Radius + 半径 + + + + + Radius: + 半径: + + + + + 1.00 + + + + + + mm + + + + + Add Variable Point: + 添加可变点: + + + + Add + 添加 + + + + Table + 可变点列表 + + + + Location + 位置 + + + + Location(u): + 参数化位置(u): + + + + 0.00 + + + + + OK + 确认 + + + + geoPointWidget + + + Form + + + + + X: + + + + + + + 0.00 + + + + + + + mm + + + + + Y: + + + + + Z: + + + + diff --git a/ConfigFiles/translations/GmshModule_zh_CN.qm b/ConfigFiles/translations/GmshModule_zh_CN.qm new file mode 100644 index 0000000..0240706 Binary files /dev/null and b/ConfigFiles/translations/GmshModule_zh_CN.qm differ diff --git a/ConfigFiles/translations/GmshModule_zh_CN.ts b/ConfigFiles/translations/GmshModule_zh_CN.ts new file mode 100644 index 0000000..8f32073 --- /dev/null +++ b/ConfigFiles/translations/GmshModule_zh_CN.ts @@ -0,0 +1,682 @@ + + + + + DialogFluidMesh + + + Fluid Mesh + 流体网格 + + + + Element Type + 网格类型 + + + + Tet + 四面体 + + + + Hex + 六面体 + + + + Order: + 阶次: + + + + first order + 一阶 + + + + second order + 二阶 + + + + Solid + 实体 + + + + Selected Solid(0) + 已选实体(0) + + + + Fluid Field + 流体域 + + + + Start Point: + 起始点: + + + + End Point: + 终点: + + + + Parameter + 参数 + + + + Method: + 方法: + + + + Delaunay + + + + + New Delaunay + + + + + Frontal + + + + + Frontal Delaunay + + + + + Frontal Hex + + + + + MMG3D + + + + + R-tree + + + + + Element Size: + 单元尺寸: + + + + Gmsh::DialogFluidMesh + + + Selected Solid(%1) + 已选实体(%1) + + + + + Warning + 警告 + + + + No object has been selected ! + 没有选中的对象! + + + + There is a problem with fluid region parameters ! + 流体域参数错误! + + + + Gmsh::GmshModule + + + Gmsh Working... + Gmsh工作中… + + + + Gmsh::GmshThread + + + Warning + 警告 + + + + Gmsh is not exist ! + Gmsh不存在! + + + + Gmsh::LocalSettingDialog + + + Selected Solid(%1) + 已选实体(%1) + + + + Value: + 密度值: + + + + + Radius: + 半径: + + + + + + Length: + 长: + + + + Width: + 宽: + + + + Height: + 高: + + + + + + + + VIn: + 内部尺寸: + + + + + + + + VOut: + 外部尺寸: + + + + + + Thinckness: + 厚度: + + + + RadiusIn 1: + 内半径 1: + + + + RadiusOut 1: + 外半径 1: + + + + RadiusIn 2: + 内半径 2: + + + + RadiusOut 2: + 外半径 2: + + + + Gmsh::SolidMeshDialog + + + + + Selected Solid(%1) + 已选实体(%1) + + + + Warning + 警告 + + + + No object has been selected ! + 没有选中的对象! + + + + Gmsh::SurfaceMeshDialog + + + + + Selected Surface(%1) + 已选曲面(%1) + + + + Warning + 警告 + + + + No object has been selected ! + 没有选中的对象! + + + + LocalSettingDialog + + + Local Setting + 局部密度 + + + + Solid + 实体 + + + + Frustum + 截头锥体 + + + + Local + 局部设置 + + + + 3 + + + + + Selected Solid(0) + 已选实体(0) + + + + X Axis + X 轴 + + + + Y Axis + Y 轴 + + + + Z Axis + Z 轴 + + + + Custom + 自定义 + + + + X: + + + + + Y: + + + + + Z: + + + + + 1 + + + + + 2 + + + + + Ok + 确定 + + + + Cancel + 取消 + + + + Type: + 类型: + + + + Box + 立方体 + + + + Ball + 球体 + + + + Cylinder + 圆柱体 + + + + 6 + + + + + 4 + + + + + 5 + + + + + 7 + + + + + Point + + + + + SolidMeshDialog + + + Solid Mesh + 实体网格剖分 + + + + Solid + 实体 + + + + Select All + 全选 + + + + Select Visible + 选择可见项 + + + + Selected Solid(0) + 已选实体(0) + + + + Parameter + 参数 + + + + Method: + 方法: + + + + Delaunay + + + + + New Delaunay + + + + + Frontal + + + + + Frontal Delaunay + + + + + Frontal Hex + + + + + MMG3D + + + + + R-tree + + + + + Element Size Factor: + 尺寸因子: + + + + Min Element Size: + 最小单元尺寸: + + + + Max Element Size: + 最大单元尺寸: + + + + Geometry Clean + 几何清理 + + + + Cohence + 网格连贯 + + + + Local setting + 局部密度 + + + + Element Type + 网格类型 + + + + Tet + 四面体 + + + + Hex + 六面体 + + + + Order: + 阶次: + + + + first order + 一阶 + + + + second order + 二阶 + + + + SurfaceMeshDialog + + + Surfafce Mesh + 曲面网格划分 + + + + Surface + 曲面 + + + + Select All + 全选 + + + + Select Visible + 选择可见项 + + + + Selected Surface(0) + 已选曲面(0) + + + + Element Type + 网格类型 + + + + Triangle + 三角形 + + + + Quad + 四边形 + + + + Order: + 阶次: + + + + first order + 一阶 + + + + second order + 二阶 + + + + Parameter + 参数 + + + + Method: + 方法: + + + + Auto + + + + + Mesh Adapt + + + + + Delaunay + + + + + Frontal + + + + + Delaunay for quad + + + + + Packing for parallelograms + + + + + Element Size Factor: + 尺寸因子: + + + + Min Element Size: + 最小单元尺寸: + + + + Max Element Size: + 最大单元尺寸: + + + + Smoothing Steps: + 光滑迭代次数: + + + + Geometry Clean + 几何清理 + + + + Cohence + 网格连贯 + + + + Local setting + 局部密度 + + + diff --git a/ConfigFiles/translations/IO_zh_CN.qm b/ConfigFiles/translations/IO_zh_CN.qm new file mode 100644 index 0000000..9cc9cdb Binary files /dev/null and b/ConfigFiles/translations/IO_zh_CN.qm differ diff --git a/ConfigFiles/translations/IO_zh_CN.ts b/ConfigFiles/translations/IO_zh_CN.ts new file mode 100644 index 0000000..2e6ee0a --- /dev/null +++ b/ConfigFiles/translations/IO_zh_CN.ts @@ -0,0 +1,47 @@ + + + + + IO::ProjectFileIO + + + Opening Project File: "%1" + 打开工程文件:“%1” + + + + Saving Project File: "%1" + 保存工程文件:“%1” + + + + QObject + + + Open File + 打开文件 + + + + Configuration Files (*.dat *.txt) + + + + + + Warning + 警告 + + + + + The format of the file that you import is wrong! + 导入的模板格式有误! + + + + Gmsh Working... + Gmsh工作中… + + + diff --git a/ConfigFiles/translations/MainWidgets_zh_CN.qm b/ConfigFiles/translations/MainWidgets_zh_CN.qm new file mode 100644 index 0000000..af85320 Binary files /dev/null and b/ConfigFiles/translations/MainWidgets_zh_CN.qm differ diff --git a/ConfigFiles/translations/MainWidgets_zh_CN.ts b/ConfigFiles/translations/MainWidgets_zh_CN.ts new file mode 100644 index 0000000..81e9847 --- /dev/null +++ b/ConfigFiles/translations/MainWidgets_zh_CN.ts @@ -0,0 +1,1370 @@ + + + + + ControlPanel + + + Control Panel + 控制面板 + + + + Geometry + 几何 + + + + Mesh + 网格 + + + + Analysis + 计算分析 + + + + + Post + 后处理 + + + + Plot + + + + + Property + 属性 + + + + Settings + 设置 + + + + Para Widget + 参数 + 参数 + + + + CreateGeoComponentDialog + + + Dialog + 创建几何组件 + + + + Set Name: + 组件名称: + + + + Type: + 类型: + + + + CreateSetDialog + + + Create Set + 创建组件 + + + + Set Name : + 组件名称 : + + + + Set Type : + 组件类型 : + + + + Element + 单元 + + + + Find Conplanar Points or Cells + 寻找共面的点或者单元 + + + + Node + 节点 + + + + Find Condition + 寻找条件 + + + + Id : + + + + + minAngle : + 最小角度 : + + + + DialogCreateMaterial + + + Create Material + 创建材料 + + + + Name: + 名称: + + + + Type: + 类型: + + + + DialogCreateModel + + + Create Case + 创建算例 + + + + Name: + 名称: + + + + Type: + 类型: + + + + DialogRename + + + Rename + 重命名 + + + + New name: + 新名称: + + + + DialogSelectComponents + + + Dialog + 创建几何组件 + + + + OK + 确认 + + + + Cancel + 取消 + + + + DialogVTKTransform + + + Dialog + 创建几何组件 + + + + Selected Component + 选择组件 + + + + Rotate + 旋转 + + + + Rotate Angle : + 旋转角度: + + + + X Axis + X轴 + + + + Y Axis + Y轴 + + + + Z Axis + Z轴 + + + + Custom Axis + 自定义轴 + + + + Rotate Axis : + 旋转轴: + + + + Custom Rotate Axis + 自定义旋转轴 + + + + Custom X Axis : + 自定义X轴: + + + + Custom Y Axis : + 自定义Y轴: + + + + Custom Z Axis : + 自定义Z轴: + + + + Move Location + 移动 + + + + Direction Of X Axis : + 沿X轴移动距离: + + + + Direction Of Y Axis : + 沿Y轴移动距离: + + + + Direction Of Z Axis : + 沿Z轴移动距离: + + + + Scale + 缩放 + + + + Scale Of X Axis : + X轴缩放比例: + + + + Scale Of Y Axis : + Y轴缩放比例: + + + + Scale Of Z Axis : + Z轴缩放比例: + + + + FilterMeshDialog + + + FilterMesh + 网格过滤 + + + + Remove Dimesion + 维度移除 + + + + 0 D + 零维 + + + + 1 D + 一维 + + + + 2 D + 二维 + + + + 3 D + 三维 + + + + Mesh + 网格 + + + + GeoMeshRotateDialog + + + Rotate Feature + + + + + Basic Point + + + + + Degree + + + + + Degree: + + + + + 30.00 + + + + + deg + + + + + Axis + + + + + User define + + + + + X axis + + + + + Y axis + + + + + Z axis + + + + + Face + + + + + Selected Face(0) + + + + + MainWidget::CreateGeoComponentDialog + + + Ok + 确定 + + + + Cancel + 取消 + + + + Point + + + + + Line + 线 + + + + Surface + + + + + Body + + + + + Warning + 警告 + + + + No Point or Line Surface Body selected ! + 没有点、线、面、体被选择! + + + + MainWidget::CreateMaterialDialog + + + + + Warning + 警告 + + + + Material name can not be empty! + 材料名称不能为空! + + + + Material "%1" has already existed ! + 材料“%1”已经存在! + + + + Material type can not be empty! + 材料类型不能为空! + + + + MainWidget::CreatePhysicsModel + + + OK + 确认 + + + + Cancel + 取消 + + + + Name can not be empty + 名称不能为空 + + + + Project "%1" has already existed ! + 案例“%1”已经存在! + + + + Name contains too many characters ! + 名称包含过多字符! + + + + Name can not contains fellowing char: \/:*?"<>|! + 名称不能包含下列字符:\/:*?"<>|! + + + + + + + Warning + 警告 + + + + MainWidget::CreateSetDialog + + + OK + 确认 + + + + Cancel + 取消 + + + + PointId : + 节点Id : + + + + CellId : + 单元Id : + + + + + + + Warning + 警告 + + + + Open window first ! + 前处理窗口未开启! + + + + + + No Node or Element selected ! + 当前没有选中的节点或单元! + + + + MainWidget::DialogSelectComponents + + + Select Components + 选择组件 + + + + MainWidget::DialogVTKTransform + + + Clicked Button Selected Components + 点击按钮选择组件 + + + + Mesh Modeling + 网格建模 + + + + delete this item + 删除此项 + + + + MainWidget::GeometryRenameDialog + + + Warning + 警告 + + + + The Same Name! + 相同的名称! + + + + MainWidget::GeometryTreeWidget + + + + Geometry + 几何 + + + + + Datum + 基准 + + + + + GeoComponent + 几何组件 + + + + Edit + 编辑 + + + + + + Rename + 重命名 + + + + + Delete + 删除 + + + + Import Geometry + 导入几何 + + + + Hide All + 隐藏全部 + + + + Show All + 显示全部 + + + + Remove All + 移除全部 + + + + Remove Visible + 移除可见 + + + + Remove + 移除 + + + + MainWidget::MeshCheckingDialog + + + + All Count + 总数 + + + + MainWidget::MeshRenameDialog + + + Warning + 警告 + + + + The Same Name! + 相同的名称! + + + + MainWidget::MeshSetMergeDialog + + + OK + 确认 + + + + Cancel + 取消 + + + + Warning + 警告 + + + + No merge object selected ! + 没有合并对象! + + + + MainWidget::MeshWidget + + + + Mesh + 网格 + + + + + Set + 组件 + + + + Edit + 编辑 + + + + Rename + 重命名 + + + + + Remove + 移除 + + + + Import + 导入网格 + + + + Hide All + 隐藏全部 + + + + Show All + 显示全部 + + + + Remove All + 移除全部 + + + + Remove Visible + 移除可见 + + + + Merge/Cut + 合并/剪裁 + + + + MainWidget::PhysicsWidget + + + + + Materials + 材料 + + + + Load From Material Lib + 从材料库导入 + + + + + + Case + 算例 + + + + Create Material + 创建材料 + + + + Remove From Material Lib + 从材料库移除 + + + + Delete Material + 删除 + + + + Add to Material Lib + 添加至材料库 + + + + Create Case + 创建算例 + + + + Delete Case + 删除 + + + + Solve Case + 求解 + + + + Rename Case + 重命名 + + + + Import Templete + 导入模板 + + + + Open Dir + 打开目录 + + + + Import INP File + 导入INP文件 + + + + Export INP File + 导出INP文件 + + + + + + + Warning + 警告 + + + + Confirm to delete? + 确认删除? + + + + Template import successfully! + 模板导入成功! + + + + Name can not contains fellowing char: \/:*?"<>|! + 名称不能包含下列字符:\/:*?"<>|! + + + + Name contains too many characters ! + 名称包含过多字符! + + + + Case "%1" has already exist! + 案例“%1”已经存在! + + + + MainWidget::PreWindow + + + Pre-Window + 前处理窗口 + + + + MainWidget::PropertyTable + + + + + Name + 名称 + + + + + + Value + + + + + Basic Info + 基础信息 + + + + Parameters + 参数 + + + + MainWidget::SavePictureDialog + + + Save Picture + 保存图片 + + + + Warning + 警告 + + + + File name is empty ! + 文件名称不能为空! + + + + MainWidget::SketchViewProvider + + + Location: %1, %2 + 鼠标位置: %1, %2 + + + + MeshCheckingDialog + + + Mesh Quality + 网格质量 + + + + Method: + 方法: + + + + None + + + + + Area + + + + + Aspect Beta + + + + + Aspect Frobenius + + + + + Aspect Gamma + + + + + Aspect Ratio + + + + + Collapse Ratio + + + + + Condition + + + + + Diagonal + + + + + Dimension + + + + + Distortion + + + + + Edge Ratio + + + + + Jacobin + + + + + Max Angle + + + + + Max Aspect Frobenius + + + + + Max Edge Ratio + + + + + Mad Aspect Frobenius + + + + + Min angle + + + + + Normal + + + + + Oddy + + + + + Radius Ratio + + + + + Relative Size Squared + + + + + Scalaed Jacobin + + + + + Shape + + + + + Shape and size + + + + + Shear + + + + + Shear and size + + + + + Skew + + + + + Strech + + + + + Taper + + + + + Volume + + + + + Warpage + + + + + waitting + 等待 + + + + Checking... + 正在检查…… + + + + Basic + 基本信息 + + + + Input + 输入 + + + + + Type + 单元类型 + + + + + Count + 数目 + + + + Checked + 已检查 + + + + Show out of range elements while close + 关闭时显示超出范围单元 + + + + Min + 最小值 + + + + Max: + 最大值: + + + + Check + 检查 + + + + Close + 关闭 + + + + MeshSetMergeDialog + + + Merge + 合并 + + + + Name: + 名称: + + + + Type: + 类型: + + + + Node + 节点 + + + + Element + 单元 + + + + Available: + 可选择: + + + + + >> + + + + + + << + + + + + Merge: + 合并: + + + + Cut: + 剪裁: + + + + MesherDialog + + + MesherSelectDialog + 选择网格剖分器 + + + + Mesher + 网格剖分器 + + + + Mesher: + 网格剖分器: + + + + ParameterGroupLabel + + + Form + + + + + PropTable + + + Form + + + + + QObject + + + + Warning + 警告 + + + + The material that you want to load from lib already exists! + 已存在同名的材料! + + + + Material create failed! + 材料创建失败! + + + + ReportProcessingDialog + + + Form + + + + + Generateing Mesh,please wait! + 正在进行网格划分,请等待! + + + + PushButton + 按钮 + + + + Generateing Mesh + 网格划分 + + + + Cancel + 取消 + + + + SavePicDialog + + + Save Picture + 保存图片 + + + + Width: + 宽度: + + + + High: + 高度: + + + + File: + 文件: + + + + Browse + 浏览 + + + + projectSolveDialog + + + Solve Project + 求解项目 + + + + Case: + 算例: + + + + Solve + 求解 + + + + Cancel + 取消 + + + + Solver: + 求解器: + + + diff --git a/ConfigFiles/translations/MainWindow_zh_CN.qm b/ConfigFiles/translations/MainWindow_zh_CN.qm new file mode 100644 index 0000000..58a84fc Binary files /dev/null and b/ConfigFiles/translations/MainWindow_zh_CN.qm differ diff --git a/ConfigFiles/translations/MainWindow_zh_CN.ts b/ConfigFiles/translations/MainWindow_zh_CN.ts new file mode 100644 index 0000000..590027a --- /dev/null +++ b/ConfigFiles/translations/MainWindow_zh_CN.ts @@ -0,0 +1,1596 @@ + + + + + AboutDialog + + + About + 关于 + + + + Copyright Reserved + + + + + Website: + 网址: + + + + www.qianfankeji.cn + + + + + EMail: + 邮箱: + + + + TextLabel + + + + + OK + 确定 + + + + GUI::MainWindow + + + Save + 保存 + + + + Do you want to save before exit ? + 退出前是否保存? + + + + Yes + + + + + No + + + + + Cancel + 取消 + + + + + + + + + + + + Warning + 警告 + + + + + Do you want to save current data ? + 是否保存当前数据? + + + + + Project file(*.diso);;Project file(*.xml) + 工程文件(*.diso);;工程文件(*.xml) + + + + + DISO file(*.diso);;XML file(*.xml) + + + + + Open a project + 打开工程 + + + + Save project + 保存工程 + + + + Geometry will be lost! still continue? + 几何信息将会丢失,是否继续? + + + + + The MeshPlugin is not installed ! + 没有安装网格插件! + + + + Import Mesh + 导入网格 + + + + Export Geometry + 导出几何 + + + + No one has any grid! + 没有网格! + + + + Export Mesh + 导出网格 + + + + Import Geometry + 导入几何 + + + + Please make sure " %1 " file exist! + 文件“%1”不存在! + + + + The program quit with an exception before, do you want to reload the contents? + 程序退出前出现异常,是否要重新加载内容? + + + + + Recent + 最近文件 + + + + %1 not exist ! + %1 不存在! + + + + File "%1" is not exist ! + 文件“%1”不存在! + + + + Do you need to load? + 是否需要重新加载? + + + + Info + 提示 + + + + Restart to load the style! + 重启以加载新风格! + + + + Restart later + 稍后重启 + + + + Restart now + 马上重启 + + + + 3DRender + 三维渲染 + + + + Save Script + 保存脚本 + + + + Execute Script + 执行脚本 + + + + %1 execute failed ! + %1执行失败! + + + + Canvas %1mm * %2mm + 画布 %1mm * %2mm + + + + GUI::SignalHandler + + + + + + + + + + + + + + + + + + + + + + + + Warning + 警告 + + + + %1 is Solving , Please wait... + %1正在求解,请等待… + + + + Solving-%1 + 正在求解-%1 + + + + Mesh Generated "%1" + 网格已生成“%1” + + + + + + + + + + + + + + + + + + + + + + + + Open PreWindow First! + 请先打开前处理窗口! + + + + open file + 打开文件 + + + + dat(*.dat);;Allfile(*.*) + + + + + Select File. + 选择文件 + + + + GUI::SubWindowManager + + + No GraphWindow opened! + 没有打开绘图窗口! + + + + 3D Render + 三维渲染 + + + + MainWindow + + + + Solve + 求解 + + + + + Language + 语言 + + + + + + + New + 新建 + + + + + Ctrl+N + + + + + + + + Open + 打开 + + + + + Ctrl+O + + + + + + + + Close + 关闭 + + + + + Save + 保存 + + + + FastCAE + + + + + &File + &文件 + + + + &View + &视图 + + + + &Help + &帮助 + + + + &Solve + &求解 + + + + &Settings + &设置 + + + Post + 后处理 + + + + FileToolBar + 文件工具栏 + + + + SolveToolBar + 求解工具栏 + + + + ViewToolBar + 视图工具栏 + + + + SelectToolBar + 选择工具栏 + + + + MesherToolBar + 网格工具栏 + + + + + Ctrl+S + + + + + + SaveAs + 另存为 + + + + &Mesh + &网格 + + + + + View + 视图 + + + + + Select + 选择 + + + + Windows + 窗口 + + + + &Geometry + &几何 + + + + Feature Modeling + 特征建模 + + + + Feature Operation + 特征操作 + + + + Sketch + 草图 + + + + DisplayToolBar + + + + + WBCLFZ_CAE + + + + + SetToolBar + + + + + toolBar_4 + 撤销重做 + + + + + + + + + + toolBar + + + + + + toolBar_2 + + + + + + toolBar_3 + + + + + + Style + 风格 + + + + Geometry Edit + 几何清理 + + + + Plugins + 插件 + + + PointCloud + 点云 + + + + PCLFilter + 点云滤波 + + + + reSurfaceMesh + 点云重构 + + + + + Ctrl+Q + + + + + + + + English + 英文 + + + + + Import Mesh + 导入网格 + + + + + Import Geometry + 导入几何 + + + + + Ctrl+G + + + + + + WorkingDir + 工作目录 + + + + + Solver Manager + 求解器管理 + + + + + ViewXPlus + X正向 + + + + + ViewXMinus + X负向 + + + + + ViewYPlus + Y正向 + + + + + ViewYMinus + Y负向 + + + + + ViewZPlus + Z正向 + + + + + ViewZMinus + Z负向 + + + + + FitView + 适应窗口 + + + + + selectOff + 清除选择 + + + + + selectMeshNode + 选择网格节点 + + + + + selectMeshCell + 选择网格单元 + + + + + Solve Options + 求解选项 + + + + + Graph Options + 绘图选项 + + + + + SurfaceMesh + 曲面网格剖分 + + + + + SolidMesh + 实体网格剖分 + + + + + Export Mesh + 导出网格 + + + + Ctrl+Shift+M + + + + + + User Manual + 用户手册 + + + + + About + 关于 + + + + + DisplayNode + 显示网格节点 + + + + + DisplayWireFrame + 显示线框 + + + + + DisplaySurface + 显示网格面 + + + + + Create Set + 创建组件&&寻找共面点或单元 + + + + + 2D Plot + 二维绘图 + + + + + 3D Graph + 三维渲染 + + + + + Save Script + 保存脚本 + + + + + Execute Script + 执行脚本 + + + + + Ctrl+R + + + + + + GenMesh + 生成网格 + + + + + Save Picture + 保存图片 + + + + + BoxMeshNode + 框选网格节点 + + + + + BoxMeshCell + 框选网格单元 + + + + + Start Page + 开始页 + + + + + Pre Window + 前处理窗口 + + + + + Checking + 网格质量检查 + + + + + CreateBox + 创建立方体 + + + + + CreateCylinder + 创建圆柱体 + + + + + CreaterSphere + 创建球体 + + + + + Chamfer + 倒角 + + + + + Fillet + 倒圆角 + + + + + BoolCut + 求差 + + + + + BoolFause + 求和 + + + + + BoolCommon + 求交 + + + + + undo + 撤销 + + + + + Ctrl+Z + + + + + + redo + 重做 + + + + + Ctrl+Y + + + + + + ExportGeometry + 导出几何 + + + + Ctrl+Shift+G + + + + + + CreaterCone + 创建圆台 + + + + + MirrorFeature + 镜像特征 + + + + + Variable Fillet + 可变圆角 + + + + + Extrude + 拉伸 + + + + + Create Point + 创建点 + + + + + Create Line + 创建直线 + + + + + Create_Surface + 创建平面 + + + + + Move + 移动特征 + + + + + Rotate + 转动特征 + + + + + Revol + 旋转 + + + + + loft + 放样 + + + + + Create Datum Plane + 创建基准面 + + + + + DrawLine + 直线 + + + + + DrawRectangle + 矩形 + + + + + DrawCircle + 圆形 + + + + + Create Sketch + 草绘 + + + + + DrawArc + 圆弧 + + + + + DrawPolyline + 多段线 + + + + + + + MakeMatrix + 阵列 + + + + + Sweep + 扫略 + + + + + DrawSpline + 样条 + + + + + DisplayPoint + 显示点 + + + + + DisplayCurve + 显示曲线 + + + + + DisplayFace + 显示面 + + + + + SelectPoint + 选择点 + + + + + SelectCurve + 选择曲线 + + + + + SelectFace + 选择面 + + + + + SelectGeometryBody + 选择几何体 + + + + + + + Plugin Manager + 插件管理 + + + + + User Guidance + 用户引导 + + + + + Measure Distance + 测量距离 + + + + + Measure + 测量 + + + + + Split + 分割 + + + + + CreateGeoComponent + 创建几何组件 + + + + + FluidMesh + 流体网格剖分 + + + + + FilterMesh + 网格过滤 + + + + + FillHole + 填补孔洞 + + + + + RemoveSurface + 移除曲面 + + + + + FillGap + 曲面修复 + + + + + Mesh Modeling + 网格建模 + + + + + GeoMeshRotate + + + + + + Normal + 正常 + + + + + Ribbon + + + + + + OpenPostFile + 打开后处理文件 + + + + + DisplayPoints + 点显示 + + + + + DisplayWireframe + 线显示 + + + + + DisplaySurfaceWithoutEdge + 不带边界的面显示 + + + + + DisplaySurfaceWithEdge + 带边界的面显示 + + + + + CreateVector + 矢量 + + + + + CreateClip + 切割 + + + + + CreateSlice + 切片 + + + + + CreateStreamLine + 流线 + + + + + CreateISOCurve + 等值线 + + + + + CreateISOSurface + 等值面 + + + + + CreateCalculator + 计算器 + + + + + CreateReflection + 对称 + + + + + SaveImage + 保存图片 + + + + + + + SaveVideo + 保存动画 + + + + LoadFile + + + + + Load PointCloud + 加载点云数据 + + + + &PointCloud + 点云 + + + + Save PointCloud + 保存点云数据 + + + + Filter + + + + + StatisticalRemove + + + + + StatisticalRemoveFilter + 统计滤波 + + + + DBRemoveFilter + 密度滤波 + + + + GuassFilter + 高斯滤波 + + + + AverageFilter + 平均滤波 + + + + GPMesh + 贪婪三角网 + + + + + Ctrl+Shift+S + + + + + Ctrl+M + + + + + + F5 + + + + + + + + Chinese + 中文 + + + + Ctrl+I + + + + + Ctrl+E + + + + + QObject + + + + + File + 文件 + + + + + Home + 主页 + + + + Case + + + + + Import Mesh + 导入网格 + + + + Import Geometry + 导入几何 + + + + Script + + + + + View + 视图 + + + + Save Picture + 保存图片 + + + + Plugin Manager + 插件管理 + + + + Other + + + + + + Geometry + 几何 + + + + Geometry Sketch + + + + + Create Solid Geometry + + + + + Create Plane Geometry + + + + + Create Datum Plane + 创建基准面 + + + + Calculate + + + + + Operation + + + + + Display + + + + + Select + 选择 + + + + Modify + + + + + Chamfer + 倒角 + + + + Measure and Create + + + + + Edit + + + + + + Mesh + 网格 + + + + Mesh Subdivision + + + + + Mesh Operation + + + + + Mesh Selection + + + + + Mesh Display + + + + + Mesh Creation + + + + + + Solve + 求解 + + + + Solver Manager + 求解器管理 + + + + + Windows + 窗口 + + + + Start Page + 开始页 + + + + Adapt Page + + + + + Drawing Option + + + + + 3DRender + 三维渲染 + + + + + Help + 帮助 + + + + User Guide + + + + + Sketch Tool + + + + + + Sketch + 草图 + + + + Sketch Drawing + + + + + Sketch Edit + + + + + Language + 语言 + + + + Style + 风格 + + + + 3D Render + 三维渲染 + + + + Warning + 警告 + + + + Create failed ! + 创建失败! + + + + Customization + + + + + StartPage + + Start Page + 开始页 + + + diff --git a/ConfigFiles/translations/Material_zh_CN.qm b/ConfigFiles/translations/Material_zh_CN.qm new file mode 100644 index 0000000..66fd6b3 Binary files /dev/null and b/ConfigFiles/translations/Material_zh_CN.qm differ diff --git a/ConfigFiles/translations/Material_zh_CN.ts b/ConfigFiles/translations/Material_zh_CN.ts new file mode 100644 index 0000000..153ad93 --- /dev/null +++ b/ConfigFiles/translations/Material_zh_CN.ts @@ -0,0 +1,88 @@ + + + + + LoadMaterialDialog + + + Load Material + 导入材料 + + + + Available: + 可选: + + + + >> + + + + + << + + + + + Selected: + 已选: + + + + Material::RemoveMaterialDialog + + + + Warning + 警告 + + + + No one has been Selected ! + 没有对象被选中! + + + + %1 object(s) will be removed, continue ? + %1个对象将被移除,继续? + + + + QObject + + + Warning + 警告 + + + + Material has already exist, replace? + 材料已经存在,是否替换? + + + + RemoveMaterialDialog + + + + Remove + 移除 + + + + Select All + 全选 + + + + Clear Select + 全不选 + + + + Cancel + 取消 + + + diff --git a/ConfigFiles/translations/ModuleBase_zh_CN.qm b/ConfigFiles/translations/ModuleBase_zh_CN.qm new file mode 100644 index 0000000..65d8c4d Binary files /dev/null and b/ConfigFiles/translations/ModuleBase_zh_CN.qm differ diff --git a/ConfigFiles/translations/ModuleBase_zh_CN.ts b/ConfigFiles/translations/ModuleBase_zh_CN.ts new file mode 100644 index 0000000..69c3541 --- /dev/null +++ b/ConfigFiles/translations/ModuleBase_zh_CN.ts @@ -0,0 +1,414 @@ + + + + + ComponentDialogBase + + + Dialog + 选择 + + + + Available: + 可选: + + + + >> + 导入 + >> + + + + << + 导出 + << + + + + Selected: + 已选: + + + + Dialog + + + Dialog + 选择 + + + + Normal + 随机分布 + 随机分布 + + + + Linearity + 线性分布 + 线性分布 + + + + Gauss + 高斯分布 + 高斯分布 + + + + Possion + 泊松分布 + 泊松分布 + + + + Exponential + 线性分布 + 线性分布 + + + + Random Para + 分布参数 + 分布参数 + + + + + Value + 值类型 + 值类型 + + + + Single + 单值 + 单值 + + + + Para1 + 参数1 + 参数1 + + + + Para2 + 参数2 + 参数2 + + + + Para Set + 范围设置 + 范围设置 + + + + Para From: + 起始值 + 起始值: + + + + Para To: + 终止值 + 终止值: + + + + Para Number: + 随机数个数 + 随机数个数: + + + + Apply + 应用 + 应用 + + + + Ok + 确定 + 确定 + + + + Cancel + 取消 + + + + Graph3DWindow + + + Graph3D + 三维绘图 + + + + MessageWindow + + + Console + 控制台 + + + + ModuleBase::ComponentSelectDialogBase + + + OK + 确定 + 确定 + + + + Cancel + 取消 + 取消 + + + + Warning + 警告 + + + + ModuleBase::DialogBase + + + OK + 确定 + + + + Apply + 应用 + + + + Cancel + 取消 + + + + Warning + 警告 + + + + Illegal inputs exists ! + 存在非法输入! + + + + Minimize + 最小化 + + + + Maximize + 最大化 + + + + Restore + 重新存储 + + + + Close + 关闭 + + + + ModuleBase::DockWidgetBase + + + %1 + + + + + ModuleBase::MessageWindowBase + + + [Normal]: + [正常]: + + + + [Warning]: + [警告]: + + + + [Error]: + [错误]: + + + + [Python]: + + + + + Background Color + 背景颜色 + + + + Normal + 正常 + + + + Show Normal + 显示正常 + + + + Hide Normal + 隐藏正常 + + + + Warning + 警告 + + + + Show Warning + 显示警告 + + + + Hide Warning + 隐藏警告 + + + + Error + 错误 + + + + Show Error + 显示错误 + + + + Hide Error + 隐藏错误 + + + + Header + 头标记 + + + + Show Header + 显示头标记 + + + + Hide Header + 隐藏头标记 + + + + Font + 字体 + + + + Larger Font + 放大字体 + + + + Smaller Font + 缩小字体 + + + + Save As... + 另存为... + + + + Clear + 清空 + + + + Save Message Info + 保存信息 + + + + *.txt + + + + + ModuleBase::PropPickerInteractionStyle + + + Node ID + 节点ID + + + + Coordinate + 坐标 + + + + ProcessBar + + + ProcessBar + 求解进程 + + + + name + 标签 + + + + ProcessWindow + + + Process + 进程 + + + + XRandomWidget + + + Mean + 期望 + 期望 + + + + Stdc + 标准差 + 标准差 + + + + + Lambda + 发生率 + + + diff --git a/ConfigFiles/translations/PluginManager_zh_CN.qm b/ConfigFiles/translations/PluginManager_zh_CN.qm new file mode 100644 index 0000000..6128626 Binary files /dev/null and b/ConfigFiles/translations/PluginManager_zh_CN.qm differ diff --git a/ConfigFiles/translations/PluginManager_zh_CN.ts b/ConfigFiles/translations/PluginManager_zh_CN.ts new file mode 100644 index 0000000..54eaecd --- /dev/null +++ b/ConfigFiles/translations/PluginManager_zh_CN.ts @@ -0,0 +1,51 @@ + + + + + PluginManageDialog + + + Plugin Manager + 插件管理 + + + + Available: + 可用插件: + + + + >> + + + + + << + + + + + Installed: + 已安装插件: + + + + Plugins::PluginManageDialog + + + load failed! + 加载失败! + + + + + Warning + 警告 + + + + uninstall failed! + 卸载失败! + + + diff --git a/ConfigFiles/translations/PostInterface_zh_CN.qm b/ConfigFiles/translations/PostInterface_zh_CN.qm new file mode 100644 index 0000000..b0655fb Binary files /dev/null and b/ConfigFiles/translations/PostInterface_zh_CN.qm differ diff --git a/ConfigFiles/translations/PostInterface_zh_CN.ts b/ConfigFiles/translations/PostInterface_zh_CN.ts new file mode 100644 index 0000000..f34af94 --- /dev/null +++ b/ConfigFiles/translations/PostInterface_zh_CN.ts @@ -0,0 +1,1282 @@ + + + + + CreateCalculateDialog + + + Calculator + 计算器 + + + + asin + + + + + kHat + + + + + floor + + + + + iHat + + + + + exp + + + + + / + + + + + norm + + + + + - + + + + + x^y + + + + + cos + + + + + back + 回退 + + + + min + + + + + log10 + + + + + atan + + + + + acos + + + + + tanh + + + + + sinh + + + + + Name + 结果名 + + + + * + + + + + max + + + + + ln + + + + + tan + + + + + ) + + + + + clear + 清空 + + + + sqrt + + + + + abs + + + + + Vectors + 矢量 + + + + sin + + + + + + + + + + + v1.v2 + + + + + ( + + + + + ceil + + + + + jHat + + + + + cross + + + + + mag + + + + + cosh + + + + + dot + + + + + sign + + + + + Scalars + 标量 + + + + Type + 类型 + + + + Point Data + 点数据 + + + + Cell Data + 单元数据 + + + + CreateClipDialog + + + Dialog + + + + + Name + 名称 + + + + 原点 + + + + + + x + + + + + + y + + + + + + z + + + + + Out + 向外 + + + + 法线 + + + + + CreateISODialog + + + Dialog + + + + + Variable + 变量 + + + + Add + 添加 + + + + Name + 名称 + + + + RemoveAll + 清空 + + + + Remove + 移除 + + + + CreateReflectionDialog + + + Reflection + 对称 + + + + Name + 名称 + + + + Reflection Plane + 对称平面 + + + + Center + 中心值 + + + + XMin + + + + + YMin + + + + + ZMin + + + + + XMax + + + + + X + + + + + YMax + + + + + ZMax + + + + + Y + + + + + Z + + + + + CreateStreamLineDialog + + + StreamLine + 流线 + + + + Seed Number + 种子点数 + + + + Variable + 变量 + + + + Length + 最大长度 + + + + Name + 名称 + + + + Type + 类型 + + + + Direction + 方向 + + + + Forward + 向前 + + + + Backward + 向后 + + + + Both + 向前和向后 + + + + Line + 线 + + + + Line With Arrow + 带箭头的线 + + + + Integration + 积分 + + + + MaxinumStep + 最大步长 + + + + MininumStep + 最小步长 + + + + InitalStep + 初始步长 + + + + Step Number + 步长数 + + + + Sample Line + 样线 + + + + EndPoint + 终点 + + + + StartPoint + 起点 + + + + CreateVectorDialog + + + Name + 名称 + + + + Type + 类型 + + + + Arrow + 箭头 + + + + + + Vector + 矢量 + + + + Scale Mode + 缩放模式 + + + + Scalar + 标量 + + + + Vector Component + 矢量分量 + + + + Off + 关闭 + + + + Maximum + 最大样点数 + + + + Scale Factor + 缩放尺寸 + + + + FileDirectoryDialog + + + Select Post Files + 选择后处理文件 + + + + File path + 文件路径 + + + + All Files (*.*) + + + + + File type + 文件类型 + + + + cancel + 取消 + + + + ok + 确定 + + + + File name + 文件名 + + + + + + + + DeskTop + 桌面 + + + + + + + My Documents + 我的文档 + + + + GraphWidget + + + Form + + + + + LightSettingDialog + + + Light Setting + 灯光设置 + + + + Add + 添加 + + + + Delete + 删除 + + + + Color + 颜色 + + + + Position Coordinates + 位置坐标 + + + + + X + + + + + + Y + + + + + + Z + + + + + FocalPoint Coordinates + 焦点坐标 + + + + OK + 确定 + + + + Light_%1 + 灯光_%1 + + + + Post::AnimationToolBar + + + Total: %1 + 共:%1 + + + + + + + + + + run + 运行 + + + + + stop + 停止 + + + + + first + 开始帧 + + + + + previous + 上一帧 + + + + + next + 下一帧 + + + + + last + 结束帧 + + + + + Step: + 帧数: + + + + + Total: 0 + 共:0 + + + + Post::CreateCalculateDialog + + + CalculateResult + + + + + Warning! + 警告! + + + + No selected data! + 未选择数据! + + + + Post::CreateClipDialog + + + Clip + + + + + + CreateClip + 切割 + + + + Slice + + + + + + CreateSlice + 切片 + + + + + Warning! + 警告! + + + + No selected data! + 未选择数据! + + + + Input is wrong! + 输入错误! + + + + Post::CreateISODialog + + + ISOCurve + + + + + CreateISOCurve + 等值线 + + + + CreateISOSurface + 等值面 + + + + ISOSurface + + + + + Warning! + 警告! + + + + No selected data! + 未选择数据! + + + + Range:[%1,%2] + 范围:[%1,%2] + + + + Post::CreateReflectionDialog + + + Reflection + + + + + Warning! + 警告! + + + + No selected data! + 未选择数据! + + + + Post::CreateStreamLineDialog + + + StreamLine + + + + + Warning! + 警告! + + + + No selected data! + 未选择数据! + + + + Post::CreateVectorDialog + + + Vector + + + + + Warning! + 警告! + + + + No selected data! + 未选择数据! + + + + Vector_%1 + 矢量_%1 + + + + Post::PostInfoWidget + + + + Property + 属性 + + + + + Name + 名称 + + + + + Type + 类型 + + + + + Range + 范围 + + + + Imp + + + + + Alg + + + + + ISOSurface + 等值面 + + + + ISOCurve + 等值线 + + + + Vector + 矢量 + + + + Slice + 切片 + + + + Clip + 切割 + + + + StreamLine + 流线 + + + + Simplify + 简化 + + + + Calculator + 计算器 + + + + Reflection + 对称 + + + + Steady + 定常 + + + + UnSteady + 非定常 + + + + + PointProperty + 点属性 + + + + + CellProperty + 单元属性 + + + + Post::PostTreeWidget + + + + Name + 名称 + + + + + Transparency + 透明度 + + + + + Color + 颜色 + + + + + Variable + 着色变量 + + + + Window_%1 + 窗口_%1 + + + + Show + 显示 + + + + Hide + 隐藏 + + + + Render to Window + 渲染到窗口 + + + + Property Setting + 属性设置 + + + + Remove + 移除 + + + + SolidColor + 实体颜色 + + + + Post::RenderSettingDialog + + + + Point + + + + + + Cell + 单元 + + + + %1Scalar + %1标量 + + + + %1Vector-X + %1矢量-X + + + + %1Vector-Y + %1矢量-Y + + + + %1Vector-Z + %1矢量-Z + + + + %1Tensor + %1张量 + + + + Scalar + 标量 + + + + Vector + 矢量 + + + + Tensor + 张量 + + + + Post::SaveAnimationDialog + + + Select File + 选择文件 + + + + PostInfoWidget + + + Form + + + + + Property + 属性 + + + + FileName + 文件名 + + + + Data Statistics + 数据统计 + + + + Type + 类型 + + + + PointNum + 点数量 + + + + CellNum + 单元数量 + + + + Data Arrays + 变量数据 + + + + RenderSettingDialog + + + RenderSetting + 渲染设置 + + + + Transparency + 透明度 + + + + % + + + + + color + 着色设置 + + + + Color + 颜色 + + + + variable coloring + 变量着色 + + + + visible + 显示颜色条 + + + + Type + 类型 + + + + RenderTitleDialog + + + Render Title + 窗口标题 + + + + Title + 标题 + + + + Color + 颜色 + + + + Text + 文本 + + + + Visible + 显示 + + + + Movable + 可移动 + + + + Position + 位置 + + + + X + + + + + Y + + + + + Width + + + + + Height + + + + + SaveAnimationDialog + + + SaveAnimation + 保存动画 + + + + Rate(fps) + 帧率(fps) + + + + File Path + 文件路径 + + + + ... + + + + + SetBackgroundColorDialog + + + Background Color + 背景颜色 + + + + Top Color + 顶层颜色 + + + + Bottom Color + 底层颜色 + + + diff --git a/ConfigFiles/translations/PostWidgets_zh_CN.qm b/ConfigFiles/translations/PostWidgets_zh_CN.qm new file mode 100644 index 0000000..fe2a4fc Binary files /dev/null and b/ConfigFiles/translations/PostWidgets_zh_CN.qm differ diff --git a/ConfigFiles/translations/PostWidgets_zh_CN.ts b/ConfigFiles/translations/PostWidgets_zh_CN.ts new file mode 100644 index 0000000..26afd6b --- /dev/null +++ b/ConfigFiles/translations/PostWidgets_zh_CN.ts @@ -0,0 +1,49 @@ + + + + + Post2DInterface + + + 2D Plot + 二维绘图 + + + + Post2DWidget + + + Post2DWidget + 二维绘图 + + + + Post3DInterface + + + 3D Graph + 三维渲染 + + + + Post3DWidget + + + Form + 三维渲染 + + + + RealTimeWindow + + + Real Time Curves + 实时曲线 + + + + Tab 1 + + + + diff --git a/ConfigFiles/translations/ProjectTree_zh_CN.qm b/ConfigFiles/translations/ProjectTree_zh_CN.qm new file mode 100644 index 0000000..1555dbf Binary files /dev/null and b/ConfigFiles/translations/ProjectTree_zh_CN.qm differ diff --git a/ConfigFiles/translations/ProjectTree_zh_CN.ts b/ConfigFiles/translations/ProjectTree_zh_CN.ts new file mode 100644 index 0000000..0d624be --- /dev/null +++ b/ConfigFiles/translations/ProjectTree_zh_CN.ts @@ -0,0 +1,242 @@ + + + + + AddBCDialog + + + Add BC + 添加边界条件 + + + + Set + 组件 + + + + BC Type + 类型 + + + + CreateEleProp + + + Create Prop + 创建属性 + + + + Name: + 名称: + + + + Element Type: + 单元类型: + + + + elem_fem_sta_linear + + + + + Material: + 材料: + + + + ProjectTree::ProjectTreeBase + + + Warning + 警告 + + + + File %1 is not exist! + 文件 %1 不存在! + + + + ProjectTree::ProjectTreeWithBasicNode + + + Element Property + 单元属性 + + + + + Set + 组件 + + + + + Simulation Setting + 仿真参数设置 + + + + + Boundary Condition + 边界条件 + + + + + Solver Setting + 求解设置 + + + + + Monitor + 监视器 + + + + + Post + 后处理 + + + + + 2D Plot + 二维绘图 + + + + + Counter + 云图 + + + + + Vector + 矢量 + + + + + Stream Line + 流线 + + + + Geometry + 几何 + + + + Import Geometry + 导入几何 + + + + Add Property + 添加属性 + + + + Import Set + 导入组件 + + + + Assign Property + 指定属性 + + + + + Warning + 警告 + + + + This Set has been used, still remove? + 网格组件正在被使用,确认移除? + + + + Node Scalar + 节点标量 + + + + Cell Scalar + 单元标量 + + + + Node Vector + 节点矢量 + + + + Cell Vector + 单元矢量 + + + + File %1 is not exist + 文件 %1 不存在 + + + + + Report + 报告 + + + + + + + + + + Remove + 移除 + + + + Add Boundary Condition + 添加边界条件 + + + + View + 查看 + + + + Create Report + 生成报告 + + + + RemoveReportDialog + + + Delete + 删除 + + + + Do you decide to remove the report? + 确定删除此报告? + + + + Delete file + 删除文件 + + + diff --git a/ConfigFiles/translations/README b/ConfigFiles/translations/README new file mode 100644 index 0000000..9e49b82 --- /dev/null +++ b/ConfigFiles/translations/README @@ -0,0 +1 @@ +TS files for the application should be all named according to a convention such as _, e.g. sqlb_de, sqlb_ru etc. diff --git a/ConfigFiles/translations/SARibbonBar_zh_CN.qm b/ConfigFiles/translations/SARibbonBar_zh_CN.qm new file mode 100644 index 0000000..1e52c42 Binary files /dev/null and b/ConfigFiles/translations/SARibbonBar_zh_CN.qm differ diff --git a/ConfigFiles/translations/SARibbonBar_zh_CN.ts b/ConfigFiles/translations/SARibbonBar_zh_CN.ts new file mode 100644 index 0000000..ad37b87 --- /dev/null +++ b/ConfigFiles/translations/SARibbonBar_zh_CN.ts @@ -0,0 +1,207 @@ + + + + + QObject + + + SARibbon Warning !!! customize rename category,but get an empty category object name,if you want to customize SARibbon,please make sure every element has been set object name. + + + + + SARibbon Warning !!! customize rename pannel,but get an empty category/pannel object name,if you want to customize SARibbon,please make sure every element has been set object name. + + + + + SARibbon Warning !!! customize change category order,but get an empty category object name,if you want to customize SARibbon,please make sure every element has been set object name. + + + + + SARibbon Warning !!! customize change pannel order,but get an empty category/pannel object name,if you want to customize SARibbon,please make sure every element has been set object name. + + + + + SARibbon Warning !!! customize change action order,but get an empty category/pannel/action object name,if you want to customize SARibbon,please make sure every element has been set object name. + + + + + SARibbon Warning !!! customize remove category,but get an empty category object name,if you want to customize SARibbon,please make sure every element has been set object name. + + + + + SARibbon Warning !!! customize remove pannel,but get an empty category/pannel object name,if you want to customize SARibbon,please make sure every element has been set object name. + + + + + SARibbon Warning !!! customize remove action,but get an empty category/pannel/action object name,if you want to customize SARibbon,please make sure every element has been set object name. + + + + + SARibbon Warning !!! customize visible category,but get an empty category object name,if you want to customize SARibbon,please make sure every element has been set object name. + + + + + SARibbonActionsManager + + + not in ribbon + + + + + SARibbonActionsManagerModel + + + action name + + + + + SARibbonCategoryLayout + + + in SARibbonCategoryLayout cannot addItem,use addPannel instead + 在SARibbonCategoryLayout中不能添加item,使用addPannel代替 + + + + SARibbonCustomizeDialog + + + Customize Dialog + + + + + Cancel + + + + + OK + + + + + SARibbonCustomizeWidget + + + Customize Widget + + + + + 从下列选项卡选择命令: + + + + + 查找命令 + + + + + 添加 >> + + + + + << 删除 + + + + + 自定义功能区: + + + + + 主选项卡 + + + + + 所有选项卡 + + + + + 新建选项卡 + + + + + 新建组 + + + + + 重命名 + + + + + proportion: + + + + + + large + + + + + + small + + + + + medium + + + + + new category[customize]%1 + + + + + new pannel[customize]%1 + + + + + rename + + + + + name: + + + + + SAWindowButtonGroup + + + Restore + + + + + Maximize + + + + diff --git a/ConfigFiles/translations/SelfDefObject_zh_CN.qm b/ConfigFiles/translations/SelfDefObject_zh_CN.qm new file mode 100644 index 0000000..bf43fbd Binary files /dev/null and b/ConfigFiles/translations/SelfDefObject_zh_CN.qm differ diff --git a/ConfigFiles/translations/SelfDefObject_zh_CN.ts b/ConfigFiles/translations/SelfDefObject_zh_CN.ts new file mode 100644 index 0000000..0e43c97 --- /dev/null +++ b/ConfigFiles/translations/SelfDefObject_zh_CN.ts @@ -0,0 +1,183 @@ + + + + + LineEditDialog + + + Dialog + + + + + Des + + + + + ParaMore + + + Form + + + + + ... + + + + + ParaTabViewer + + + Table Viewer + + + + + Export + 导出 + + + + Import + 导入 + + + + OK + 确定 + + + + Apply + 应用 + + + + Cancel + 取消 + + + + SelfDefLineEdit + + + Form + + + + + Must Input an integer number! + + + + + + The number must in range [%1,%2] + + + + + The accuracy of number can not more than %1 + + + + + Must Input an float number! + + + + + SelfDefObj::ParaColorBuutton + + + Select a color + + + + + SelfDefObj::ParaPath + + + Select a file + + + + + Select a directory + + + + + Select files + + + + + SelfDefObj::ParaTabViewer + + + Excel file + + + + + Files (*.csv) + + + + + SelfDefObj::ParaTable + + + Row:%1,Col:%2 + + + + + SelfDefObj::ParaTableWidget + + + Insert Column At Left + + + + + Insert Column At Right + + + + + + Rename + + + + + Delete Column + + + + + Insert Row At Above + + + + + Insert Column At Below + + + + + Delete Row + + + + + Name + + + + diff --git a/ConfigFiles/translations/Setting_zh_CN.qm b/ConfigFiles/translations/Setting_zh_CN.qm new file mode 100644 index 0000000..11b86e0 Binary files /dev/null and b/ConfigFiles/translations/Setting_zh_CN.qm differ diff --git a/ConfigFiles/translations/Setting_zh_CN.ts b/ConfigFiles/translations/Setting_zh_CN.ts new file mode 100644 index 0000000..fac4bb0 --- /dev/null +++ b/ConfigFiles/translations/Setting_zh_CN.ts @@ -0,0 +1,263 @@ + + + + + DialogWorkingDir + + + Working Dir + 设置工作目录 + + + + Working Dir: + 工作目录: + + + + EColorComboBox + + + + More ... + 更多... + + + + Custom... + 自定义... + + + + Custom(%1)... + 自定义(%1)... + + + + Custom Color + 自定义颜色 + + + + #RRGGBB + + + + + + Black + 黑色 + + + + Dark blue + 深蓝 + + + + Dark green + 深绿 + + + + Dark cyan + 深青 + + + + Dark red + 深红 + + + + Dark magenta + 深洋红 + + + + Dark yellow + 深黄 + + + + Dark gray + 深灰 + + + + + Gray + 灰色 + + + + Blue + 蓝色 + + + + Green + 绿色 + + + + Cyan + 青色 + + + + Red + 红色 + + + + Magenta + 洋红 + + + + Yellow + 黄色 + + + + + White + 白色 + + + + GraphOptionDialog + + + Graph Option + 绘图选项 + + + + OK + 确定 + + + + Apply + 应用 + + + + Cancel + 取消 + + + + Genreal Color + 通用颜色设置 + + + + Background(Top) + 背景颜色(顶部) + + + + Background(Bottom) + 背景颜色(底部) + + + + HighLight Color + 高亮颜色 + + + + Pre Highlight Color + 预高亮颜色 + + + + Geometry Surface Color + 几何面颜色 + + + + Geometry Curve Color + 几何线颜色 + + + + Geometry Point Color + 几何点颜色 + + + + Transparency + 透明度 + + + + Geometry Point Size + 几何点大小 + + + + Geometry Curve Width + 几何线宽度 + + + + Mesh Face Color + 网格面颜色 + + + + Mesh Edge Color + 网格边颜色 + + + + Mesh Node Color + 网格节点颜色 + + + + Scalar and Size + 尺寸范围 + + + + Mesh Node Size + 网格节点大小 + + + + Mesh Edge Width + 网格边宽度 + + + + Setting::WorkingDirDialog + + + + + Warning + 警告 + + + + The Dir is not exist! + 目录不存在! + + + + Select a Directory + 选择目录 + + + + + Must set Working Dir first! + 必须首先设置工作目录! + + + diff --git a/ConfigFiles/translations/SolverControl_Zh_CN.qm b/ConfigFiles/translations/SolverControl_Zh_CN.qm new file mode 100644 index 0000000..0f3e1a8 Binary files /dev/null and b/ConfigFiles/translations/SolverControl_Zh_CN.qm differ diff --git a/ConfigFiles/translations/SolverControl_Zh_CN.ts b/ConfigFiles/translations/SolverControl_Zh_CN.ts new file mode 100644 index 0000000..de93487 --- /dev/null +++ b/ConfigFiles/translations/SolverControl_Zh_CN.ts @@ -0,0 +1,176 @@ + + + + + AddSolverDialog + + + Add Solver + 添加求解器 + + + + Solver Type + 求解器类型 + + + + Self Develop + 自研 + + + + Thrid Party + 第三方 + + + + Solver name: + 求解器名称: + + + + File path: + 文件路径: + + + + Start arguements: + 启动参数: + + + + Process key word: + 进度关键字: + + + + Input File + 输入文件 + + + + Template + 模板 + + + + File format + 文件格式 + + + + Output Transform + 输出转换 + + + + Transformer: + 转换器: + + + + OK + 确认 + + + + Cancel + 取消 + + + + SolverControl::AddSolverDialog + + + Edit Solver + 编辑求解器 + + + + Warning + 警告 + + + + Name and path must be given ! + 名称和路径尚未指定! + + + + + Solver + 求解器 + + + + + All Files (*.*) + 全部文件 (*.*) + + + + Default (xml) + 默认 (xml) + + + + Default (None) + 默认 (无) + + + + SolverControl::MesherControlerBase + + + Meshing... + 网格划分... + + + + SolverControl::SolverControlBase + + + + + + Warning + 警告 + + + + + Solver Path Error! Solve Path : %1 + 求解器路径错误!路径:%1 + + + + + Input file write failed ! + 输入文件写出失败! + + + + SolverManagerDialog + + + Solver Manager + 求解器管理 + + + + Add + 添加 + + + + Remove + 移除 + + + + Modify + 修改 + + + diff --git a/ConfigFiles/translations/UserGuidence_zh_CN.qm b/ConfigFiles/translations/UserGuidence_zh_CN.qm new file mode 100644 index 0000000..753e616 Binary files /dev/null and b/ConfigFiles/translations/UserGuidence_zh_CN.qm differ diff --git a/ConfigFiles/translations/UserGuidence_zh_CN.ts b/ConfigFiles/translations/UserGuidence_zh_CN.ts new file mode 100644 index 0000000..5cc5d03 --- /dev/null +++ b/ConfigFiles/translations/UserGuidence_zh_CN.ts @@ -0,0 +1,79 @@ + + + + + ExampleWidget + + + Form + + + + + Open Dir + 打开目录 + + + + Details + 详情 + + + + View + 查看 + + + + Guidence::ExampleWidget + + + + Warning + 警告 + + + + Detail File is not exist ! + 详情文件不存在! + + + + Script File is not exist ! + 脚本文件不存在! + + + + UserGuidenceDialog + + + User Guidence + 用户引导 + + + + Don't show this window again + 不再显示该窗口 + + + + Back + 返回 + + + + Close + 关闭 + + + + View Document + 查看文档 + + + + View Examples + 查看示例 + + + diff --git a/ConfigFiles/translations/flags/ar.png b/ConfigFiles/translations/flags/ar.png new file mode 100644 index 0000000..ade5ca3 Binary files /dev/null and b/ConfigFiles/translations/flags/ar.png differ diff --git a/ConfigFiles/translations/flags/br.png b/ConfigFiles/translations/flags/br.png new file mode 100644 index 0000000..dd31ddd Binary files /dev/null and b/ConfigFiles/translations/flags/br.png differ diff --git a/ConfigFiles/translations/flags/cn.png b/ConfigFiles/translations/flags/cn.png new file mode 100644 index 0000000..c658f07 Binary files /dev/null and b/ConfigFiles/translations/flags/cn.png differ diff --git a/ConfigFiles/translations/flags/cs.png b/ConfigFiles/translations/flags/cs.png new file mode 100644 index 0000000..f8f671a Binary files /dev/null and b/ConfigFiles/translations/flags/cs.png differ diff --git a/ConfigFiles/translations/flags/de.png b/ConfigFiles/translations/flags/de.png new file mode 100644 index 0000000..0b3b41f Binary files /dev/null and b/ConfigFiles/translations/flags/de.png differ diff --git a/ConfigFiles/translations/flags/eg.png b/ConfigFiles/translations/flags/eg.png new file mode 100644 index 0000000..7d67af9 Binary files /dev/null and b/ConfigFiles/translations/flags/eg.png differ diff --git a/ConfigFiles/translations/flags/es.png b/ConfigFiles/translations/flags/es.png new file mode 100644 index 0000000..be9d7b5 Binary files /dev/null and b/ConfigFiles/translations/flags/es.png differ diff --git a/ConfigFiles/translations/flags/flags.qrc b/ConfigFiles/translations/flags/flags.qrc new file mode 100644 index 0000000..09ae00e --- /dev/null +++ b/ConfigFiles/translations/flags/flags.qrc @@ -0,0 +1,23 @@ + + + ar.png + cs.png + de.png + es.png + us.png + fr.png + it.png + ru.png + cn.png + br.png + gb.png + roc.png + kr.png + tr.png + ua.png + eg.png + pl.png + jp.png + nl.png + + diff --git a/ConfigFiles/translations/flags/fr.png b/ConfigFiles/translations/flags/fr.png new file mode 100644 index 0000000..7fe158c Binary files /dev/null and b/ConfigFiles/translations/flags/fr.png differ diff --git a/ConfigFiles/translations/flags/gb.png b/ConfigFiles/translations/flags/gb.png new file mode 100644 index 0000000..4200596 Binary files /dev/null and b/ConfigFiles/translations/flags/gb.png differ diff --git a/ConfigFiles/translations/flags/it.png b/ConfigFiles/translations/flags/it.png new file mode 100644 index 0000000..6bd4996 Binary files /dev/null and b/ConfigFiles/translations/flags/it.png differ diff --git a/ConfigFiles/translations/flags/jp.png b/ConfigFiles/translations/flags/jp.png new file mode 100644 index 0000000..325fbad Binary files /dev/null and b/ConfigFiles/translations/flags/jp.png differ diff --git a/ConfigFiles/translations/flags/kr.png b/ConfigFiles/translations/flags/kr.png new file mode 100644 index 0000000..e6db9c7 Binary files /dev/null and b/ConfigFiles/translations/flags/kr.png differ diff --git a/ConfigFiles/translations/flags/nl.png b/ConfigFiles/translations/flags/nl.png new file mode 100644 index 0000000..99814aa Binary files /dev/null and b/ConfigFiles/translations/flags/nl.png differ diff --git a/ConfigFiles/translations/flags/pl.png b/ConfigFiles/translations/flags/pl.png new file mode 100644 index 0000000..d8ca17c Binary files /dev/null and b/ConfigFiles/translations/flags/pl.png differ diff --git a/ConfigFiles/translations/flags/roc.png b/ConfigFiles/translations/flags/roc.png new file mode 100644 index 0000000..23f01ce Binary files /dev/null and b/ConfigFiles/translations/flags/roc.png differ diff --git a/ConfigFiles/translations/flags/ru.png b/ConfigFiles/translations/flags/ru.png new file mode 100644 index 0000000..e634822 Binary files /dev/null and b/ConfigFiles/translations/flags/ru.png differ diff --git a/ConfigFiles/translations/flags/tr.png b/ConfigFiles/translations/flags/tr.png new file mode 100644 index 0000000..f95e1ca Binary files /dev/null and b/ConfigFiles/translations/flags/tr.png differ diff --git a/ConfigFiles/translations/flags/ua.png b/ConfigFiles/translations/flags/ua.png new file mode 100644 index 0000000..cedf502 Binary files /dev/null and b/ConfigFiles/translations/flags/ua.png differ diff --git a/ConfigFiles/translations/flags/us.png b/ConfigFiles/translations/flags/us.png new file mode 100644 index 0000000..10db15e Binary files /dev/null and b/ConfigFiles/translations/flags/us.png differ diff --git a/ConfigFiles/translations/place_translations_here b/ConfigFiles/translations/place_translations_here new file mode 100644 index 0000000..e69de29 diff --git a/ConfigFiles/translations/sqlb_ar_SA.qm b/ConfigFiles/translations/sqlb_ar_SA.qm new file mode 100644 index 0000000..cfe10a9 Binary files /dev/null and b/ConfigFiles/translations/sqlb_ar_SA.qm differ diff --git a/ConfigFiles/translations/sqlb_ar_SA.ts b/ConfigFiles/translations/sqlb_ar_SA.ts new file mode 100644 index 0000000..ffd84c3 --- /dev/null +++ b/ConfigFiles/translations/sqlb_ar_SA.ts @@ -0,0 +1,7051 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + عن «متصفّح قواعد بيانات SQLite» + + + + Version + الإصدارة + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html dir="rtl"> +<p>«متصفّح قواعد بيانات SQLite» أداة رسوميّة مفتوحة المصدر ومجانية، تُستخدم لإنشاء ملفّات قواعد بيانات SQLite وتصميمها وتحريرها.</p><p>الأداة مرخّصة برخصتين، الإصدارة الثانية من رخصة موزيلا العمومية، والإصدارة الثالثة وما بعدها من رخصة غنو العمومية. يمكنك تعديل الأداة أو إعادة توزيعها بشروط تلك الرخص.</p><p>طالع <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> و<a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> للتفاصيل.</p><p>من فضلك زُر موقع الوِب هذا لمعلومات أكثر عن البرمجية: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">تستخدم هذه البرمجية عُدّة أدوات كيوت المرخّصة تحت GPL/LGPL وذلك من </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>طالع </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> لشروط الترخيص والمعلومات.</span></p><p><span style=" font-size:small;">تستخدم البرمجية أيضًا طقم أيقونات الحرير/Silk للمؤلّف Mark James المرخّصة برخصة المشاع الإبداعي - النسبة ٢٫٥ و٣٫٠.<br/>طالع </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> للتفاصيل.</span></p> +</html> + + + + AddRecordDialog + + + Add New Record + أضِف سجلًا جديدًا + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + أدخِل قيم السجلّ الجديد بأخذ القيود بعين الاعتبار. الحقول الثخينة ضرورية. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + يمكنك تحديد قيمة الحقل المحدّد في عمود ”الاسم“ وذلك في عمود ”القيمة“. يُشير عمود ”النوع“ إلى نوع الحقل. تُعرض القيم المبدئية بنفس نمط قيم NULL. + + + + Name + الاسم + + + + Type + النوع + + + + Value + القيمة + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + القيم التي ستُدرج. لو لم تتغيّر فسُتدرج آليًا القيم المبدئية المعبّأة مسبقًا. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + عندما تحرّر القيم في الإطار أعلاه، ستظهر هنا إفادة SQL لإدراج هذا السجلّ. يمكنك تحرير الإفادة يدويًا قبل الحفظ. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <p>سيُرسل زر <span style=" font-weight:600;">احفظ</span> إفادة SQL الظاهرة إلى قاعدة البيانات لإدراج السجلّ الجديد.</p><p>سيستعيد زر <span style=" font-weight:600;">استعد المبدئيات</span> القيمة الأولية في عمود ”<span style=" font-weight:600;">القيمة</span>“.</p><p>سيُغلق زر <span style=" font-weight:600;">ألغِ</span> مربّع الحوار هذا دون تنفيذ الاستعلام.</p> + + + + Auto-increment + + زيادة آليّة + + + + + Unique constraint + + قيد ”فريد“ + + + + + Check constraint: %1 + + قيد الفحص: %L1 + + + + + Foreign key: %1 + + المفتاح الأجنبي: %L1 + + + + + Default value: %1 + + القيمة المبدئية: %L1 + + + + + Error adding record. Message from database engine: + +%1 + خطأ أثناء إضافة السجلّ. الرسالة من محرّك قواعد البيانات: + +%L1 + + + + Are you sure you want to restore all the entered values to their defaults? + أمتأكّد من استعادة كلّ القيم المُدخلة إلى مبدئياتها؟ + + + + Application + + + Possible command line arguments: + معطيات سطر الأوامر الممكنة: + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + يطلب الخياران ‎-o/--option و ‎-O/--save-option معطًى بهذا النحو: group/setting=value + + + + Usage: %1 [options] [<database>|<project>] + + ‎الاستعمال:‎ %L1 [options] [<database>|<project>] + + + + + -h, --help Show command line options + -h, --help اعرض خيارات سطر الأوامر + + + + -q, --quit Exit application after running scripts + -q, --quit أنهِ التطبيق بعد تشغيل السكربتات + + + + -s, --sql <file> Execute this SQL file after opening the DB + -s, --sql <file> ‫نفّذ ملف SQL المذكور بعد فتح قاعدة البيانات + + + + -t, --table <table> Browse this table after opening the DB + -t, --table <table> تصفّح الجدول المذكور بعد فتح قاعدة البيانات + + + + -R, --read-only Open database in read-only mode + -R, --read-only افتح قاعدة البيانات بوضع القراءة فقط + + + + -o, --option <group>/<setting>=<value> + -o, --option <group>/<setting>=<value> + + + + Run application with this setting temporarily set to value + ‎ ‫شغّل التطبيق بضبط هذا الإعداد setting مؤقتًا على القيمة value + + + + -O, --save-option <group>/<setting>=<value> + -O, --save-option <group>/<setting>=<value> + + + + Run application saving this value for this setting + ‎ ‫شغّل التطبيق بحفظ هذه القيمة value لهذا الإعداد setting + + + + -v, --version Display the current version + -v, --version اعرض الإصدارة الحالية + + + + <database> Open this SQLite database + <database> ‫افتح قاعدة بيانات SQLite المذكورة + + + + <project> Open this project file (*.sqbpro) + <project> ‫افتح ملف المشروع المذكور (‎*.sqbpro) + + + + The -s/--sql option requires an argument + يتطلّب الخيار ‎-s/--sql معطًى + + + + The file %1 does not exist + الملف %L1 غير موجود + + + + The -t/--table option requires an argument + يتطلّب الخيار ‎-t/--table معطًى + + + + Invalid option/non-existant file: %1 + خيار غير صالح/ملف غير موجود: %L1 + + + + SQLite Version + إصدارة SQLite: ‏ + + + + SQLCipher Version %1 (based on SQLite %2) + إصدارة SQLCipher:‏ %L1 (مبنيّة على SQLite %L2) + + + + DB Browser for SQLite Version %1. + «متصفّح قواعد بيانات SQLite» الإصدارة %L1. + + + + Built for %1, running on %2 + مبنيّة للمعماريّة %L1، وتعمل على المعماريّة %L2 + + + + Qt Version %1 + إصدارة كيوت: %L1 + + + + CipherDialog + + + SQLCipher encryption + تعمية SQLCipher + + + + &Password + &كلمة السر + + + + &Reenter password + أ&عِد إدخال كلمة السر + + + + Encr&yption settings + إعدادات التع&مية + + + + SQLCipher &3 defaults + مبدئيّات SQLCipher &3 + + + + SQLCipher &4 defaults + مبدئيّات SQLCipher &4 + + + + Custo&m + م&خصّص + + + + Page si&ze + م&قاس الصفحة + + + + &KDF iterations + ت&كرارات KDF + + + + HMAC algorithm + خوارزميّة HMAC + + + + KDF algorithm + خوارزميّة KDF + + + + Plaintext Header Size + حجم ترويسة النص البائن + + + + Passphrase + عبارة سر + + + + Raw key + مفتاح خام + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + من فضلك اضبط مفتاحًا لتعمية قاعدة البيانات. +لو غيّرت أيًا من الإعدادات الأخرى (الاختيارية)، فسيكون عليك إعادة إدخالها أيضًا في كلّ مرّة تفتح فيها ملف قاعدة البيانات. +اترك حقول كلمة السر فارغة لتعطيل التعمية. +قد تأخذ عملية التعمية وقتًا وعليك الاحتفاظ بنسخة من قاعدة البيانات احتياطًا! ستُطبّق التعديلات غير المحفوظة قبل تعديل التعمية. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + من فضلك أدخِل المفتاح المستعمل لتعمية قاعدة البيانات. +إن كانت هناك إعدادات أخرى قد تغيّرت في ملف قاعدة البيانات هذا، فعليك ذكر ذلك أيضًا. + + + + ColumnDisplayFormatDialog + + + Choose display format + اختر تنسيق العرض + + + + Display format + تنسيق العرض + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + اختر تنسيق عرض العمود ”%L1“ ليُطبّق على كلّ قيمة قبل عرضها. + + + + Default + المبدئي + + + + Decimal number + عدد عشري + + + + Exponent notation + تدوين أُسّي + + + + Hex blob + ‏BLOB ستّ‌عشري + + + + Hex number + عدد ستّ‌عشري + + + + Apple NSDate to date + ”تاريخ آبل/Apple NSDate“ إلى تاريخ + + + + Java epoch (milliseconds) to date + عَصر جاڤا (ملّي‌ثانية) إلى تاريخ + + + + .NET DateTime.Ticks to date + ‏DateTime.Ticks من ‎.NET إلى تاريح + + + + Julian day to date + يوم جولياني إلى تاريخ + + + + Unix epoch to local time + عَصر لينكس إلى الوقت المحلي + + + + Date as dd/mm/yyyy + التاريخ بتنسيق dd/mm/yyyy + + + + Lower case + حالة الأحرف صغيرة + + + + Custom display format must contain a function call applied to %1 + على تنسيق العرض المخصّص أن يحتوي على نداء دالة مطبّق على %L1 + + + + Error in custom display format. Message from database engine: + +%1 + خطأ في تنسيق العرض المخصّص. الرسالة من محرّك قواعد البيانات: +%L1 + + + + Custom display format must return only one column but it returned %1. + على تنسيق العرض المخصّص إعادة عمود واحد فقط، لكنّه أعاد %L1. + + + + Octal number + عدد ثماني + + + + Round number + عدد تقريبي + + + + Unix epoch to date + عَصر لينكس إلى تاريخ + + + + Upper case + حالة الأحرف كبيرة + + + + Windows DATE to date + ”تاريخ وندوز/Windows DATE“ إلى تاريخ + + + + Custom + مخصّص + + + + CondFormatManager + + + Conditional Format Manager + مدير التنسيقات الشرطيّة + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + يُتيح لك مربّع الحوار هذا إنشاء التنسيقات الشرطيّة وتحريرها. ستختار البرمجيّة كلّ نمط خلايا حسب أوّل شرط متوافق مع بيانات الخليّة. يمكنك نقل التنسيقات الشرطيّة إلى أعلى وأسفل، حيث تعبّر أعلاها أكثرها أولويّة، والعكس. صياغة الشروط هي نفسها صياغة المرشّحات، والشروط الفارغة تنطبق على كلّ القيم. + + + + Add new conditional format + أضِف تنسيقًا شرطيًا جديدًا + + + + &Add + أ&ضِف + + + + Remove selected conditional format + أزِل التنسيق الشرطيّ المحدّد + + + + &Remove + أ&زِل + + + + Move selected conditional format up + انقل التنسيق الشرطيّ المحدّد لأعلى + + + + Move &up + انقل لأ&على + + + + Move selected conditional format down + انقل التنسيق الشرطيّ المحدّد لأسفل + + + + Move &down + انقل لأ&سفل + + + + Foreground + الأمامية + + + + Text color + لون النص + + + + Background + الخلفية + + + + Background color + لون الخلفية + + + + Font + الخط + + + + Size + الحجم + + + + Bold + ثخين + + + + Italic + مائل + + + + Underline + مسطّر + + + + Alignment + المحاذاة + + + + Condition + الشرط + + + + + Click to select color + انقر لاختيار لون + + + + Are you sure you want to clear all the conditional formats of this field? + أمتأكّد من مسح كلّ التنسيقات الشرطيّة لهذا الحقل؟ + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + من فضلك اختر اسم قاعدة البيانات الذي تريد استعماله للوصول إلى قاعدة البيانات المرفقة + + + + Invalid file format + تنسيق الملف غير صالح + + + + Do you want to save the changes made to the database file %1? + أتريد حفظ التعديلات المُجراة على ملف قاعدة البيانات %L1؟ + + + + Exporting database to SQL file... + يصدّر قاعدة البيانات إلى ملف SQL... + + + + + Cancel + ألغِ + + + + Executing SQL... + ينفّذ SQL... + + + + Action cancelled. + أُلغي الإجراء. + + + + This database has already been attached. Its schema name is '%1'. + أُرفقت قاعدة البيانات هذه بالفعل. اسم المخطّط هو ”%L1“. + + + + Do you really want to close this temporary database? All data will be lost. + أمتأكّد من إغلاق قاعدة البيانات المؤقّتة هذه؟ ستفقد كلّ البيانات. + + + + Database didn't close correctly, probably still busy + لم تُغلق قاعدة البيانات كما ينبغي، ربّما هي مشغولة + + + + The database is currently busy: + قاعدة البيانات مشغولة حاليًا: + + + + Do you want to abort that other operation? + أتريد إجهاض العملية الأخرى؟ + + + + + No database file opened + لم يُفتح ملف قاعدة بيانات + + + + + Error in statement #%1: %2. +Aborting execution%3. + خطأ في الإفادة رقم %L1:‏ %L2. +سأُجهض التنفيذ%L3. + + + + + and rolling back + وأُرجع ما كان موجودًا. + + + + didn't receive any output from %1 + لم أستلم أيّ ناتج من %L1 + + + + could not execute command: %1 + تعذّر تنفيذ الأمر: %L1 + + + + Cannot delete this object + تعذّر حذف هذا الكائن + + + + Cannot set data on this object + تعذّر ضبط البيانات على هذا الكائن + + + + + A table with the name '%1' already exists in schema '%2'. + هناك جدول بنفس الاسم ”%L1“ بالفعل في المخطّط ”%L2“. + + + + No table with name '%1' exists in schema '%2'. + ما من جدول له الاسم ”%L1“ في المخطّط ”%L2“. + + + + + Cannot find column %1. + تعذّر العثور على العمود %L1 + + + + Creating savepoint failed. DB says: %1 + فشل إنشاء نقطة الحفظ. تقول قاعدة البيانات: %L1 + + + + Renaming the column failed. DB says: +%1 + فشل تغيير اسم العمود. تقول قاعدة البيانات: +%L1 + + + + + Releasing savepoint failed. DB says: %1 + فشلت استعداة نقطة الحفظ. تقول قاعدة البيانات: %L1 + + + + Creating new table failed. DB says: %1 + فشل إنشاء جدول جديد. تقول قاعدة البيانات: %L1 + + + + Copying data to new table failed. DB says: +%1 + فشل نسخ البيانات إلى جدول جديد. تقول قاعدة البيانات: +%L1 + + + + Deleting old table failed. DB says: %1 + فشل حذف الجدول القديم. تقول قاعدة البيانات: %L1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + خطأ في تغيير اسم الجدول ”%L1“ إلى ”%L2“. +الرسالة من محرّك قواعد البيانات: +%L3 + + + + could not get list of db objects: %1 + تعذّر جلب قائمة كائنات قواعد البيانات: %L1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + فشلت استعادة بعض الكائنات المرتبطة بهذا الجدول. غالبًا ما يحدث هذا بسبب تغيّر اسم الأعمدة. هذه إفادة SQL التي قد ترغب بتنفيذها لإصلاح ذلك يدويًا: + + + + + + could not get list of databases: %1 + تعذّر جلب قائمة قواعد البيانات: %L1 + + + + Error loading extension: %1 + خطأ أثناء تحميل الامتداد: %L1 + + + + could not get column information + تعذّر جلب معلومات العمود + + + + Error setting pragma %1 to %2: %3 + تعذّر ضبط pragma %L1 إلى %L2:‏ %L3 + + + + File not found. + تعذّر العثور على الملف. + + + + DbStructureModel + + + Name + الاسم + + + + Object + الكائن + + + + Type + النوع + + + + Schema + المخطّط + + + + Database + قاعدة البيانات + + + + Browsables + ما يمكنك تصفّحه + + + + All + الكلّ + + + + Temporary + مؤقّتة + + + + Tables (%1) + الجداول (%L1) + + + + Indices (%1) + الفهارس (%L1) + + + + Views (%1) + المناظير (%L1) + + + + Triggers (%1) + المحفّزات (%L1) + + + + EditDialog + + + Edit database cell + تحرير خليّة قاعدة البيانات + + + + Mode: + الوضع: + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + هذه قائمة بالأوضاع المتوفّرة في محرّر الخلايا. اختر وضعًا لعرض أو تحرير البيانات في الخليّة الحالية. + + + + Text + نصوص + + + + RTL Text + نصوص من اليمين إلى اليسار + + + + Binary + بيانات ثنائيّة + + + + + Image + صور + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + اضبط وضع المحرّر آليًا على نوع البيانات المحمّل + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + يُفعّل/يُعطّل هذا الزر التبديل التلقائي لوضع المحرّر. متى حدّدت خليّة جديدة أو استوردت بيانات جديدة ويُفعّل التبديل الآلي سترى بأنّ الوضع سيُضبط على نوع البيانات المكتشف. يمكنك بعدها تغيير وضع المحرّر يدويًا. لو أردت أن يكون التبديل يدويًا عند الانتقال بين الخلايا، فعطّل هذا الزر. + + + + Auto-switch + التبديل الآلي + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + يُتيح لك وضع التحرير هذا بتعديل النصوص صِرفة كما وبيانات JSON وXML إذ يدعم إبراز الصياغة والتنسيق التحقّق التلقائيّين قبل الحفظ. + +تُعرض الأخطاء على شكل خطّ أحمر مسطّر مموّج. + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + يُستعمل محرّر «كيوت» هذا للغات المكتوبة من اليمين إلى اليسار (مثل العربيّة) إذ لا يدعمها محرّر النصوص المبدئي. لو كتبت حروف لغة تُكتب من اليمين إلى اليسار، فستكتشف البرمجيّة ذلك وتحدّد وضع الخليّة هذا تلقائيًا. + + + + Open preview dialog for printing the data currently stored in the cell + افتح مربّع حوار معاينة طباعة البيانات المخزّنة في الخليّة حاليًا + + + + Auto-format: pretty print on loading, compact on saving. + التنسيق الآلي: طباعة جميلة (pretty print) عند التحميل، رصّ عند الحفظ. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + إن فعّلت الخيار فستُنسّق ميزة التنسيق الآلي البياناتَ متى تحمّلت، فتكسر النصوص إلى أسطر وتُزيحها لزيادة مقروؤيتها. وعند حفظ البيانات ترصّ ميزة التنسيق الآلي البياناتَ بإزالة نهايات الأسطر والمسافات غير اللازمة. + + + + Word Wrap + لفّ الأسطر + + + + Wrap lines on word boundaries + لُفّ الأسطر عند حدود الكلمات + + + + + Open in default application or browser + افتح في التطبيق المبدئي أو المتصفّح + + + + Open in application + افتح في التطبيق + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + تُحلّل البرمجيّة القيمة على أنّها ملف أو مسار وتفتحه في التطبيق المبدئي أو في متصفّح الوب. + + + + Save file reference... + احفظ إشارة إلى الملف... + + + + Save reference to file + احفظ إشارة إلى الملف... + + + + + Open in external application + افتح في تطبيق خارجي + + + + Autoformat + التنسيق الآلي + + + + &Export... + &صدّر... + + + + + &Import... + ا&ستورِد... + + + + + Import from file + استورِد من ملف + + + + + Opens a file dialog used to import any kind of data to this database cell. + يفتح مربّع حوار ملفات يُستعمل لاستيراد أيّ نوع من البيانات في خليّة قاعدة البيانات هذه. + + + + Export to file + صدّر إلى ملف + + + + Opens a file dialog used to export the contents of this database cell to a file. + يفتح مربّع حوار ملفات يُستعمل لتصدير محتويات خليّة قاعدة البيانات هذه إلى ملف. + + + + + Print... + اطبع... + + + + Open preview dialog for printing displayed image + يفتح مربّع حوار المعاينة لطباعة الصورة المعروضة + + + + + Ctrl+P + Ctrl+P + + + + Open preview dialog for printing displayed text + يفتح مربّع حوار المعاينة لطباعة النص المعروض + + + + Copy Hex and ASCII + انسخ Hex وآسكي + + + + Copy selected hexadecimal and ASCII columns to the clipboard + انسخ الأعمدة الستّ‌عشرية وآسكي المحدّدة إلى الحافظة + + + + Ctrl+Shift+C + Ctrl+Shift+C + + + + Erases the contents of the cell + يمسح محتويات هذه الخليّة + + + + Set as &NULL + ا&ضبط على NULL + + + + This area displays information about the data present in this database cell + تعرض هذه المنطقة معلومات عن البيانات الموجودة في خليّة قاعدة البيانات هذه + + + + Type of data currently in cell + نوع البيانات في الخليّة حاليًا + + + + Size of data currently in table + حجم البيانات في الخليّة حاليًا + + + + Apply data to cell + طبّق البيانات على الخليّة + + + + This button saves the changes performed in the cell editor to the database cell. + يحفظ هذا الزر التغييرات المُجراة داخل محرّر الخلايا في خليّة قاعدة البيانات. + + + + Apply + طبّق + + + + Choose a filename to export data + اختر اسمًا للملف لتصدير البيانات + + + + Type of data currently in cell: %1 Image + نوع البيانات في الخليّة حاليًا: صورة %L1 + + + + %1x%2 pixel(s) + ‏%L1×‏%L2 بكسل + + + + Type of data currently in cell: NULL + نوع البيانات في الخليّة حاليًا: NULL + + + + + %n byte(s) + + لا بايتات + بايت واحد + بايتان + %Ln بايتات + %Ln بايتًا + %Ln بايت + + + + + + Type of data currently in cell: Text / Numeric + نوع البيانات في الخليّة حاليًا: نصوص/عدد + + + + + Image data can't be viewed in this mode. + لا يمكن عرض بيانات الصور في هذا الوضع. + + + + + Try switching to Image or Binary mode. + جرّب الانتقال إلى وضع ”صور“ أو ”بيانات ثنائيّة“. + + + + + Binary data can't be viewed in this mode. + لا يمكن عرض البيانات الثنائيّة في هذا الوضع. + + + + + Try switching to Binary mode. + جربّ الانتقال إلى وضع ”بيانات ثنائيّة“. + + + + Couldn't save file: %1. + تعذّر حفظ الملف: %L1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + حُفظت البيانات في ملف مؤقّت وفُتح في التطبيق المبدئي. يمكنك الآن تحرير الملف وتطبيق البيانات الجديدة المحفوظة فيه متى أردت في محرّر الخليّة، أو حتّى إلغاء تلك التغييرات. + + + + + Image files (%1) + ملفات الصور (%L1) + + + + Binary files (*.bin) + الملفات الثنائيّة (*.bin) + + + + Choose a file to import + اختر ملفًا لاستيراده + + + + %1 Image + صورة %L1 + + + + Invalid data for this mode + بيانات غير صالحة في هذا الوضع + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + تحتوي الخليّة بيانات %L1 غير صالحة. السبب: %L2. أمتأكّد من تطبيقها على الخليّة؟ + + + + + + %n character(s) + + لا محارف + محرف واحد + محرفان + %Ln محارف + %Ln محرفًا + %Ln محرف + + + + + Type of data currently in cell: Valid JSON + نوع البيانات في الخليّة حاليًا: JSON صالحة + + + + Type of data currently in cell: Binary + نوع البيانات في الخليّة حاليًا: بيانات ثنائيّة + + + + EditIndexDialog + + + &Name + الا&سم + + + + Order + الترتيب + + + + &Table + الج&دول + + + + Edit Index Schema + تحرير مخطّط الفهرس + + + + &Unique + &فريد + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + إن أردت حصر الفهرس على جزء من الجدول فحسب، يمكنك هنا تحديد بند WHERE ليُحدّد جزء الجدول الذي يجب فهرسته + + + + Partial inde&x clause + بند ف&هرس جزئي + + + + Colu&mns + الأ&عمدة + + + + Table column + عمود الجدول + + + + Type + النوع + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + أضِف عمود تعبير جديد إلى الفهرس. تحتوي أعمدة التعابير على تعابير SQL بدل أسماء الأعمدة. + + + + Index column + عمود الفهرس + + + + Deleting the old index failed: +%1 + فشل حذف الفهرس القديم: +%L1 + + + + Creating the index failed: +%1 + فشل إنشاء الفهرس: +%L1 + + + + EditTableDialog + + + Edit table definition + تحرير تعريف الجدول + + + + Table + الجدول + + + + Advanced + متقدّم + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + اجعل هذا الجدول بلا معرّف للصفوف ”WITHOUT rowid“. لضبط هذه الراية تحتاج حقلًا بنوع ”أعداد صحيحة/INTEGER“ وأيضا عليك ضبط راية المفتاح الأساسي وألّا تضبط راية الزيادة الآليّة. + + + + Without Rowid + بلا معرّف للصفوف + + + + Fields + الحقول + + + + Database sche&ma + مخ&طّط قاعدة البيانات + + + + Add + أضِف + + + + Remove + أزِل + + + + Move to top + انقل للأعلى + + + + Move up + انقل لأعلى + + + + Move down + انقل لأسفل + + + + Move to bottom + انقل للأسفل + + + + + Name + الاسم + + + + + Type + النوع + + + + NN + NN + + + + Not null + ليس NULL + + + + PK + PK + + + + Primary key + مفتاح أساسي Primary key + + + + AI + AI + + + + Autoincrement + زيادة آليّة Auto Increment + + + + U + U + + + + + + Unique + فريد Unique + + + + Default + المبدئي + + + + Default value + القيمة المبدئية + + + + + + Check + الفحص + + + + Check constraint + قيد الفحص Check constraint + + + + Collation + قواعد مقارنة المحارف + + + + + + Foreign Key + مفتاح أجنبي + + + + Constraints + القيود + + + + Add constraint + أضِف قيدًا + + + + Remove constraint + أزِل القيد + + + + Columns + الأعمدة + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <span style=" font-weight:600; color:#ff0000;">تحذير: </span>ثمّة خطب بتعريف هذا الجدول تعذّر على المحلّل فهمه تمامًا. يمكن أن يؤدّي تعديل وحفظ هذا الجدول إلى بعض المشاكل. + + + + + Primary Key + مفتاح أساسي + + + + Add a primary key constraint + أضِف قيد فرض مفتاح أساسي + + + + Add a foreign key constraint + أضِف قيد فرض مفتاح أجنبي + + + + Add a unique constraint + أضِف قيد فرض ”فريد“ + + + + Add a check constraint + أضِف قيد فرض ”فحص“ + + + + Error creating table. Message from database engine: +%1 + خطأ أثناء إنشاء الجدول. الرسالة من محرّك قواعد البيانات: +%L1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + هناك حقل بهذا الاسم بالفعل. من فضلك غيّر اسمه أو اختر اسمًا مختلفًا لهذا الحقل. + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + لكلّ جدول مفتاح أساسي واحد فقط. من فضلك عدّل المفتاح الموجود بدل هذا الأمر. + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + هذا العمود مذكور في مفتاح أجنبي في الجدول %L1 ولا يمكن تغيير اسمه. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + ثمّة صفّ واحد على الأقل ضُبط هذا الحقل فيه على NULL. لهذا السبب يستحيل ضبط هذه الراية. من فضلك غيّر بيانات الجدول أوّلًا. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + ثمّة صفّ واحد على الأقل ضُبط هذا الحقل فيه على قيمة ليست بنوع ”عدد صحيح“. لهذا السبب يستحيل ضبط راية الزيادة الآليّة. من فضلك غيّر بيانات الجدول أوّلًا. + + + + Column '%1' has duplicate data. + + في العمود ”%L1“ بيانات متكرّرة. + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + يمنع هذا تفعيل راية ”فريد“. من فضلك أزِل البيانات المتكرّرة كي تقدر على تفعيل هذه الراية. + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + أمتأكّد من حذف الحقل ”%L1“؟ +ستفقد كل البيانات المخزّنة فيه حاليًا. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + من فضلك أضِف حقلًا يُطابق المعايير الآتية قبل ضبط راية ”بلا معرّف صفوف/rowid“: + - راية ”مفتاح أساسي“ مضبوطة + - الزيادة الآلية معطّلة + + + + ExportDataDialog + + + Export data as CSV + تصدير البيانات بنسق CSV + + + + Tab&le(s) + الج&داول + + + + Colu&mn names in first line + أسماء الأ&عمدة في أوّل سطر + + + + Fie&ld separator + فاصل الح&قول + + + + , + , + + + + ; + ; + + + + Tab + جدولات + + + + | + | + + + + + + Other + شيء آخر + + + + &Quote character + محرف ال&تنصيص + + + + " + " + + + + ' + ' + + + + New line characters + محرف الأسطر الجديدة + + + + Windows: CR+LF (\r\n) + وندوز: CR+LF ‏(‎\r\n) + + + + Unix: LF (\n) + يُنكس: LF ‏(‎\n) + + + + Pretty print + طباعة جميلة + + + + + Could not open output file: %1 + تعذّر فتح ملف الخرج: %L1 + + + + + Choose a filename to export data + اختر اسمًا للملف لتصدير البيانات + + + + Export data as JSON + تصدير البيانات بنسق JSON + + + + exporting CSV + يصدّر CSV + + + + exporting JSON + يصدّر JSON + + + + Please select at least 1 table. + من فضلك حدّد جدولًا واحدًا على الأقل. + + + + Choose a directory + اختر دليلًا + + + + Export completed. + اكتمل التصدير. + + + + ExportSqlDialog + + + Export SQL... + تصدير SQL... + + + + Tab&le(s) + الج&دول + + + + Select All + حدّد الكلّ + + + + Deselect All + ألغِ تحديد الكلّ + + + + &Options + &خيارات + + + + Keep column names in INSERT INTO + أبقِ أسماء الأعمدة في INSERT INTO + + + + Multiple rows (VALUES) per INSERT statement + أكثر من صفّ واحد (VALUES) لكلّ إفادة INSERT + + + + Export everything + صدّر كل شيء + + + + Export schema only + صدّر المخطّط فقط + + + + Export data only + صدّر البيانات فقط + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + أبقِ المخطّط القديم (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + اكتب على المخطّط القديم (DROP TABLE، وبعدها CREATE TABLE) + + + + Please select at least one table. + من فضلك حدّد جدولًا واحدًا على الأقل. + + + + Choose a filename to export + اختر اسمًا للملف لتصديره + + + + Export completed. + اكتمل التصدير. + + + + Export cancelled or failed. + إمّا أنّ التصدير أُلغي أو أنّه فشل. + + + + ExtendedScintilla + + + + Ctrl+H + Ctrl+H + + + + Ctrl+F + Ctrl+F + + + + + Ctrl+P + Ctrl+P + + + + Find... + ابحث... + + + + Find and Replace... + ابحث واستبدل... + + + + Print... + اطبع... + + + + ExtendedTableWidget + + + Use as Exact Filter + استعملها كمرشّح كما هي + + + + Containing + تحتوي على + + + + Not containing + لا تحتوي على + + + + Not equal to + لا تساوي + + + + Greater than + أكبر من + + + + Less than + أصغر من + + + + Greater or equal + أكبر من أو تساوي + + + + Less or equal + أصغر من أو تساوي + + + + Between this and... + بين هذه و... + + + + Regular expression + تعبير نمطي + + + + Edit Conditional Formats... + حرّر التنسيقات الشرطيّة... + + + + Set to NULL + اضبطها على NULL + + + + Copy + انسخ + + + + Copy with Headers + انسخ مع الترويسات + + + + Copy as SQL + انسخ كَ‍ SQL + + + + Paste + ألصِق + + + + Print... + اطبع... + + + + Use in Filter Expression + استعملها في تعبير الترشيح + + + + Alt+Del + Alt+Del + + + + Ctrl+Shift+C + Ctrl+Shift+C + + + + Ctrl+Alt+C + Ctrl+Alt+C + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + محتوى الحافظة أكبر من المدى المحدّد. +أتريد إدراجه رغم ذلك؟ + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>لم تُحمّل كلّ البيانات. <b>أتريد تحميل كلّ البيانات قبل تحديد كلّ الصفوف؟</b><p><p>لو اخترت <b>لا</b> فلن تُحمّل أيّة بيانات أخرى ولن يُجرى هذا التحديد.<br/>لو اخترت <b>نعم</b> فعليك الانتظار وقتًا حتّى تُحمّل البيانات، ولكن التحديد هنا سيحدث</p>تحذير: قد يطلب تحميل كلّ البيانات ذاكرة كثيرة لو كانت الجداول ضخمة. + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + تعذّر ضبط التحديد على NULL. على العمود %L1 قيد ”ليس NULL“. + + + + FileExtensionManager + + + File Extension Manager + مدير امتدادات الملفات + + + + &Up + لأ&على + + + + &Down + لأ&سفل + + + + &Add + أ&ضِف + + + + &Remove + أ&زِل + + + + + Description + الوصف + + + + Extensions + الامتدادات + + + + *.extension + يمكن للمستخدم تحرير هذه، فالأفضل أن تكون إنكليزية بدون محارف يونيكود كي لا يتركها من غير قصد + *.extension + + + + FilterLineEdit + + + Filter + رشّح + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + تتيح لك مربّعات الإدخال هذه إجراء ترشيح سريع على الجدول المحدّد حاليًا. +مبدئيًا تُرشّح الصفوف التي تحتوي على نص الإدخال. +كما ويدعم البحث المُعاملات الآتية: +% حرف البدل +> أكبر من +< أصغر من +>= أكبر من أو يساوي +>= أصغر من أو يساوي += يساوي (مُطابقة تامّة) +<> لا يساوي (مُطابقة عكسية تامّة) +س~ص مدى: القيم بين ”س“ و”ص“ +/ريجِكس/ القيم التي تُطابق التعبير النمطي + + + + Clear All Conditional Formats + امسح كلّ التنسيقات الشرطيّة + + + + Use for Conditional Format + استعمله تنسيقًا شرطيًا + + + + Edit Conditional Formats... + حرّر التنسيقات الشرطيّة... + + + + Set Filter Expression + اضبط تعبير الترشيح + + + + What's This? + ما هذا؟ + + + + Is NULL + تساوي NULL + + + + Is not NULL + لا تساوي NULL + + + + Is empty + فارغة + + + + Is not empty + ليست فارغة + + + + Not containing... + لا تحتوي على... + + + + Equal to... + تساوي... + + + + Not equal to... + لا تساوي... + + + + Greater than... + أكبر من... + + + + Less than... + أصغر من... + + + + Greater or equal... + أكبر من أو تساوي... + + + + Less or equal... + أصغر من أو تساوي... + + + + In range... + في المدى... + + + + Regular expression... + تعبير نمطي... + + + + FindReplaceDialog + + + Find and Replace + البحث والاستبدال + + + + Fi&nd text: + ابح&ث عن النص: + + + + Re&place with: + ا&ستبدله بِ‍: + + + + Match &exact case + طابِق &حالة الأحرف + + + + Match &only whole words + طابِق الكلمات الكاملة &فحسب + + + + When enabled, the search continues from the other end when it reaches one end of the page + إن فعّلته فسيُواصل البحث من الطرف التالي عندما يصل إلى نهاية الصفحة + + + + &Wrap around + البحث يلت&فّ + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + إن فعّلته فسيجري البحث إلى خلف مكان المؤشّر، وإلّا فإلى أمامه + + + + Search &backwards + ابحث لل&خلف + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + إن فعّلته فلن يجري البحث على النمط المُراد إلّا في التحديد الحالي. + + + + &Selection only + الت&حديد فقط + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + إن فعّلته فسيُتعامل مع نمط البحث على أنّه تعبير يونكس نمطي. طالع <a href="https://en.wikibooks.org/wiki/Regular_Expressions">التعابير النمطية في ويكي‌كتب (بالإنجليزية)</a>. + + + + Use regular e&xpressions + استعمل الت&عابير النمطية + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + ابحث عن الحدوث التالي من موقع المؤشّر حسب الاتجاه الذي حدّده ”البحث للخلف“ + + + + &Find Next + ابحث عن ال&تالي + + + + F3 + + + + + &Replace + ا&ستبدل + + + + Highlight all the occurrences of the text in the page + أبرِز كلّ الحدوثات في نص الصفحة + + + + F&ind All + ابحث عن ال&كلّ + + + + Replace all the occurrences of the text in the page + استبدل كلّ الحدوثات في نص الصفحة + + + + Replace &All + اس&تبدل الكلّ + + + + The searched text was not found + لم يُعثر على نص البحث + + + + The searched text was not found. + لم يُعثر على نص البحث. + + + + The searched text was found one time. + عُثر على نص البحث مرّة واحدة. + + + + The searched text was found %1 times. + عُثر على نص البحث %L1 من المرّات. + + + + The searched text was replaced one time. + استُبدل نص البحث مرّة واحدة. + + + + The searched text was replaced %1 times. + استُبدل نص البحث %L1 من المرّات. + + + + ForeignKeyEditor + + + &Reset + &صفّر + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + بنود المفاتيح الأجنبية (ON UPDATE، أو ON DELETE، إلخ.) + + + + ImportCsvDialog + + + Import CSV file + استيراد ملف CSV + + + + Table na&me + ا&سم الجدول + + + + &Column names in first line + أسماء الأ&عمدة في أوّل سطر + + + + Field &separator + &فاصل الحقول + + + + , + , + + + + ; + ; + + + + + Tab + جدولات + + + + | + | + + + + Other + شيء آخر + + + + &Quote character + محرف الت&نصيص + + + + + Other (printable) + شيء آخر (مطبوع) + + + + + Other (code) + شيء آخر (كود) + + + + " + " + + + + ' + ' + + + + &Encoding + ال&ترميز + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + أأقلّم الحقول؟ + + + + Separate tables + افصل الجداول + + + + Advanced + متقدّم + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + عند استيراد قيمة فارغة من ملف CSV إلى جدول موجود يحمل قيمة مبدئية لهذا العمود، تُضاف تلك القيمة المبدئية. فعّل هذا الخيار لإدراج قيمة فارغة عوضًا عن ذلك. + + + + Ignore default &values + تجاهَل ال&قيم المبدئية + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + فعّل هذا الخيار لإيقاف الاستيراد عند محاولة استيراد قيمة فارغة في عمود ”ليس NULL“ ليس له قيمة مبدئية. + + + + Fail on missing values + يفشل الاستيراد إن كانت القيم ناقصة + + + + Disable data type detection + عطّل اكتشاف نوع البيانات + + + + Disable the automatic data type detection when creating a new table. + عطّل الاكتشاف الآلي لنوع البيانات عند إنشاء جدول جديد. + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + حين تستورد القيم إلى جدول موجود وله مفتاح أساسي أو قيود ”فريد“ أو فهرس ”فريد“، فهناك احتمال بحدوث تعارض. يتيح لك هذا الخيار تحديد الطريقة التي ستتّبعها البرمجيّة في تلك الحالة. مبدئيًا تجهض البرمجيّة الاستيراد وترجع إلى ما كانت عليه قاعدة البيانات، ولكن يمكنك أيضًا تجاهل الصفوف المتعارضة وعدم استيرادها، أو حتّى استبدال الصفّ الموجود في الجدول كلّه. + + + + Abort import + أجهِض الاستيراد + + + + Ignore row + تجاهَل الصفّ + + + + Replace existing row + استبدل الصفّ الموجود + + + + Conflict strategy + استراتيجيّة التعارضات + + + + + Deselect All + ألغِ تحديد الكلّ + + + + Match Similar + طابِق المتشابهات + + + + Select All + حدّد الكلّ + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + هناك جدول بنفس الاسم ”%L1“ بالفعل ولا يمكن الاستيراد داخل أحد الجداول الموجودة إلّا إن تطابق عدد الأعمدة. + + + + There is already a table named '%1'. Do you want to import the data into it? + هناك جدول بنفس الاسم ”%L1“ بالفعل. أتريد استيراد البيانات داخله؟ + + + + Creating restore point failed: %1 + فشل إنشاء نقطة استعادة: %L1 + + + + Creating the table failed: %1 + فشل إنشاء الجدول: %L1 + + + + importing CSV + يستورد CSV + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + أخذ استيراد الملف ”%L1“ ‏%L2 م‌ث. منها %L3 م‌ث على دالة الصفّ. + + + + Inserting row failed: %1 + فشل إدراج الصفّ: %L1 + + + + MainWindow + + + DB Browser for SQLite + متصفّح قواعد بيانات SQLite + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + بنية قاعدة البيانات + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + هذه بنية قاعدة البيانات المفتوحة. +يمكنك سحب إفادات SQL من صفّ في الكائن وإسقاطها في التطبيقات الأخرى أو إلى سيرورة أخرى من ”متصفّح قواعد بيانات SQLite“. + + + + Un/comment block of SQL code + اجعل/لا تجعل كتلة كود SQL تعليقًا + + + + Un/comment block + اجعل/لا تجعل الكتلة تعليقًا + + + + Comment or uncomment current line or selected block of code + حوّل السطر الحالي (أو كتلة الكود المحدّدة) إلى تعليق، أو ألغِ التحويل + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + اجعل الأسطر المحدّدة (أو الحالي فقط لو لم يكن هناك تحديد) تعليقًا، أو ألغِ ذلك. يتغيّر تحويل كتلة الكود كاملةً حسب أوّل سطر فيها. + + + + Ctrl+/ + Ctrl+/ + + + + Stop SQL execution + أوقِف تنفيذ SQL + + + + Stop execution + أوقِف التنفيذ + + + + Stop the currently running SQL script + أوقِف تنفيذ سكربت SQL الذي يعمل حاليًا + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + تحذير: لا يمكن قراءة pragma هذه، ولهذا استُنتجت هذه القيمة. قد تؤدّي كتابة pragma على تعويض إفادة LIKE مُعاد تعريفها وفّرها امتداد SQLite. + + + + toolBar1 + شريط الأدوات1 + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + تصفّح البيانات + + + + Export one or more table(s) to a JSON file + صدّر جدولًا أو أكثر إلى ملف JSON + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + حرّر Pragmas + + + + Edit Database &Cell + تحرير &خليّة قاعدة البيانات + + + + DB Sche&ma + م&خطّط قاعدة البيانات + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + هذه بنية قاعدة البيانات المفتوحة. +يمكنك سحب عدد من أسماء الكائنات من عمود ”الاسم“ وإسقاطها في محرّر SQL ويمكنك ضبط خصائص تلك الأسماء المُسقطة مستعملًا قائمة السياق. سيساعد هذا في كتابة إفادات SQL. +يمكنك سحب إفادات SQL من عمود ”المخطّط“ وإسقاطها في محرّر SQL أو في أيّ تطبيق آخر. + + + + &Remote + الب&عيد + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + نفّذ SQL + + + + + Execute current line + نفّذ السطر الحالي + + + + This button executes the SQL statement present in the current editor line + يُنفّذ هذا الزر إفادة SQL الظاهرة في سطر المحرّر الحالي + + + + Shift+F5 + Shift+F5 + + + + Open an existing database file in read only mode + افتح ملف قاعدة بيانات موجود في وضع القراءة فقط + + + + Opens the SQLCipher FAQ in a browser window + يفتح الأسئلة الشائعة عن SQLCipher في نافذة المتصفّح + + + + &File + مل&ف + + + + &Import + ا&ستورِد + + + + &Export + &صدّر + + + + &Edit + ت&حرير + + + + &View + من&ظور + + + + &Help + م&ساعدة + + + + &Tools + أ&دوات + + + + DB Toolbar + شريط قاعدة البيانات + + + + SQL &Log + س&جلّ SQL + + + + Show S&QL submitted by + اعرض SQL الذي ن&فّذه + + + + User + المستخدم + + + + Application + التطبيق + + + + Error Log + سجلّ الأخطاء + + + + This button clears the contents of the SQL logs + يمسح هذا الزر محتويات سجلّات SQL + + + + &Clear + ا&مسح + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + تتيح لك هذه اللوحة فحص كلّ أوامر SQL التي نفّذها التطبيق أو المستخدم + + + + &Plot + الر&سم البياني + + + + &New Database... + قاعدة بيانات &جديدة... + + + + + Create a new database file + أنشِئ ملف قاعدة بيانات جديد + + + + This option is used to create a new database file. + يُستخدم هذا الخيار لإنشاء ملف قاعدة بيانات جديد. + + + + Ctrl+N + Ctrl+N + + + + + &Open Database... + ا&فتح قاعدة بيانات... + + + + + + + + Open an existing database file + افتح ملف قاعدة بيانات موجود + + + + + + This option is used to open an existing database file. + يُستخدم هذا الخيار لفتح ملف قاعدة بيانات موجود. + + + + Ctrl+O + Ctrl+O + + + + &Close Database + أ&غلِق قاعدة البيانات + + + + This button closes the connection to the currently open database file + يُغلق هذا الزر الاتصال بملف قاعدة البيانات المفتوح حاليًا + + + + + Ctrl+W + Ctrl+W + + + + &Revert Changes + أرجِ&ع التعديلات + + + + + Revert database to last saved state + أرجِع قاعدة البيانات إلى آخر حالة محفوظة + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + يُستعمل هذا الخيار لإرجاع ملف قاعدة البيانات إلى آخر حالة محفوظة له. ستفقد كلّ التعديلات عليه منذ آخر عملية حفظ أجريتها. + + + + &Write Changes + ا&كتب التعديلات + + + + + Write changes to the database file + اكتب التعديلات في ملف قاعدة البيانات + + + + This option is used to save changes to the database file. + يُستعمل هذا الخيار لكتابة التعديلات في ملف قاعدة البيانات. + + + + Ctrl+S + Ctrl+S + + + + Compact &Database... + رُصّ &قاعدة البيانات + + + + Compact the database file, removing space wasted by deleted records + رُصّ ملف قاعدة البيانات، مُزيلًا المساحة الضائعة بسبب حذف السجلّات + + + + + Compact the database file, removing space wasted by deleted records. + رُصّ ملف قاعدة البيانات، مُزيلًا المساحة الضائعة بسبب حذف السجلّات. + + + + E&xit + ا&خرج + + + + Ctrl+Q + Ctrl+Q + + + + &Database from SQL file... + &قاعدة بيانات من ملف SQL... + + + + Import data from an .sql dump text file into a new or existing database. + استورِد بيانات من ملف ‎.sql نصي مفرّغ إلى قاعدة بيانات جديدة أو موجودة. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + يتيح لك هذا الخيار استيراد البيانات من ملف ‎.sql نصي مفرّغ إلى قاعدة بيانات جديدة أو موجودة. يمكن إنشاء ملفات SQL المفرّغة في أغلب محرّكات قواعد البيانات، بما فيها MySQL وPostgreSQL. + + + + &Table from CSV file... + ج&دولًا من ملف CSV... + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + افتح مرشدًا يساعدك في استيراد البيانات من ملف نصي مقسوم بفواصل إلى جدول قاعدة البيانات. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + افتح مرشدًا يساعدك في استيراد البيانات من ملف نصي مقسوم بفواصل إلى جدول قاعدة البيانات. يمكن إنشاء ملفات CSV في أغلب تطبيقات قواعد البيانات والجداول الممتدّة. + + + + &Database to SQL file... + &قاعدة بيانات إلى ملف SQL... + + + + Export a database to a .sql dump text file. + صدّر قاعدة بيانات إلى ملف ‎.sql نصي مفرّغ. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + يتيح لك هذا الخيار تصدير قاعدة بيانات إلى ملف ‎.sql نصي مفرّغ. يمكن لملفات SQL المفرّغة احتواء كلّ البيانات الضرورية لإعادة إنشاء قاعدة البيانات في أغلب محرّكات قواعد البيانات، فما فيها MySQL وPostgreSQL. + + + + &Table(s) as CSV file... + الج&داول كملف CSV... + + + + Export a database table as a comma separated text file. + صدّر جدول قاعدة بيانات كملف نصي مقسوم بفواصل. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + صدّر جدول قاعدة بيانات كملف نصي مقسوم بفواصل، جاهز ليُستورد إلى تطبيقات قواعد البيانات أو الجداول الممتدّة الأخرى. + + + + &Create Table... + أ&نشِئ جدولًا... + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + افتح مرشد إنشاء الجدول، حيث تستطيع تحديد اسم وحقول للجدول الجديد في قاعدة البيانات + + + + &Delete Table... + ا&حذف الجدول... + + + + + Delete Table + احذف الجدول + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + افتح مرشد حذف الجدول، حيث يمكنك تحديد جدول قاعدة البيانات الذي سيُحذف. + + + + &Modify Table... + &عدّل الجدول... + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + افتح مرشد تعديل الجدول، حيث يمكنك تغيير اسم أحد الجداول الموجودة. يمكنك أيضًا إضافة حقول أو حذفها إلى ومن الجدول، كما وتعديل أسماء الحقول وأنواعها. + + + + Create &Index... + أنشِئ &فهرسًا... + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + افتح جدول إنشاء الفهارس، حيث يمكنك تحديد فهرس جديد في جدول قاعدة بيانات موجود. + + + + &Preferences... + التف&ضيلات... + + + + + Open the preferences window. + افتح نافذة التفضيلات. + + + + &DB Toolbar + شريط &قاعدة البيانات + + + + Shows or hides the Database toolbar. + يعرض أو يُخفي شريط قاعدة البيانات.. + + + + Ctrl+T + Ctrl+T + + + + Open SQL file(s) + افتح ملفات SQL + + + + This button opens files containing SQL statements and loads them in new editor tabs + يفتح هذا الزر ملفات تحتوي إفادات SQL ويحمّلها في ألسنة محرّر جديدة + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + يتيح لك هذا الزر حفظ كلّ الإعدادات المرتبطة بقاعدة البيانات المفتوحة في ملف مشروع «متصفّح قواعد بيانات SQLite» + + + + This button lets you open a DB Browser for SQLite project file + يتيح لك هذا الزر فتح ملف مشروع «متصفّح قواعد بيانات SQLite» + + + + Browse Table + تصفّح الجدول + + + + W&hat's This? + ما ه&ذا؟ + + + + Ctrl+F4 + Ctrl+F4 + + + + Shift+F1 + Shift+F1 + + + + Execute all/selected SQL + نفّذ كلّ إفادات SQL أو المحدّدة فقط + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + يُنفّذ هذا الزر إفادات SQL المحدّدة حاليًا. إن لم تحدّد شيئًا فستُنفّذ كلّ إفادات SQL. + + + + &Load Extension... + &حمّل امتدادًا... + + + + Execute line + نفّذ السطر + + + + &Wiki + الوي&كي + + + + F1 + + + + + Bug &Report... + أبلِغ عن علّ&ة... + + + + Feature Re&quest... + ا&طلب ميزة... + + + + Web&site + موقع الو&ب + + + + &Donate on Patreon... + تبرّع &عبر باتريون... + + + + Open &Project... + افتح م&شروعًا... + + + + &Attach Database... + أر&فِق قاعدة بيانات... + + + + + Add another database file to the current database connection + أضِف ملف قاعدة بيانات آخر إلى اتصال قاعدة البيانات الحالي + + + + This button lets you add another database file to the current database connection + يتيح لك هذا الزر إضافة ملف قاعدة بيانات آخر إلى اتصال قاعدة البيانات الحالي + + + + &Set Encryption... + ا&ضبط التعمية... + + + + SQLCipher &FAQ + أ&سئلة شائعة عن SQLCipher + + + + Table(&s) to JSON... + الج&دول/الجداول إلى JSON... + + + + Open Data&base Read Only... + افتح قاع&دة بيانات للقراءة فقط... + + + + Ctrl+Shift+O + Ctrl+Shift+O + + + + Save results + احفظ النتائج + + + + Save the results view + احفظ منظور النتائج + + + + This button lets you save the results of the last executed query + يتيح لك هذا الزر حفظ نتائج آخر استعلام نُفّذ + + + + + Find text in SQL editor + ابحث عن النصوص في محرّر SQL + + + + Find + ابحث + + + + This button opens the search bar of the editor + يفتح هذا الزر شريط البحث للمحرّر + + + + Ctrl+F + Ctrl+F + + + + + Find or replace text in SQL editor + ابحث أو استبدل النصوص في محرّر SQL + + + + Find or replace + ابحث أو استبدل + + + + This button opens the find/replace dialog for the current editor tab + يفتح هذا الزر مربّع حوار البحث والاستبدال للسان المحرّر الحالي + + + + Ctrl+H + Ctrl+H + + + + Export to &CSV + &صدّر بنسق CSV + + + + Save as &view + احفظ كمن&ظور + + + + Save as view + احفظ كمنظور + + + + Shows or hides the Project toolbar. + اعرض أو أخفِ شريط أدوات المشروع. + + + + Extra DB Toolbar + شريط أدوات قواعد البيانات الإضافي + + + + New In-&Memory Database + قاعدة بيانات جديدة في ال&ذاكرة + + + + Drag && Drop Qualified Names + اسحب وأسقِط الأسماء المؤهّلة + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + استخدم الأسماء المؤهّلة (مثل ‎"Table"."Field"‎) عند سحب الكائنات وإسقاطها في المحرّر. + + + + Drag && Drop Enquoted Names + اسحب وأسقِط الأسماء مقتبسةً + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + استخدم المُعرّفات مهرّبة (مثلًا "Table1") عند سحب الكائنات وإسقاطها في المحرّر + + + + &Integrity Check + فحص ال&سلامة + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + يُشغّل integrity_check pragma على قاعدة البيانات المفتوحة ويُعيد النتائج في لسان ”نفّذ SQL“. يُجري pragma فحص سلامة على قاعدة البيانات كاملةً. + + + + &Foreign-Key Check + فحص الم&فتاح الأجنبي + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + يُشغّل foreign_key_check pragma على قاعدة البيانات المفتوحة ويُعيد النتائج في لسان ”نفّذ SQL“ + + + + &Quick Integrity Check + فحص سلام&ة سريع + + + + Run a quick integrity check over the open DB + يُشغّل فحص سلامة سريع على قاعدة البيانات المفتوحة + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + يُشغّل quick_check pragma على قاعدة البيانات المفتوحة ويُعيد النتائج في لسان ”نفّذ SQL“. يُجري هذا الأمر أغلب ما تُجريه PRAGMA integrity_check إلّا أنّه أسرع. + + + + &Optimize + ح&سّن + + + + Attempt to optimize the database + حاوِل تحسين قاعدة البيانات + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + يُشغّل optimize pragma على قاعدة البيانات المفتوحة. قد تؤدّي pragma إلى إجراء بعض التحسينات لها أن تُحسّن من أداء الاستعلامات مستقبلًا. + + + + + Print + اطبع + + + + Print text from current SQL editor tab + اطبع النص من لسان محرّر SQL الحالي + + + + Open a dialog for printing the text in the current SQL editor tab + افتح مربّع حوار طباعة النص في لسان محرّر SQL الحالي + + + + Print the structure of the opened database + اطبع بنية قاعدة البيانات المفتوحة + + + + Open a dialog for printing the structure of the opened database + افتح مربّع حوار طباعة بنية قاعدة البيانات المفتوحة + + + + &Save Project As... + احف&ظ المشروع كَ‍... + + + + + + Save the project in a file selected in a dialog + احفظ المشروع في ملف تحدّده من مربّع حوار + + + + Save A&ll + احفظ ال&كلّ + + + + + + Save DB file, project file and opened SQL files + احفظ ملف قاعدة البيانات وملف المشروع وملفات SQL المفتوحة + + + + Ctrl+Shift+S + Ctrl+Shift+S + + + + &Recently opened + المفتوحة حدي&ثًا + + + + Open &tab + افتح ل&سانًا + + + + + Project Toolbar + شريط أدوات المشروع + + + + Extra DB toolbar + شريط أدوات قواعد البيانات الإضافي + + + + + + Close the current database file + أغلِق ملف قاعدة البيانات الحالي + + + + &About + &عن + + + + This button opens a new tab for the SQL editor + يفتح هذا الزر لسانًا جديدًا لمحرّر SQL + + + + &Execute SQL + ن&فّذ SQL + + + + + + Save SQL file + احفظ ملف SQL + + + + Ctrl+E + Ctrl+E + + + + Export as CSV file + صدّر كملف بنسق CSV + + + + Export table as comma separated values file + صدّر الجدول كملف نصي مقسوم بفواصل + + + + Sa&ve Project + احف&ظ المشروع + + + + + Save the current session to a file + احفظ الجلسة الحالية في ملف + + + + + Load a working session from a file + حمّل جلسة عمل من ملف + + + + + Save SQL file as + احفظ ملف SQL كَ‍ + + + + This button saves the content of the current SQL editor tab to a file + يحفظ هذا الزر محتويات لسان محرّر SQL الحالي في ملف + + + + &Browse Table + ت&صفّح الجدول + + + + Copy Create statement + انسخ إفادة الإنشاء + + + + Copy the CREATE statement of the item to the clipboard + انسخ إفادة CREATE للعنصر إلى الحافظة + + + + Ctrl+Return + Ctrl+Return + + + + Ctrl+L + Ctrl+L + + + + + Ctrl+P + Ctrl+P + + + + Ctrl+D + Ctrl+D + + + + Ctrl+I + Ctrl+I + + + + Encrypted + معمّاة + + + + Database is encrypted using SQLCipher + قاعدة البيانات معمّاة بامتداد SQLCipher + + + + Read only + للقراءة فقط + + + + Database file is read only. Editing the database is disabled. + ملف قاعدة البيانات للقراءة فقط. تحرير قاعدة البيانات معطّل. + + + + Database encoding + ترميز قاعدة البيانات + + + + + Choose a database file + اختر ملف قاعدة بيانات + + + + + + Choose a filename to save under + اختر اسمًا للملف لحفظه به + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + خطأ أثناء حفظ ملف قاعدة البيانات. هذا يعني أنّه تعذّر حفظ كلّ التغييرات في قاعدة البيانات. عليك حلّ الخطأ الآتي أوّلًا: + +%L1 + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + أمتأكّد من التراجع عن كلّ التعديلات التي أجريتها على ملف قاعدة البيانات ”%L1“ منذ آخر حفظ؟ + + + + Choose a file to import + اختر ملفًا لاستيراده + + + + Text files(*.sql *.txt);;All files(*) + الملفات النصية(*.sql *.txt);;كلّ الملفات(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + أتريد إنشاء ملف قاعدة بيانات جديد ليحتفظ بالبيانات المستوردة؟ +إن كانت إجابتك ”لا“ فسنحاول استيراد البيانات من ملف SQL إلى قاعدة البيانات الحالية. + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + ما زلت تنفّذ إفادات SQL. بإغلاق قاعدة البيانات الآن تكون أوقفت التنفيذ وقد يترك ذلك قاعدة البيانات في حال غير مستقرّة. أمتأكّد من إغلاق قاعدة البيانات؟ + + + + Do you want to save the changes made to the project file '%1'? + أتريد حفظ التعديلات التي أجريتها في ملف المشروع ”%L1“؟ + + + + File %1 already exists. Please choose a different name. + الملف %L1 موجود بالفعل. من فضلك اختر اسمًا آخر. + + + + Error importing data: %1 + خطأ أثناء استيراد البيانات: %L1 + + + + Import completed. + اكتمل الاستيراد. + + + + Delete View + احذف المنظور + + + + Modify View + عدّل المنظور + + + + Delete Trigger + احذف المحفّز + + + + Modify Trigger + عدّل المحفّز + + + + Delete Index + احذف الفهرس + + + + Modify Index + عدّل الفهرس + + + + Modify Table + عدّل الجدول + + + + Do you want to save the changes made to SQL tabs in a new project file? + أتريد حفظ التعديلات التي أجريتها على ألسنة SQL في ملف مشروع جديد؟ + + + + Do you want to save the changes made to the SQL file %1? + أتريد حفظ التعديلات التي أجريتها على ملف SQL بالاسم ”%L1“؟ + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + ما زلت تنفّذ إفادات SQL في هذا اللسان. بإغلاق قاعدة البيانات الآن تكون أوقفت التنفيذ وقد يترك ذلك قاعدة البيانات في حال غير مستقرّة. أمتأكّد من إغلاق هذا اللسان؟ + + + + Could not find resource file: %1 + تعذّر العثور على ملف الموارد: %L1 + + + + Choose a project file to open + اختر ملف مشروع لفتحه + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + يستعمل ملف المشروع هذا نسق ملفات قديم إذ أُنشأ باستعمال «متصفّح قواعد بيانات SQLite» بإصدارة ٣٫١٠ أو أقل. تحميل نسق الملفات هذا مدعوم بشكل كلي حتّى الآن، ولكنّنا ننصح بتحويل كلّ ملفات المشاريع لديك لتستعمل النسق الجديد لأن دعم النسق القديمة قد ينتهي في المستقبل. يمكنك تحويل ملفاتك بفتحها وإعادة حفظها فحسب. + + + + Could not open project file for writing. +Reason: %1 + تعذّر فتح ملف المشروع للكتابة. +السبب: %L1 + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + سيؤّدي ضبط قيم PRAGMA إلى إيداع المعاملة الحالية. +أمتأكّد؟ + + + + Window Layout + تخطيط النافذة + + + + Reset Window Layout + صفّر تخطيط النافذة + + + + Alt+0 + Alt+0 + + + + Simplify Window Layout + بسّط تخطيط النافذة + + + + Shift+Alt+0 + Shift+Alt+0 + + + + Dock Windows at Bottom + ارصف النوافذ بالأسفل + + + + Dock Windows at Left Side + ارصف النوافذ على اليسار + + + + Dock Windows at Top + ارصف النوافذ بالأعلى + + + + The database is currenctly busy. + قاعدة البيانات مشغولة حاليًا. + + + + Click here to interrupt the currently running query. + انقر هنا لمقاطعة الاستعلام الذي يعمل حاليًا. + + + + Could not open database file. +Reason: %1 + تعذّر فتح ملف قاعدة البيانات. +السبب: %L1 + + + + In-Memory database + قاعدة بيانات في الذاكرة + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + أمتأكّد من حذف الجدول ”%L1“؟ +ستفقد كلّ البيانات المرتبطة بالجدول. + + + + Are you sure you want to delete the view '%1'? + أمتأكّد من حذف المنظور ”%L1“؟ + + + + Are you sure you want to delete the trigger '%1'? + أمتأكّد من حذف المحفّز ”%L1“؟ + + + + Are you sure you want to delete the index '%1'? + أمتأكّد من حذف الفهرس ”%L1“؟ + + + + Error: could not delete the table. + خطأ: تعذّر حذف الجدول. + + + + Error: could not delete the view. + خطأ: تعذّر حذف المنظور. + + + + Error: could not delete the trigger. + خطأ: تعذّر حذف المحفّز. + + + + Error: could not delete the index. + خطأ: تعذّر حذف الفهرس. + + + + Message from database engine: +%1 + الرسالة من محرّك قواعد البيانات: +%L1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + تحرير الجدول يطلب حفظ كلّ التغييرات المرجأة الآن. +أمتأكّد من حفظ قاعدة البيانات؟ + + + + Error checking foreign keys after table modification. The changes will be reverted. + خطأ أثناء فحص المفاتيح الأجنبية بعد تعديل الجدول. ستُرجَع التغييرات. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + لم يمرّ الجدول فحص المفتاح الأجنبي.<br/>عليك تشغيل ”أدوات -> فحص المفتاح الأجنبي“ وإصلاح المشاكل المذكورة. + + + + Edit View %1 + حرّر المنظور %L1 + + + + Edit Trigger %1 + حرّر المحفّز %L1 + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + أنت تنفّذ حقًا إفادات SQL. أتريد إيقافها لتنفيذ الإفادات الحالية بدلها؟ وقد يترك ذلك قاعدة البيانات في حال غير مستقرّة. + + + + -- EXECUTING SELECTION IN '%1' +-- + -- ينفّذ التحديد في ”%L1“ +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- ينفّذ السطر في ”%L1“ +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- ينفّذ الكلّ في ”%L1“ +-- + + + + + At line %1: + عند السطر %L1: + + + + Result: %1 + النتيجة: %L1 + + + + Result: %2 + النتيجة: %L2 + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + سيؤّدي ضبط قيم PRAGMA أو التنظيف إلى إيداع المعاملة الحالية. +أمتأكّد؟ + + + + Opened '%1' in read-only mode from recent file list + فُتح ”%L1“ بوضع القراءة فقط من قائمة الملفات المفتوحة حديثًا + + + + Opened '%1' from recent file list + فُتح ”%L1“ من قائمة الملفات المفتوحة حديثًا + + + + &%1 %2%3 + ‏&%L1 ‏‎%L2‎‏%L3 + + + + (read only) + (للقراءة فقط) + + + + Open Database or Project + افتح قاعدة بيانات أو مشروع + + + + Attach Database... + أرفِق قاعدة بيانات... + + + + Import CSV file(s)... + استورِد ملفات CSV... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + اختر الإجراء الذي تريد تطبيقه على الملفات التي أفلتّها. <br/>لاحظ أنّ خيار ”استورِد“ هو الوحيد الذي سيُعالج الملفات المتعدّدة. + اختر الإجراء الذي تريد تطبيقه على الملف الذي أفلتّه. <br/>لاحظ أنّ خيار ”استورِد“ هو الوحيد الذي سيُعالج الملفات المتعدّدة. + اختر الإجراء الذي تريد تطبيقه على الملفين الذين أفلتّهما. <br/>لاحظ أنّ خيار ”استورِد“ هو الوحيد الذي سيُعالج الملفات المتعدّدة. + اختر الإجراء الذي تريد تطبيقه على الملفات التي أفلتّها. <br/>لاحظ أنّ خيار ”استورِد“ هو الوحيد الذي سيُعالج الملفات المتعدّدة. + اختر الإجراء الذي تريد تطبيقه على الملفات التي أفلتّها. <br/>لاحظ أنّ خيار ”استورِد“ هو الوحيد الذي سيُعالج الملفات المتعدّدة. + اختر الإجراء الذي تريد تطبيقه على الملفات التي أفلتّها. <br/>لاحظ أنّ خيار ”استورِد“ هو الوحيد الذي سيُعالج الملفات المتعدّدة. + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + أتريد حفظ التعديلات التي أجريتها على ألسنة SQL في ملف المشروع ”%L1“؟ + + + + Project saved to file '%1' + حُفظ المشروع في الملف ”%L1“ + + + + This action will open a new SQL tab with the following statements for you to edit and run: + يفتح هذا الإجراء لسان SQL جديد يحتوي الإفادات الآتية لتحرّرها وتنفّذها: + + + + Busy (%1) + مشغولة (%L1) + + + + Rename Tab + غيّر اسم اللسان + + + + Duplicate Tab + كرّر اللسان + + + + Close Tab + أغلِق اللسان + + + + Opening '%1'... + يفتح ”%L1“... + + + + There was an error opening '%1'... + خطأ أثناء فتح ”%L1“... + + + + Value is not a valid URL or filename: %1 + القيمة ليست عنوانًا ولا اسم ملف صالح: %L1 + + + + %1 rows returned in %2ms + أُعيد من الصفوف %L1 خلال %L2 م‌ث + + + + Choose text files + اختر ملفات نصية + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + اكتمل الاستيراد. انتُهكت بعض قيود المفتاح الأجنبي. من فضلك أصلِحها قبل الحفظ. + + + + Select SQL file to open + اختر ملف SQL لفتحه + + + + Select file name + اختر اسم الملف + + + + Select extension file + اختر ملف الامتداد + + + + Extension successfully loaded. + نجح تحميل الامتداد. + + + + Error loading extension: %1 + خطأ أثناء تحميل الامتداد: %L1 + + + + + Don't show again + لا تعرض ثانيةً + + + + New version available. + تتوفّر إصدارة جديدة. + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + تتوفّر إصدارة جديدة من «متصفّح قواعد بيانات SQLite» ‏(%L1٫‏%L2٫‏%L3).<br/><br/>من فضلك نزّلها من <a href='%4'>%L4</a>. + + + + Collation needed! Proceed? + قواعد مقارنة المحارف مطلوبة! أنتابع؟ + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + يحتاج أحد الجداول في قاعدة البيانات هذه دالة قواعد مقارنة المحارف Collation الخاصّة ”%L1“ والتي لا يستطيع البرنامج توفيرها دون معلومات أخرى. +احذر إن اخترت المتابعة، فقد تحدث أمور غير حسنة لقاعدة البيانات. +خُذ نسخة احتياطيّة! + + + + creating collation + يُنشئ قواعد مقارنة المحارف + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + ضع اسمًا جديدًا للسان SQL. استخدم محرف ”&&“ ليُتاح استخدام المحرف الذي يليه كاختصار لوحة مفاتيح. + + + + Please specify the view name + من فضلك اختر اسم المنظور + + + + There is already an object with that name. Please choose a different name. + هناك كائن بنفس الاسم. من فضلك اختر اسمًا آخر. + + + + View successfully created. + نجح إنشاء المنظور. + + + + Error creating view: %1 + خطأ أثناء إنشاء المنظور: %L1 + + + + This action will open a new SQL tab for running: + سيفتح هذا الإجراء لسان SQL جديد لتشغيل: + + + + Press Help for opening the corresponding SQLite reference page. + انقر ”مساعدة“ لفتح صفحة SQLite المرجعية المناسبة. + + + + DB Browser for SQLite project file (*.sqbpro) + ملف مشروع «متصفّح قواعد بيانات SQLite» ‏(*.sqbpro) + + + + Execution finished with errors. + اكتمل التنفيذ وحدثت أخطاء. + + + + Execution finished without errors. + اكتمل التنفيذ دون أخطاء. + + + + NullLineEdit + + + Set to NULL + اضبطه على NULL + + + + Alt+Del + Alt+Del + + + + PlotDock + + + Plot + رسم بياني + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + تعرض هذه اللوحة قائمة الأعمدة للمجدول الذي تتصفّحه حاليًا أو للاستعلام الذي نُفّذ حديثًا. يمكنك تحديد الأعمدة التي تريد استخدامها كمحاور س أو ص للوحة الرسم البياني أدناه. يعرض الجدول نوع المحور المكتشف والذي سيؤثّر على الرسم البياني الناتج. يمكنك تحديد الأعمدة العددية فقط لمحور ص، عكس محور س حيث يمكنك تحديد:<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">تاريخ/وقت</span>: السلاسل النصية التي لها التنسيق ”yyyy-MM-dd hh:mm:ss“ أو ”yyyy-MM-ddThh:mm:ss“</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">تاريخ</span>: السلاسل النصية التي لها التنسيق ”yyyy-MM-dd“</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">وقت</span>: السلاسل النصّية التي لها التنسيق ”hh:mm:ss“</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">لصيقة</span>: السلاسل النصية التي لها تنسيقات أخرى. تحديد هذا العمود كمحور x سيُنتج رسم بياني بأشرطة حيث قيم الأعمدة ستكون لصيقات للأشرطة</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">عدد</span>: قيم عددية صحيحة أو حقيقية</li></ul>بنقر خلايا ص مزدوجًا يمكنك تغيير اللون المستخدم لذلك الرسم. + + + + Columns + الأعمدة + + + + X + س + + + + Y1 + ص1 + + + + Y2 + ص2 + + + + Axis Type + نوع المحور + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + هنا تجد الرسم البياني المرسوم عند تحديد قيم x و y أعلاه. + +انقر النقاط لتحديدها في الرسم البياني والجدول. انقر مع Ctrl لتحديد مدًى من النقاط. + +استخدم عجلة الفأرة للتقريب والإبعاد، وحرّك الفأرة لتغيير مدى المحور. + +اختر المحاور أو لصيقات المحاور لتحريكها أو قرّب/بعّد بذاك الاتجاه فحسب. + + + + Line type: + نوع الخطوط: + + + + + None + بلا + + + + Line + خط + + + + StepLeft + عتبة يسرى + + + + StepRight + عتبة يمنى + + + + StepCenter + عتبة وسطى + + + + Impulse + نبض + + + + Point shape: + شكل النقط: + + + + Cross + علامة ضرب + + + + Plus + علامة جمع + + + + Circle + دائرة + + + + Disc + قرص + + + + Square + مربّع + + + + Diamond + معيّن + + + + Star + نجمة + + + + Triangle + مثلّث + + + + TriangleInverted + مثلّث مقلوب + + + + CrossSquare + علامة ضرب في مربّع + + + + PlusSquare + علامة جمع في مربّع + + + + CrossCircle + علامة ضرب في دائرة + + + + PlusCircle + علامة جمع في دائرة + + + + Peace + رمز السلام + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <p>احفظ الرسم البياني الحالي...</p><p>نسق الملف يحدّده الامتداد (png وjpg وpdf وbmp)</p> + + + + Save current plot... + احفظ الرسم البياني الحالي... + + + + + Load all data and redraw plot + حمّل كلّ البيانات وأعِد رسم الرسم البياني + + + + + + Row # + رقم الصف + + + + Copy + انسخ + + + + Print... + اطبع... + + + + Show legend + اعرض مفتاح الرسم + + + + Stacked bars + أشرطة مرصوصة + + + + Date/Time + تاريخ/وقت + + + + Date + تاريخ + + + + Time + وقت + + + + + Numeric + عدد + + + + Label + لصيقة + + + + Invalid + غير صالح + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + حمّل كلّ البيانات وأعِد رسم الرسم البياني. +تحذير: لم تُجلب كلّ البيانات من الجدول بسبب استعمال آليّة جلب جزئية. + + + + Choose an axis color + اختر لونًا للمحور + + + + Choose a filename to save under + اختر اسمًا للملف لحفظه + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;كلّ الملفات(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + توجد منحنيات في هذا الرسم البياني ولا يمكن تطبيق نمط الخطوط المحدّد إلّا على الرسوم البيانية المفروزة حسب س. إمّا أن تفرز الجدول أو الاستعلام حسب س لإزالة المنحنيات أو تحديد أحد الأنماط التي تدعمها المنحنيات: ”بلا“ أو ”خط“. + + + + Loading all remaining data for this table took %1ms. + أخذ تحميل كلّ البيانات الباقية لهذا الجدول %L1 م‎ث. + + + + PreferencesDialog + + + Preferences + التفضيلات + + + + &General + &عام + + + + Remember last location + تذكّر آخر مكان + + + + Always use this location + استخدم هذا المكان دائمًا + + + + Remember last location for session only + تذكّر آخر مكان لهذه الجلسة فقط + + + + + + ... + ... + + + + Default &location + الم&كان المبدئي + + + + Lan&guage + الل&غة + + + + Automatic &updates + الت&حديثات الآلية + + + + + + + + + + + + enabled + مفعّلة + + + + Show remote options + اعرض خيارات البعيد + + + + &Database + &قاعدة البيانات + + + + Database &encoding + &ترميز قاعدة البيانات + + + + Open databases with foreign keys enabled. + افتح قواعد البيانات والمفاتيح الأجنبية مفعّلة. + + + + &Foreign keys + الم&فاتيح الأجنبية + + + + Remove line breaks in schema &view + أزِل كاسرات الأسطر في من&ظور المخطّط + + + + Prefetch block si&ze + &حجم الكتلة لجلبها مسبقًا + + + + SQ&L to execute after opening database + إ&فادة SQL لتُنفّذ بعد فتح قاعدة البيانات + + + + Default field type + نوع الحقول المبدئي + + + + Data &Browser + مت&صفّح البيانات + + + + Font + الخط + + + + &Font + ال&خط + + + + Content + المحتوى + + + + Symbol limit in cell + أقصى عدد من الرموز في كلّ خليّة + + + + NULL + NULL + + + + Regular + العادية + + + + Binary + البيانات الثنائيّة + + + + Background + الخلفية + + + + Filters + المرشّحات + + + + Threshold for completion and calculation on selection + عتبة إكمال النصوص والحساب + + + + Show images in cell + اعرض الصور في الخلايا + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + فعّل هذا الخيار لعرض معاينة كائنات BLOB التي فيها بيانات صور داخل الخلايا. ولكن يمكن أن يؤثّر هذا على أداء متصفّح البيانات. + + + + Escape character + محرف الهروب + + + + Delay time (&ms) + وقت التأخير (&م‌ث) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + اضبط وقت انتظار قبل تطبيق قيمة المرشّح الجديدة. يمكن ضبطه إلى القيمة صِفر لتعطيل الانتظار. + + + + &SQL + م&حرّر SQL + + + + Settings name + الاسم في الإعدادات + + + + Context + السياق + + + + Colour + اللون + + + + Bold + ثخين + + + + Italic + مائل + + + + Underline + مسطّر + + + + Keyword + الكلمات المفتاحية + + + + Function + الدوال + + + + Table + الجداول + + + + Comment + التعليقات + + + + Identifier + المعرّفات + + + + String + السلاسل النصية + + + + Current line + السطر الحالي + + + + SQL &editor font size + حجم الخط في م&حرّر SQL + + + + Tab size + حجم التبويبات + + + + SQL editor &font + &خط محرّر SQL + + + + Error indicators + مؤشّرات الأخطاء + + + + Hori&zontal tiling + التراتب أف&قيًا + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + إن فعّلته فسترى محرّر أكواد SQL ومنظور جدول النتائج جنبًا إلى جنب بدلًا من أن يكونان فوق بعض. + + + + Code co&mpletion + إ&كمال الكود + + + + Toolbar style + نمط شريط الأدوات + + + + + + + + Only display the icon + اعرض الأيقونة فحسب + + + + + + + + Only display the text + اعرض النص فحسب + + + + + + + + The text appears beside the icon + يظهر النص بجانب الأيقونة + + + + + + + + The text appears under the icon + يظهر النص أسفل الأيقونة + + + + + + + + Follow the style + اتبع النمط + + + + DB file extensions + امتدادات ملفات قواعد البيانات + + + + Manage + أدِر + + + + Main Window + النافذة الرئيسية + + + + Database Structure + بنية قاعدة البيانات + + + + Browse Data + تصفّح البيانات + + + + Execute SQL + نفّذ SQL + + + + Edit Database Cell + حرّر خليّة قاعدة البيانات + + + + When this value is changed, all the other color preferences are also set to matching colors. + تُضبط كلّ تفضيلات الألوان الأخرى (متى تغيّر هذا الخيار) إلى الألوان المُطابقة للنمط. + + + + Follow the desktop style + اتبع نمط سطح المكتب + + + + Dark style + النمط الداكن + + + + Application style + نمط البرمجيّة + + + + This sets the font size for all UI elements which do not have their own font size option. + يضبط هذا حجم خط كلّ عناصر الواجهة التي لا تحدّد لنفسها حجم خط. + + + + Font size + حجم الخط + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + إن فعّلته فستُزال كاسِرات الأسطر في عمود ”المخطّط“ في لسان ”بنية قاعدة البيانات“ كما والرصيف والخرج المطبوع. + + + + Database structure font size + حجم خط بنية قاعدة البيانات + + + + Font si&ze + &حجم الخط + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + هذا أقصى عدد من العناصر المسموحة لإجراء مزايا الحساب الثقيلة من عدم ذلك. +أي أقصى عدد من الصفوف في الجدول لتفعيل إكمال القيم حسب القيم الموجودة في العمود. +وأقصى عدد من الفهارس في التحديد لحساب المجموع والمتوسّط. +يمكنك ضبطه على صِفر لتعطيل الميزة. + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + هذا أقصى عدد من الصفوف في كلّ جدول لتفعيل إكمال القيمة حسب البيانات الحالية في العمود. +يمكن ضبطه على صفر لتعطيل الإكمال. + + + + Field display + عرض الحقول + + + + Displayed &text + ال&نص المعروض + + + + + + + + + Click to set this color + انقر لضبط هذا اللون + + + + Text color + لون النص + + + + Background color + لون الخلفية + + + + Preview only (N/A) + معاينة فقط (غير متوفّر) + + + + Foreground + الأمامية + + + + SQL &results font size + حجم خط ن&تائج SQL + + + + &Wrap lines + لُ&فّ الأسطر + + + + Never + أبدًا + + + + At word boundaries + عند حدود الكلمات + + + + At character boundaries + عند حدود المحارف + + + + At whitespace boundaries + عند حدود المسافات + + + + &Quotes for identifiers + &علامات التنصيص للمُعرّفات + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + اختر آليّة التنصيص التي سيستخدمها التطبيق للمُعرّفات في كود SQL. + + + + "Double quotes" - Standard SQL (recommended) + "علامات تنصيص مزدوجة" - SQL القياسية (مستحسن) + + + + `Grave accents` - Traditional MySQL quotes + `نبر الإطالة` - علامات اقتباس MySQL التقليدية + + + + [Square brackets] - Traditional MS SQL Server quotes + [أقواس مربّعة] - علامات تنصيص خادوم SQL لِمايكروسوفت التقليدي + + + + Keywords in &UPPER CASE + الكلمات المفتاحية &كبيرة الحالة + + + + When set, the SQL keywords are completed in UPPER CASE letters. + إن فعّلته فسيجري إكمال كلمات SQL المفتاحيّة بالأحرف وحالتها كبيرة. + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + إن فعّلته فستُبرز الأسطر في كود SQL التي تسبّبت بأخطاء أثناء آخر تنفيذ وسيُشير إطار النتائج إلى الخطأ في الخلفية + + + + Close button on tabs + أزرار إغلاق على الألسنة + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + إن فعّلته فستعرض ألسنة محرّر SQL زرّ إغلاق. وبغضّ النظر عن هذا الخيار، يمكنك استعمال قائمة السياق أو اختصار لوحة المفاتيح لإغلاق تلك الألسنة. + + + + &Extensions + الامت&دادات + + + + Select extensions to load for every database: + حدّد الامتدادات لتُحمّل لكلّ قاعدة بيانات: + + + + Add extension + أضِف امتدادًا + + + + Remove extension + أزِل الامتداد + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + مع أنّ معامل REGEX مدعوم، إلّا أنّ SQLITE ليس فيها أية خوارزمية تعابير نمطية مُنجزة،<br/>بل تنادي التطبيق الجاري. ينفّذ «متصفّح قواعد بيانات SQLite» هذه الخوارزمية لك<br/>لتستعمل REGEXP دون عناء. مع ذلك، يختلف تنفيذ هذه الميزة ولربّما تحتاج استعمال<br/>واحدة أخرى، لذا فأنت حرّ في تعطيل طريقة التطبيق في التنفيذ وتحميل أيّ من تلك باستعمال<br/>إحدى الامتدادات. إعادة تشغيل التطبيق مطلوبة. + + + + Disable Regular Expression extension + عطّل ملحقة العبارات النمطية + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + توفّر SQLite دالة SQL لتحميل الامتدادات من ملف مكتبة مشتركة. فعّل هذا إن أردت استعمال دالة <span style=" font-style:italic;">load_extension()‎</span> من كود SQL.</p><p>لأسباب أمنية، تحميل الامتداد معطّل مبدئيًا ويجب تفعيله بهذا الإعداد. يمكنك دائمًا تحميل الامتدادات عبر الواجهة الرسومية، حتى لو كان هذا الخيار معطّلًا. + + + + Allow loading extensions from SQL code + اسمح بتحميل الامتدادات من كود SQL + + + + Remote + البعيد + + + + CA certificates + شهادات سلطة الشهادات + + + + Proxy + الوسيط + + + + Configure + اضبط + + + + + Subject CN + اش موضوع التعمية + + + + Common Name + الاسم الشائع + + + + Subject O + المنظّمة موضوع التعمية + + + + Organization + المنظّمة + + + + + Valid from + صالحة من + + + + + Valid to + صالحة حتى + + + + + Serial number + الرقم التسلسلي + + + + Your certificates + شهاداتك + + + + File + الملف + + + + Subject Common Name + الاسم الشائع لموضوع التعمية + + + + Issuer CN + اش المُصدِر + + + + Issuer Common Name + الاسم الشائع للمُصدِر + + + + Clone databases into + استنسخ قواعد البيانات إلى + + + + + Choose a directory + اختر دليلًا + + + + The language will change after you restart the application. + ستتغيّر اللغة بعد إعادة تشغيل التطبيق. + + + + Select extension file + اختر ملف الامتداد + + + + Extensions(*.so *.dylib *.dll);;All files(*) + الامتدادات(*.so *.dylib *.dll);;كلّ الملفات(*) + + + + Import certificate file + استورِد ملف شهادة + + + + No certificates found in this file. + لم تُعثر على شهادات في هذا الملف. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + أمتأكّد من إزالة هذه الشهادة؟ ستُحذف كلّ بيانات الشهادة من إعدادات التطبيق! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + أمتأكّد من مسح كلّ الإعدادات المحفوظة؟ +ستفقد كلّ التفضيلات لديك وستُستعمل القيم المبدئية. + + + + ProxyDialog + + + Proxy Configuration + ضبط الوسيط + + + + Pro&xy Type + &نوع الوسيط + + + + Host Na&me + ا&سم المُضيف + + + + Port + المنفذ + + + + Authentication Re&quired + الاستيثاق م&طلوب + + + + &User Name + اسم المست&خدم + + + + Password + كلمة السر + + + + None + بلا وسيط + + + + System settings + إعدادات النظام + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + Error importing data + خطأ في استيراد البيانات + + + + from record number %1 + من السجلّ رقم %L1 + + + + . +%1 + . +%L1 + + + + Importing CSV file... + يستورد ملف CSV... + + + + Cancel + ألغِ + + + + All files (*) + كلّ الملفات (*) + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + ملفات قواعد بيانات SQLite ‏(*.db *.sqlite *.sqlite3 *.db3) + + + + Left + يسار + + + + Right + يمين + + + + Center + وسط + + + + Justify + ضبط + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + ملفات قواعد بيانات SQLite ‏(*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + ملفات مشاريع «متصفّح قواعد بيانات SQLite» ‏(*.sqbpro) + + + + SQL Files (*.sql) + ملفات SQL ‏(*.sql) + + + + All Files (*) + كلّ الملفات (*) + + + + Text Files (*.txt) + ملفات النصوص (*.txt) + + + + Comma-Separated Values Files (*.csv) + ملفات القيم المقسومة بفواصل (*.csv) + + + + Tab-Separated Values Files (*.tsv) + ملفات القيم المقسومة بجدولات (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + ملفات القيم المقسومة بحروف فصل (*.dsv) + + + + Concordance DAT files (*.dat) + ‏Concordance DAT files ‏(*.dat) + + + + JSON Files (*.json *.js) + ملفات JSON ‏(*.json *.js) + + + + XML Files (*.xml) + ملفات XML ‏(*.xml) + + + + Binary Files (*.bin *.dat) + الملفات الثنائيّة (*.bin *.dat) + + + + SVG Files (*.svg) + ملفات SVG ‏(*.svg) + + + + Hex Dump Files (*.dat *.bin) + ملفات ستّ‌عشرية مفرّغة (*.dat *.bin) + + + + Extensions (*.so *.dylib *.dll) + الامتدادات (*.so *.dylib *.dll) + + + + RemoteCommitsModel + + + Commit ID + معرّف الإيداع + + + + Message + الرسالة + + + + Date + التاريخ + + + + Author + المؤلّف + + + + Size + الحجم + + + + Authored and committed by %1 + ألّفه وأودعه: %L1 + + + + Authored by %1, committed by %2 + ألّفه %L1، وأودعه %L2 + + + + RemoteDatabase + + + Error opening local databases list. +%1 + خطأ أثناء فتح قائمة قواعد البيانات المحليّة. +%L1 + + + + Error creating local databases list. +%1 + خطأ أثناء إنشاء قائمة قواعد البيانات المحليّة. +%L1 + + + + RemoteDock + + + Remote + البعيد + + + + Identity + الهويّة + + + + Push currently opened database to server + ادفع قاعدة البيانات المفتوحة حاليًا إلى الخادوم + + + + DBHub.io + DBHub.io + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + <html dir="rtl"> +<p>يمكنك في هذه اللوحة إضافة قواعد البيانات البعيدة من موقع dbhub.io إلى «متصفّح قواعد بيانات SQLite». تحتاج أولًا إلى هويّة:</p> +<ol> +<li>لِج إلى موقع dbhub.io (استعمل معلومات ولوج غِت‌هَب أو غيرها، كما ترغب)</li> +<li>انقر الزر ”لتوليد شهادة العميل“ (وهذه هي الهويّة). هكذا تحصل على ملف شهادة تحفظه على القرص المحلي لديك.</li> +<li>انتقل إلى لسان ”البعيد“ في تفضيلات «متصفّح قواعد بيانات SQLite». انقر الزر لإضافة شهادة جديدة إلى التطبيق واختر ملف الشهادة الذي نزّلته للتو.</li> +</ol> +<p>سترى الآن في لوحة ”البعيد“ هويّتك ويمكنك إضافة قواعد البيانات لتصير بعيدة.</p> +</html> + + + + Local + المحلي + + + + Current Database + قاعدة البيانات الحالية + + + + Clone + استنسخ + + + + User + المستخدم + + + + Database + قاعدة البيانات + + + + Branch + الفرع + + + + Commits + الإيداعات + + + + Commits for + إيداعات الفرع + + + + Delete Database + احذف قاعدة البيانات + + + + Delete the local clone of this database + احذف النسخة المحلية من قاعدة البيانات هذه + + + + Open in Web Browser + افتح في متصفّح الوِب + + + + Open the web page for the current database in your browser + افتح صفحة الوِب لقاعدة البيانات الحالية في المتصفّح لديك + + + + Clone from Link + استنسخ من رابط + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + استعمل هذا لتنزيل قاعدة بيانات بعيدة للتعديل عليها محليًا باستعمال المسار الموجود في صفحة الوِب لقاعدة البيانات تلك. + + + + Refresh + أنعِش + + + + Reload all data and update the views + أعِد تحميل كلّ البيانات وحدّث المناظير + + + + F5 + F5 + + + + Clone Database + استنسخ قاعدة بيانات + + + + Open Database + افتح قاعدة بيانات + + + + Open the local copy of this database + افتح النسخة المحلية من قاعدة البيانات هذه + + + + Check out Commit + اسحب الإيداع (Check out) + + + + Download and open this specific commit + نزّل هذا الإيداع بعينه وافتحه + + + + Check out Latest Commit + اسحب الإيداع الأخير (Check out) + + + + Check out the latest commit of the current branch + اسحب الإيداع الأخير (Check out) في الفرع الحالي + + + + Save Revision to File + احفظ المراجعة في ملف + + + + Saves the selected revision of the database to another file + يحفظ المراجعة المحدّدة لقاعدة البيانات في ملف آخر + + + + Upload Database + ارفع قاعدة البيانات + + + + Upload this database as a new commit + يرفع قاعدة البيانات هذه كإيداع جديد + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + تستعمل حاليًا هويّة مضمّنة في البرمجيّة وللقراءة فقط. لو أردت رفع قاعدة البيانات فعليك ضبط حسابك على DBHub.io واستعماله.<br/>أليس لديك واحد بعد؟ <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">أنشِئه الآن</span></a> واستورِد الشهادة <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">هنا</span></a> لتُشارك قواعد بياناتك.<br/>زُر <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">الموقع</span></a> للمساعدة والتفاصيل. + + + + Back + عُد + + + + Select an identity to connect + اختر هويّة للاتصال + + + + Public + عامّة + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + بهذا تُنزّل قاعدة بيانات من خادوم بعيد للتعديل عليها محليًا. +من فضلك أدخِل المسار الذي ستستنسخ القاعدة منه. +يمكنك توليده بنقر ”استنسخ قاعدة البيانات في DB4S“ +في صفحة الوِب لقاعدة البيانات التي تريد. + + + + Invalid URL: The host name does not match the host name of the current identity. + مسار غير صالح: لا يتطابق اسم المضيف مع اسم مضيف الهويّة الحالية. + + + + Invalid URL: No branch name specified. + مسار غير صالح: لم تحدّد اسم الفرع. + + + + Invalid URL: No commit ID specified. + مسار غير صالح: لم تحدّد معرّف الإيداع. + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + عدّلت النسخة المحلية من قاعدة البيانات. بجلب الإيداع فأنت تُلغي هذه التعديلات المحلية. +أمتأكّد من المواصلة؟ + + + + The database has unsaved changes. Are you sure you want to push it before saving? + في قاعدة البيانات تعديلات غير محفوظة. أمتأكّد من دفع القاعدة قبل حفظ التعديلات؟ + + + + The database you are trying to delete is currently opened. Please close it before deleting. + قاعدة البيانات التي تحاول حذفها مفتوحة حاليًا. من فضلك أغلِقها قبل حذفها. + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + بهذا تحذف النسخة المحلية من قاعدة البيانات هذه مع كلّ التعديلات التي لم تودعها بعد. أمتأكّد من حذف قاعدة البيانات هذه؟ + + + + RemoteLocalFilesModel + + + Name + الاسم + + + + Branch + الفرع + + + + Last modified + آخر تعديل + + + + Size + الحجم + + + + Commit + الإيداع + + + + File + الملف + + + + RemoteModel + + + Name + الاسم + + + + Commit + الإيداع + + + + Last modified + آخر تعديل + + + + Size + الحجم + + + + Size: + الحجم: + + + + Last Modified: + آخر تعديل: + + + + Licence: + الرخصة: + + + + Default Branch: + الفرع المبدئي: + + + + RemoteNetwork + + + Choose a location to save the file + اختر مكانًا لحفظ الملف فيه + + + + Error opening remote file at %1. +%2 + خطأ أثناء فتح الملف البعيد في %L1. +%L2 + + + + Error: Invalid client certificate specified. + خطأ: حُدّدت شهادة عميل غير صالحة. + + + + Please enter the passphrase for this client certificate in order to authenticate. + من فضلك أدخِل عبارة السر لشهادة العميل لإجراء الاستيثاق. + + + + Cancel + ألغِ + + + + Uploading remote database to +%1 + يرفع قاعدة البيانات البعيدة إلى +%L1 + + + + Downloading remote database from +%1 + ينزّل قاعدة البيانات البعيدة من +%L1 + + + + + Error: The network is not accessible. + خطأ: تعذّر الوصول إلى الشبكة. + + + + Error: Cannot open the file for sending. + خطأ: تعذّر فتح الملف لإرساله. + + + + RemotePushDialog + + + Push database + دفع قاعدة البيانات + + + + Database na&me to push to + ا&سم قاعدة البيانات الذي سيُدفع إليها + + + + Commit message + رسالة الإيداع + + + + Database licence + رخصة قاعدة البيانات + + + + Public + عامّة + + + + Branch + الفرع + + + + Force push + أجبِر الدفع + + + + Username + اسم المستخدم + + + + Database will be public. Everyone has read access to it. + ستكون قاعدة البيانات عامّة. يملك الجميع تصريح القراءة منها. + + + + Database will be private. Only you have access to it. + ستكون قاعدة البيانات خاصّة. أنت من لديك حقّ الوصول إليها لا غير. + + + + Use with care. This can cause remote commits to be deleted. + استعمله بحذر. يمكن أن يتسبّب هذا بحذف الإيداعات البعيدة. + + + + RunSql + + + Execution aborted by user + أجهض المستخدم التنفيذ + + + + , %1 rows affected + ، عدد الصفوف المتأثّرة هو %L1 + + + + query executed successfully. Took %1ms%2 + نُفّذ الاستعلام بنجاح: أخذ %L1 م‌ث%L2 + + + + executing query + ينفّذ الاستعلام + + + + SelectItemsPopup + + + A&vailable + ال&مُتاح + + + + Sele&cted + الم&حدّد + + + + SqlExecutionArea + + + Form + استمارة + + + + Find previous match [Shift+F3] + ابحث عن المطابقة السابقة [Shift+F3] + + + + Find previous match with wrapping + ابحث عن المطابقة السابقة مع الالتفاف + + + + Shift+F3 + Shift+F3 + + + + The found pattern must be a whole word + يجب أن يكون النمط محور البحث كلمة كاملة + + + + Whole Words + الكلمات الكاملة + + + + Text pattern to find considering the checks in this frame + النمط محور البحث بأخذ الفحوص في هذا الإطار بعين الاعتبار + + + + Find in editor + ابحث في المحرّر + + + + The found pattern must match in letter case + يجب أن يطابق النمط محور البحث حالة الأحرف + + + + Case Sensitive + حسّاس لحالة الأحرف + + + + Find next match [Enter, F3] + ابحث عن المطابقة التالية [Enter, F3] + + + + Find next match with wrapping + ابحث عن المطابقة التالية مع الالتفاف + + + + F3 + + + + + Interpret search pattern as a regular expression + تعامَل مع نمط البحث كتعبير نمطي + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + إن فعّلته فستتعامل البرمجيّة مع نمط البحث على أنّه تعبير يونكس نمطي. طالِع <a href="https://en.wikibooks.org/wiki/Regular_Expressions">التعابير النمطية في ويكي‌كتب (بالإنجليزية)</a>. + + + + Regular Expression + تعبير نمطي + + + + + Close Find Bar + أغلِق شريط البحث + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + نتائج آخر الإفادات المنفّذة.<br/>يمكنك طيّ هذه اللوحة واستعمال لوحة <span style=" font-style:italic;">سجلّ SQL</span> باختيار <span style=" font-style:italic;">المستخدم</span> بدل هذا. + + + + Results of the last executed statements + نتائج آخر الإفادات المنفّذة + + + + This field shows the results and status codes of the last executed statements. + يعرض هذا الحقل نتائج ورموز حالة آخر الإفادات المنفّذة. + + + + Couldn't read file: %1. + تعذّرت قراءة الملف: %L1. + + + + + Couldn't save file: %1. + تعذّر حفظ الملف: %L1. + + + + Your changes will be lost when reloading it! + ستفقد تغييراتك لو فعلت! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + عدّل برنامج آخر الملفّ ”%L1“. أتريد إعادة تحميله؟%L2 + + + + SqlTextEdit + + + Ctrl+/ + Ctrl+/ + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) ‫تُعيد الدالة abs(X) القيمة المُطلقة للمعطى العددي X. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + ‎() ‫تُعيد الدالة changes()‎ عدد الصفوف في قاعدة البيانات التي تغيّرت أو أُدرجت أو حُذفت باستخدام أحدث إفادة INSERT أو DELETE أو UPDATE أُجريت بنجاح. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) ‫تُعيد الدالة char(X1,X2,...,XN) سلسلة نصية مؤلّفة من محارفَ قيمُ نقاط رموزها اليونيكودية هي الأعداد الصحيحة بدءًا من X1 وحتّى XN بالترتيب. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) ‫تُعيد الدالة coalesce()‎ نسخة من أوّل معطًى ليس NUL، أو NULL إن كانت كلّ المعطيات تساوي NULL. + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) ‫الدالة glob(X,Y) تعادل التعبير ”Y GLOB X“. + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) تُعيد الدالة‫ ifnull()‎ نسخة من أوّل معطًى ليس NUL، أو NULL إن كان كِلا المعطيين يساويان NULL. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) ‫تبحث الدالة instr(X,Y) عن أوّل حدوث للسلسلة النصية Y داخل السلسلة النصية X وتُعيد عدد المحارف قبلها زائدًا ١، أو تُعيد القيمة صِفر إن لم توجد Y في أيّ مكان في X. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) ‫تفسّر الدالة hex()‎ المطى على أنّه BLOB وتُعيد سلسلة نصية تمثّل عرضًا ستّ‌عشري بحالة أحرف كبيرة لمحتوى كائن BLOB ذاك. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + ‎() ‫تُعيد الدالة last_insert_rowid()‎ معرّف الصف/ROWID لآخر عملية إدراج صفّ من اتصال قاعدة البيانات والتي نفّذت الدالة. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) ‫باعتبار X سلسلة نصية، تُعيد الدالة length(X) عدد المحارف (وليس البايتات) داخل X والموجودة قبل أوّل محرف NUL فيها. + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X,Y) تُستعمل الدالة‫ like()‎ لتنفيذ التعبير ”Y LIKE X“. + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) تُستعمل الدالة‫ like()‎ لتنفيذ التعبير ”Y LIKE X ESCAPE Z“. + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) ‫تُحمّل الدالة load_extension(X) امتدادات SQLite من ملف مكتبة مشتركة اسمه X. +عليك السماح باستعمال هذه الدالة من التفضيلات. + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X,Y) ‫تُحمّل الدالة load_extension(X) امتدادات SQLite من ملف مكتبة مشتركة اسمه X باستخدام نقطة الإدخال Y. +عليك السماح باستعمال هذه الدالة من التفضيلات. + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) ‫تُعيد الدالة lower(X) نسخة من السلسلة النصية X حيث محارف آسكي كلّها محوّلة إلى حالة الأحرف الصغيرة. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ‫تُزيل ltrim(X) المسافات من الجانب الأيسر للسلسلة النصية X. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) ‫تُعيد الدالة ltrim(X,Y) سلسلة نصية بإزالة كلّ المحارف التي قد تظهر في Y من الجانب الأيسر للسلسلة X. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) ‫تُعيد الدالة متعدّدة المعطيات max()‎ المعطى الذي له أكبر قيمة، أو NULL إن كان أحد المعطيات هو NULL. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) ‫تُعيد الدالة متعدّدة المعطيات min()‎ المعطى الذي له أصغر قيمة. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) ‫تُعيد الدالة nullif(X,Y) أوّل معطًى إن كانت المعطيات مختلفة، وتُعيد NULL إن كانت المعطيات متطابقة. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) ‫تعمل دالة SQL هذه printf(FORMAT,...) تمامًا مثل دالة لغة سي sqlite3_mprintf()‎ ودالة printf()‎ من مكتبة سي القياسية. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) ‫تُعيد الدالة quote(X) نص SQL حرفيّ تكون قيمة معامله مناسبة لتوضع في عبارة SQL. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + ‎() ‫تُعيد الدالة random()‎ عددًا صحيحًا عشوائيًا زائفًا بين -٩٢٢٣٣٧٢٠٣٦٨٥٤٧٧٥٨٠٨ و +٩٢٢٣٣٧٢٠٣٦٨٥٤٧٧٥٨٠٧. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) ‫تُعيد الدالة randomblob(N) كائن BLOB بحجم N بايت يحتوي على بايتات عشوائية زائفة. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) ‫تُعيد الدالة replace(X,Y,Z) سلسلة نصية باستبدال كلّ ظهور للسلسة النصية Y في السلسلة النصية X بالسلسلة النصية Z. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) تُعيد الدالة‫ round(X) قيمة X عشرية عائمة مُقرّبة إلى خانات الصِفر يمين الفاصلة العشرية. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) تُعيد الدالة‫ round(X,Y) قيمة X عشرية عائمة مُقرّبة إلى خانات Y يمين الفاصلة العشرية. + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) ‫تُزيل rtrim(X) المسافات من الجانب الأيمن للسلسلة النصية X. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) ‫تُعيد الدالة rtrim(X,Y) سلسلة نصية بإزالة كلّ المحارف التي قد تظهر في Y من الجانب الأيمن للسلسلة X. + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) ‫تُعيد الدالة soundex(X) سلسلة نصية بترميز Soundex من السلسلة النصية X. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) ‫تُعيد substr(X,Y) كلّ المحارف حتّى نهاية السلسلة النصية X بدايةً من المحرف رقم Y. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y,Z) ‫تُعيد الدالة substr(X,Y,Z) سلسلة نصية جزئية من السلسلة الدخل X والتي تبدأ بالمحرف رقم Y وبطول Z من المحارف. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + ‎() ‫تُعيد الدالة total_changes()‎ عدد الصفوف المتأثّرة بإفادة INSERT أو UPDATE أو DELETE مذ فُتح اتصال قاعدة البيانات الحالية. + + + + (X) trim(X) removes spaces from both ends of X. + (X) ‫تُزيل trim(X) المسافات من جانبي للسلسلة النصية X. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) ‫تُعيد الدالة trim(X,Y) سلسلة نصية بإزالة كلّ المحارف التي قد تظهر في Y من كِلا جانبي X. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) ‫تُعيد الدالة typeof(X) سلسلة نصية توضّح نوع بيانات التعبير X. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) ‫تُعيد دالة unicode(X) النقطة الرمزية اليونيكودية العددية لأوّل محرف من السلسلة النصية X. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) ‫تُعيد الدالة upper(X) نسخة من السلسلة النصية الدخل X حيث محارف آسكي بحالة الأحرف الكبيرة محوّلة كلّها إلى حالة الأحرف الكبيرة. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) ‫تُعيد الدالة zeroblob(N) كائن BLOB يحتوي N بايت بالمحتوى 0x00. + + + + + + + (timestring,modifier,modifier,...) + (timestring,modifier,modifier,...) + + + + (format,timestring,modifier,modifier,...) + (format,timestring,modifier,modifier,...) + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) تُعيد الدالة‫ avg()‎ القيمة المتوسّطة لكلّ X لا تساوي NULL داخل مجموعة ما. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) ‫تُعيد الدالة count(X) عدد المرات التي لا يكون فيها X يساوي NULL في مجموعة ما. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) ‫تُعيد الدالة group_concat()‎ سلسلة نصية تجمع كلّ قيم X التي لا تساوي NULL. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) ‫تُعيد الدالة group_concat()‎ سلسلة نصية تجمع كلّ قيم X التي لا تساوي NULL. إن كان المعطى Y موجودًا، فسيُستخدم كفاصل بين سيرورات X. + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) ‫تُعيد الدالة الجامعة max()‎ أكبر قيمة لكلّ القيم في المجموعة. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) ‫تُعيد الدالة الجامعة min()‎ أدنى قيمة لا تساوي NULL لكلّ القيم في المجموعة. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) ‫تُعيد الدالتان الجامعتان sum()‎ و total()‎ مجموع كل القيم التي لا تساوي NULL في المجموعة. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + ‎() ‫رقم الصفّ داخل القسم الحالي. تُرقّم الصفوف بدءًا من ١ بالترتيب الذي حدّده بند ORDER BY في تعريف النافذة، أو بترتيب اعتباطي إن لم يكن كذلك.‏ + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + ‎() ‫ناتج row_number()‎ لأوّل فرد في كلّ مجموعة - رتبة الصفّ الحالي مع الفراغات. إن لم يكن هناك بند ORDER BY، فستُعتبر كلّ الصفوف أفراد وستُعيد هذه الدالة ١ دومًا. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + ‎() ‫رقم مجموعة الأفراد للصفّ الحالي داخل القسم - رتبة الصفّ الحالي مع الفراغات. تُرقّم الأقسام بدءًا من 1 الترتيب الذي حدّده بند ORDER BY في تعريف النافذة. إن لم يوجد بند ORDER BY، فستُعتبر كلّ الصفوف أفراد وستُعيد هذه الدالة ١ دومًا. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + ‎() ب‫غضّ النظر عن الاسم، تُعيد هذه الدالة دومًا قيمة بين ٠٫٠ و١٫٠ مساويةً لِ‍ (الرتبة - ١)/(صفوف القسم - ١)، حيث ”الرتبة“ هي القيمة التي تُعيدها دالة النافذة المضمّنة rank()‎ و”صفوف القسم“ هو إجمال عدد الصفوف في القسم. إن احتوى القسم صفًا واحدًا فحسب، فستُعيد هذه الدالة ٠٫٠. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + ‎() التوزيع التصاعدي. يُحسب بالمعادلة رقم الصف/صفوف القسم، حيث ”رقم الصف“ هي القيمة التي أرجعتها‫ row_number()‎ لآخر فرد في المجموعة، و”صفوف القسم“ هي عدد الصفوف في القسم. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) ‫يُتعامل مع المعطى N على أنّه عدد صحيح. تقسم هذه الدالة القسم إلى N مجموعة إلى حد الإمكان من المساواة، وتُسند عددًا صحيحًا بين 1 وN لكل مجموعة، بالترتيب الذي حدّده بند ORDER BY، أو بترتيب اعتباطي إن كان عكس ذلك. إن كان ضروريا، فستحدث المجموعات الأكبر أولا. تُعيد هذه الدالة قيمة العدد الصحيح المُسنحدة إلى المجموعة التي هي جزء من الصف الحالي. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) ‫تُعيد ناتج تقدير التعبير expr على الصفّ السابق في القسم. أو NULL إن لم يكن هناك صفّ سابق (لأنّ الصف الحالي هو الأوّل). + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr,offset) ‫لو وُجد وسيط الإزاحة offset فيجب أن يكون عددًا صحيحًا غير سالب. في هذه الحالة تكون القيمة المُعادة هي ناتج تقدير العبارة expr للصفوف المُزاحة حسب الإزاحة قبل الصفّ الحالي في القسم. لو كانت الإزاحة صِفرًا فسيُقدّر التعبير حسب الصف الحالي. لو لم تكن هناك صفوف بالإزاحة تلك قبل الصفّ الحالي، فسيُعاد NULL. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,offset,default) ‫وإن وُجدت قيمة default فستُعاد بدل NULL لو لم يوجد الصفّ الذي حدّدته الإزاحة تلك. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) ‫تُعيد ناتج تقدير التعبير حسب الصفّ التالي في القسم. أو NLL لو لم يكن هناك واحد (إذ الصفّ الحالي هو آخر صفّ). + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,offset) ‫لو وُجد وسيط الإزاحة offset فيجب أن يكون عددًا صحيحًا غير سالب. في هذه الحالة تكون القيمة المُعادة هي ناتج تقدير العبارة expr للصفوف المُزاحة حسب الإزاحة بعد الصفّ الحالي في القسم. لو كانت الإزاحة صِفرًا فسيُقدّر التعبير حسب الصف الحالي. لو لم تكن هناك صفوف بالإزاحة تلك بعد الصفّ الحالي، فسيُعاد NULL. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) ‫تحسب دالة النوافذ (window) المضمّنة هذه إطار النافذة لكلّ صف كما تحسبها دوال الجامعة. تُعيد الدالة قيمة التعبير expr محسوبًا حسب الصف الأوّل في إطار النافذة لكلّ صف. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) ‫تحسب دالة النوافذ (window) المضمّنة هذه إطار النافذة لكلّ صف كما تحسبها دوال الجامعة. تُعيد الدالة قيمة التعبير expr محسوبًا حسب الصف الأخير في إطار النافذة لكلّ صف. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr, N) ‫تحسب دالة النوافذ (window) المضمّنة هذه إطار النافذة لكلّ صف كما تحسبها دوال الجامعة. تُعيد الدالة قيمة التعبير expr محسوبًا حسب الصف رقم N في إطار النافذة. تُرقّم الصفوف في إطارات النوافذ بدءًا بالعدد ١ حسب الترتيب الذي حدّده بند ORDER BY لو وُجد، أو بترتيب اعتباطي لو لم يوجد. ولو لم يكن هناك صف برقم N في القسم فسيُعاد NULL. + + + + SqliteTableModel + + + reading rows + يقرأ الصفوف + + + + loading... + يحمّل... + + + + References %1(%2) +Hold %3Shift and click to jump there + التفضيلات %L1‏(%L2) +اضغط %L3Shift وانقر للانتقال إلى هناك + + + + Error changing data: +%1 + خطأ أثناء تغيير البيانات: +%L1 + + + + retrieving list of columns + يجلب قائمة الأعمدة + + + + Fetching data... + يجلب البيانات... + + + + + Cancel + ألغِ + + + + TableBrowser + + + Browse Data + تصفّح البيانات + + + + &Table: + الج&دول: + + + + Select a table to browse data + اختر جدولًا لتصفّح بياناته + + + + Use this list to select a table to be displayed in the database view + استعمل هذه القائمة لاختيار الجدول الذي سيُعرض في منظور قاعدة البيانات + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + هذا هو منظور جدول قاعدة البيانات. يمكنك إجراء الآتي فيه: + - البدء بالكتابة لتحرير القيمة داخل الخط. + - النقر مزدوجًا على أيّ سجلّ لتحرير محتوياته في نافذة محرّر الخلايا. + - ضغط Alt+Del لحذف محتوى الخليّة وضبطه على NULL. + - ضغط Ctrl+"‎ لتكرار السجلّ الحالي. + - ضغط Ctrl+'‎ لنسخ القيمة من الخلية أعلاه. + - التحديد العادي وعمليات النسخ واللصق. + + + + Text pattern to find considering the checks in this frame + النمط محور البحث بأخذ الفحوص في هذا الإطار بعين الاعتبار + + + + Find in table + ابحث في الجدول + + + + Find previous match [Shift+F3] + ابحث عن المطابقة السابقة [Shift+F3] + + + + Find previous match with wrapping + ابحث عن المطابقة السابقة مع الالتفاف + + + + Shift+F3 + Shift+F3 + + + + Find next match [Enter, F3] + ابحث عن المطابقة التالية [Enter, F3] + + + + Find next match with wrapping + ابحث عن المطابقة التالية مع الالتفاف + + + + F3 + + + + + The found pattern must match in letter case + يجب أن يطابق النمط محور البحث حالة الأحرف + + + + Case Sensitive + حسّاس لحالة الأحرف + + + + The found pattern must be a whole word + يجب أن يكون النمط محور البحث كلمة كاملة + + + + Whole Cell + الخلية كاملة + + + + Interpret search pattern as a regular expression + تعامَل مع نمط البحث كتعبير نمطي + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + إن فعّلته فسيُتعامل مع نمط البحث على أنّه تعبير يونكس نمطي. طالع <a href="https://en.wikibooks.org/wiki/Regular_Expressions">التعابير النمطية في ويكي‌كتب (بالإنجليزية)</a>. + + + + Regular Expression + تعبير نمطي + + + + + Close Find Bar + أغلِق شريط البحث + + + + Text to replace with + نص الاستبدال + + + + Replace with + استبدله بِ‍ + + + + Replace next match + استبدِل المطابقة التالية + + + + + Replace + استبدل + + + + Replace all matches + استبدل كلّ المطابقات + + + + Replace all + استبدل الكلّ + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + مرّر إلى البداية + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + ينقلك هذا الزر إلى بداية منظور الجدول أعلاه. + + + + |< + |< + + + + Scroll one page upwards + مرّر صفحة واحدة للأمام + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + ينقلك هذا الزر صفحة واحدة من السجلّات لأعلى في منظور الجدول أعلاه. + + + + < + < + + + + 0 - 0 of 0 + ٠ - ٠ من أصل ٠ + + + + Scroll one page downwards + مرّر صفحة واحدة للأسفل + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + ينقلك هذا الزر صفحة واحدة من السجلّات لأسفل في منظور الجدول أعلاه. + + + + > + > + + + + Scroll to the end + مرّر إلى النهاية + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + ينقلك هذا الزر إلى نهاية منظور الجدول أعلاه. + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + انقر هنا للانتقال إلى السجلّ المحدّد + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + يُستعمل هذا الزر في التنقّل إلى رقم السطر المحدّد في منطقة ”انتقل إلى“. + + + + Go to: + انتقل إلى: + + + + Enter record number to browse + أدخِل رقم السجلّ لتصفّحه + + + + Type a record number in this area and click the Go to: button to display the record in the database view + اكتب رقم السجلّ في هذا المربّع وانقر زر ”انتقل إلى:“ لعرض السجلّ في منظور قاعدة البيانات + + + + 1 + ١ + + + + Show rowid column + اعرض عمود معرّف الصفوف + + + + Toggle the visibility of the rowid column + بدّل ظهور عمود معرّف الصفوف/rowid + + + + Unlock view editing + اسمح بتحرير المنظور + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + يتيح هذا تحرير المنظور الحالي. مع ذلك ستحتاج إلى المحفّزات المناسبة لإجراء التحرير. + + + + Edit display format + حرّر تنسيق العرض + + + + Edit the display format of the data in this column + حرّر تنسيق عرض البيانات في هذا العمود + + + + + New Record + سجلّ جديد + + + + + Insert a new record in the current table + أدرِج سجلًا جديدًا في الجدول الحالي + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + يُنشئ هذا الزر سجلًا جديدًا في قاعدة البيانات. أبقِ زر الفأرة مضغوطًا لفتح قائمة منبثقة فيها عدّة خيارات:<ul><li><span style=" font-weight:600;">سجلّ جديد</span>: لإدراج سجلّ جديد يحمل القيم المبدئية في قاعدة البيانات.</li><li><span style=" font-weight:600;">أدرِج قيم...</span>: لفتح مربّع حوار لإدخال القيم قبل إدراجها في جدول البيانات. يتيح هذا إدخال القيم حسب القيود المختلفة. يُفتح مربّع الحوار هذا أيضًا إن فشل الخيار <span style=" font-weight:600;">سجلّ جديد</span> بسبب هذه القيود.</li></ul> + + + + + Delete Record + احذف السجلّ + + + + Delete the current record + احذف السجلّ الحالي + + + + + This button deletes the record or records currently selected in the table + يحذف هذا الزر السجلّ أو السجلّات المحدّدة حاليًا في الجدول + + + + + Insert new record using default values in browsed table + أدرِج سجلًا جديدًا مستخدمًا القيم المبدئية في الجدول الذي تتصفّحه + + + + Insert Values... + أدرِج قيم... + + + + + Open a dialog for inserting values in a new record + افتح مربّع حوار لإدراج القيم في سجلّ جديد + + + + Export to &CSV + &صدّر بنسق CSV + + + + + Export the filtered data to CSV + صدّر البيانات المرشّحة إلى CSV + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + يُصدّر هذا الزر بيانات الجدول الذي تتصفّحه كما هي معروضة حاليًا (بعد المرشّحات وتنسيقات العرض وعمود الفرز) كملف CSV. + + + + Save as &view + احفظ كمن&ظور + + + + + Save the current filter, sort column and display formats as a view + احفظ المرشّح الحالي وعمود الفرز وتنسيقات العرض كمنظور + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + يحفظ هذا الزر الإعداد الحالي للجدول الذي تتصفّحه (المرشّحات وتنسيقات العرض وعمود الفرز) في منظور SQL يمكنك تصفّحه لاحقًا أو استخدامه في إفادات SQL. + + + + Save Table As... + احفظ الجدول كَ‍... + + + + + Save the table as currently displayed + احفظ الجدول كما هو معروض حاليًا + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + توفّر القائمة المنبثقة هذه الخيارات الآتية والتي تنطبق على الجدول الذي تتصفّحه والمرشّح حاليًا:<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">صدّر بنسق CSV: يُصدّر هذا الخيار البيانات في الجدول الذي تتصفّحه كما هي معروضة حاليًا (بعد المرشّحات وتنسيقات العرض وعمود الفرز) إلى ملف بنسق CSV.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">احفظ كمنظور: يحفظ هذا الخيار الإعداد الحالي للجدول الذي تتصفّحه (المرشّحات وتنسيقات العرض وعمود الفرز) في منظور SQL يمكنك تصفّحه لاحقًا أو استعماله في إفادات SQL.</li></ul> + + + + Hide column(s) + أخفِ العمود/الأعمدة + + + + Hide selected column(s) + أخفِ العمود/الأعمدة المحدّدة + + + + Show all columns + اعرض كلّ الأعمدة + + + + Show all columns that were hidden + اعرض كلّ الأعمدة التي أُخفيت + + + + + Set encoding + اضبط الترميز + + + + Change the encoding of the text in the table cells + غيّر ترميز النصوص في خلايا الجدول + + + + Set encoding for all tables + اضبط ترميز كلّ الجداول + + + + Change the default encoding assumed for all tables in the database + غيّر الترميز المبدئي المفترض في كلّ جداول قاعدة البيانات + + + + Clear Filters + امسح المرشّحات + + + + Clear all filters + امسح كلّ المرشّحات + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + يمسح هذا الزر كلّ المرشّحات المضبوطة في حقول الدخل في الترويسة للجدول الذي تتصفّحه حاليًا. + + + + Clear Sorting + امسح الفرز + + + + Reset the order of rows to the default + صفّر ترتيب الصفوف إلى المبدئيات + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + يمسح هذا الزر تريتب الأعمدة المحدّد للجدول الذي تتصفّحه حاليًا ويُعيده إلى التريب المبدئي. + + + + Print + اطبع + + + + Print currently browsed table data + اطبع بيانات الجدول الذي تتصفّحه حاليًا + + + + Print currently browsed table data. Print selection if more than one cell is selected. + اطبع بيانات الجدول الذي تتصفّحه حاليًا. اطبع التحديد إن كانت هناك أكثر من خليّة واحدة محدّدة. + + + + Ctrl+P + Ctrl+P + + + + Refresh + أنعِش + + + + Refresh the data in the selected table + أنعِش البيانات في الجدول المحدّد + + + + This button refreshes the data in the currently selected table. + يُنعش هذا الزر البيانات في الجدول المحدّد حاليًا. + + + + F5 + + + + + Find in cells + ابحث في الخلايا + + + + Open the find tool bar which allows you to search for values in the table view below. + افتح شريط أدوات البحث لتبحث عن القيم التي تريد في منظور الجدول أسفله. + + + + + Bold + ثخين + + + + Ctrl+B + Ctrl+B + + + + + Italic + مائل + + + + + Underline + مسطّر + + + + Ctrl+U + Ctrl+U + + + + + Align Right + حاذِ يمينًا + + + + + Align Left + حاذِ يسارًا + + + + + Center Horizontally + الوسط الأفقي + + + + + Justify + ضبط + + + + + Edit Conditional Formats... + حرّر التنسيقات الشرطيّة... + + + + Edit conditional formats for the current column + حرّر تنسيقات العمود الحالي الشرطيّة + + + + Clear Format + امسح التنسيق + + + + Clear All Formats + امسح كلّ التنسيقات + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + امسح كلّ تنسيق الخلايا في الخلايا المحدّدة وكلّ التنسيقات الشرطيّة في الأعمدة المحدّدة + + + + + Font Color + لون النص + + + + + Background Color + لون الخلفية + + + + Toggle Format Toolbar + اعرض/أخفِ شريط أدوات التنسيق + + + + Show/hide format toolbar + اعرض/أخفِ شريط التنسيق + + + + + This button shows or hides the formatting toolbar of the Data Browser + يعرض هذا الزر (أو يُخفي) شريط التنسيق لمتصفّح البيانات + + + + Select column + اختر عمودًا + + + + Ctrl+Space + Ctrl+Space + + + + Replace text in cells + استبدل النصوص في الخلايا + + + + Filter in any column + رشّح أيّ عمود + + + + Ctrl+R + Ctrl+R + + + + %n row(s) + + لا صفوف + صفّ واحد + صفّان اثنان + %Ln صفوف + %Ln صفًا + %Ln صفّ + + + + + , %n column(s) + + ولا أعمدة + وعمود واحد + وعمودين اثنين + و%Ln أعمدة + و%Ln عمودًا + و%Ln عمود + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . المجموع: %L1، المتوسّط: %L2، الأدنى: %L3، الأقصى: %L4 + + + + Conditional formats for "%1" + تنسيقات ”%L1“ الشرطيّة + + + + determining row count... + يحدّد عدد الصفوف... + + + + %1 - %2 of >= %3 + ‏%L1 - ‏%L2 من أصل >= ‏%L3 + + + + %1 - %2 of %3 + ‏%L1 - ‏%L2 من أصل %L3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + من فضلك أدخِل مفتاحًا أساسيًا زائفًا (pseudo) لتفعيل التحرير في هذا المنظور. يجب أن يكون المفتاح اسمًا لأحد الأعمدة الفريدة في المنظور. + + + + Delete Records + احذف السجلّات + + + + Duplicate records + كرّر السجلّات + + + + Duplicate record + كرّر السجلّ + + + + Ctrl+" + Ctrl+" + + + + Adjust rows to contents + اضبط الصفوف إلى محتواها + + + + Error deleting record: +%1 + خطأ أثناء حذف السجلّ: +%L1 + + + + Please select a record first + من فضلك اختر سجلًا أوّلًا + + + + There is no filter set for this table. View will not be created. + لا مرشّح مضبوط لهذا الجدول. لن يُنشأ المنظور. + + + + Please choose a new encoding for all tables. + من فضلك اختر ترميزًا جديدًا لكلّ الجداول. + + + + Please choose a new encoding for this table. + من فضلك اختر ترميزًا جديدًا لهذا الجدول. + + + + %1 +Leave the field empty for using the database encoding. + %L1 +اترك الحقل فارغًا لاستعمال ترميز قاعدة البيانات. + + + + This encoding is either not valid or not supported. + إمّا أنّ هذا الترميز غير صالح أو أنّه غير مدعوم. + + + + %1 replacement(s) made. + عدد الاستبدالات المُجراة: %L1 + + + + VacuumDialog + + + Compact Database + رصّ قاعدة البيانات + + + + Warning: Compacting the database will commit all of your changes. + تحذير: برصّ قاعدة البيانات ستُودع كلّ التعديلات التي أجريتها. + + + + Please select the databases to co&mpact: + من فضلك اختر قواعد البيانات لر&صّها: + + + diff --git a/ConfigFiles/translations/sqlb_cs.qm b/ConfigFiles/translations/sqlb_cs.qm new file mode 100644 index 0000000..0828541 Binary files /dev/null and b/ConfigFiles/translations/sqlb_cs.qm differ diff --git a/ConfigFiles/translations/sqlb_cs.ts b/ConfigFiles/translations/sqlb_cs.ts new file mode 100644 index 0000000..880d693 --- /dev/null +++ b/ConfigFiles/translations/sqlb_cs.ts @@ -0,0 +1,6940 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + O DB Browser pro SQLite + + + + Version + Verze + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + + + + + AddRecordDialog + + + Add New Record + + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + + + + + Name + Název + + + + Type + Typ + + + + Value + + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + + + + + Auto-increment + + + + + + Unique constraint + + + + + + Check constraint: %1 + + + + + + Foreign key: %1 + + + + + + Default value: %1 + + + + + + Error adding record. Message from database engine: + +%1 + + + + + Are you sure you want to restore all the entered values to their defaults? + + + + + Application + + + Possible command line arguments: + Možné parametry pro příkazový řádek: + + + + Usage: %1 [options] [<database>|<project>] + + + + + + -h, --help Show command line options + + + + + -q, --quit Exit application after running scripts + + + + + -s, --sql <file> Execute this SQL file after opening the DB + + + + + -t, --table <table> Browse this table after opening the DB + + + + + -R, --read-only Open database in read-only mode + + + + + -o, --option <group>/<setting>=<value> + + + + + Run application with this setting temporarily set to value + + + + + -O, --save-option <group>/<setting>=<value> + + + + + Run application saving this value for this setting + + + + + -v, --version Display the current version + + + + + <database> Open this SQLite database + + + + + <project> Open this project file (*.sqbpro) + + + + + The -s/--sql option requires an argument + Volba -s/--sql vyžaduje parametry + + + + The file %1 does not exist + Soubor %1 neexistuje + + + + The -t/--table option requires an argument + Volba -t/--table vyžaduje parametry + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + + + + + Invalid option/non-existant file: %1 + Neplatná volba/neexistující soubor: %1 + + + + SQLite Version + verze SQLite + + + + SQLCipher Version %1 (based on SQLite %2) + + + + + DB Browser for SQLite Version %1. + + + + + Built for %1, running on %2 + + + + + Qt Version %1 + + + + + CipherDialog + + + SQLCipher encryption + šifrování SQLCipher + + + + &Password + &Heslo + + + + &Reenter password + &Zadejte heslo znovu + + + + Encr&yption settings + + + + + SQLCipher &3 defaults + + + + + SQLCipher &4 defaults + + + + + Custo&m + + + + + Page si&ze + Velikost strany + + + + &KDF iterations + + + + + HMAC algorithm + + + + + KDF algorithm + + + + + Plaintext Header Size + + + + + Passphrase + + + + + Raw key + + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + + + + + ColumnDisplayFormatDialog + + + Choose display format + Vyberte formát zobrazení + + + + Display format + Formát zobrazení + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + Vyberte formát zobrazení pro sloupec '%1' který je použit na každou hodnotu před zobrazením. + + + + Default + Výchozí + + + + Decimal number + Desetinné číslo + + + + Exponent notation + Notace exponentu + + + + Hex blob + Šestnáctkový blob + + + + Hex number + Šestnáctkové číslo + + + + Apple NSDate to date + Apple NSDate na datum + + + + Java epoch (milliseconds) to date + + + + + .NET DateTime.Ticks to date + + + + + Julian day to date + Juliánský den na datum + + + + Unix epoch to local time + + + + + Date as dd/mm/yyyy + Datum jako dd/mm/yyyy + + + + Lower case + Malá písmena + + + + Custom display format must contain a function call applied to %1 + + + + + Error in custom display format. Message from database engine: + +%1 + + + + + Custom display format must return only one column but it returned %1. + + + + + Octal number + Osmičkové číslo + + + + Round number + Zaokrouhlit číslo + + + + Unix epoch to date + Unix epoch na datum + + + + Upper case + Velká písmena + + + + Windows DATE to date + Windows DATE na datum + + + + Custom + Vlastní + + + + CondFormatManager + + + Conditional Format Manager + + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + + + + + Add new conditional format + + + + + &Add + Přidat + + + + Remove selected conditional format + + + + + &Remove + Odstranit + + + + Move selected conditional format up + + + + + Move &up + + + + + Move selected conditional format down + + + + + Move &down + + + + + Foreground + Popředí + + + + Text color + Barva textu + + + + Background + Pozadí + + + + Background color + Barva pozadí + + + + Font + Font + + + + Size + Velikost + + + + Bold + Tučný + + + + Italic + Kurzíva + + + + Underline + Podtržený + + + + Alignment + + + + + Condition + + + + + + Click to select color + + + + + Are you sure you want to clear all the conditional formats of this field? + + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + Prosím specifikujte jméno databáze, pod kterým chcete přistupovat k připojené databázi + + + + Invalid file format + Neplatný formát souboru + + + + Do you want to save the changes made to the database file %1? + Chcete uložit změny provedené do databázového souboru %1? + + + + Exporting database to SQL file... + Exportuji databázi do souboru SQL... + + + + + Cancel + Zrušit + + + + Executing SQL... + Provádím SQL... + + + + Action cancelled. + Akce zrušena. + + + + This database has already been attached. Its schema name is '%1'. + + + + + Do you really want to close this temporary database? All data will be lost. + + + + + Database didn't close correctly, probably still busy + + + + + The database is currently busy: + Databáze je právě zaneprázdněná: + + + + Do you want to abort that other operation? + + + + + + No database file opened + + + + + + Error in statement #%1: %2. +Aborting execution%3. + + + + + + and rolling back + + + + + didn't receive any output from %1 + + + + + could not execute command: %1 + + + + + Cannot delete this object + Nemohu smazat tento objekt + + + + Cannot set data on this object + + + + + + A table with the name '%1' already exists in schema '%2'. + + + + + No table with name '%1' exists in schema '%2'. + + + + + + Cannot find column %1. + + + + + Creating savepoint failed. DB says: %1 + + + + + Renaming the column failed. DB says: +%1 + + + + + + Releasing savepoint failed. DB says: %1 + + + + + Creating new table failed. DB says: %1 + + + + + Copying data to new table failed. DB says: +%1 + + + + + Deleting old table failed. DB says: %1 + + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + + + + + could not get list of db objects: %1 + + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + + + + + could not get list of databases: %1 + + + + + Error loading extension: %1 + Chyba při načítání přípony: %1 + + + + could not get column information + + + + + Error setting pragma %1 to %2: %3 + Chyba při nastavování pragma %1 na %2: %3 + + + + File not found. + Soubor nebyl nalezen. + + + + DbStructureModel + + + Name + Název + + + + Object + Objekt + + + + Type + Typ + + + + Schema + Schéma + + + + Database + Databáze + + + + Browsables + + + + + All + Všechny + + + + Temporary + Dočasný + + + + Tables (%1) + Tabulky (%1) + + + + Indices (%1) + Indexy (%1) + + + + Views (%1) + Pohledy (%1) + + + + Triggers (%1) + Triggery (%1) + + + + EditDialog + + + Edit database cell + Upravit buňku databáze + + + + Mode: + Mód: + + + + + Image + Obrázek + + + + Set as &NULL + Nastavit na &NULL + + + + Apply data to cell + + + + + This button saves the changes performed in the cell editor to the database cell. + + + + + Apply + Provést + + + + Text + Text + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + + + + + RTL Text + + + + + Binary + Binární + + + + JSON + + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + + + + + Auto-switch + + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + + + + + Open preview dialog for printing the data currently stored in the cell + + + + + Auto-format: pretty print on loading, compact on saving. + + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + + + + + Word Wrap + + + + + Wrap lines on word boundaries + + + + + + Open in default application or browser + + + + + Open in application + + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + + + + + Save file reference... + + + + + Save reference to file + + + + + + Open in external application + + + + + Autoformat + + + + + &Export... + + + + + + &Import... + + + + + + Import from file + Importovat ze souboru + + + + + Opens a file dialog used to import any kind of data to this database cell. + + + + + Export to file + Exportovat do souboru + + + + Opens a file dialog used to export the contents of this database cell to a file. + + + + + Erases the contents of the cell + Vymazat obsah buňky + + + + This area displays information about the data present in this database cell + Tato oblast zobrazuje informace o aktuálních datech v této databázové buňce + + + + Type of data currently in cell + Současný typ dat v buňce + + + + Size of data currently in table + Současná velikost dat v tabulce + + + + + Print... + Tisk... + + + + Open preview dialog for printing displayed image + + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + + + + + Copy Hex and ASCII + + + + + Copy selected hexadecimal and ASCII columns to the clipboard + + + + + Ctrl+Shift+C + + + + + Choose a filename to export data + Vyberte název souboru pro export dat + + + + Type of data currently in cell: %1 Image + Aktuální typ dat v buňce: %1 Obrázek + + + + %1x%2 pixel(s) + %1x%2 pixel/ů + + + + Type of data currently in cell: NULL + Aktuální typ dat v buňce: NULL + + + + + Type of data currently in cell: Text / Numeric + Aktuální typ dat v buňce: Text / Číselný + + + + + Image data can't be viewed in this mode. + + + + + + Try switching to Image or Binary mode. + + + + + + Binary data can't be viewed in this mode. + + + + + + Try switching to Binary mode. + Zkuste přepnout do binárního režimu. + + + + Couldn't save file: %1. + + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + + + + + + Image files (%1) + Soubory obrázků (%1) + + + + Binary files (*.bin) + Binární soubory (*.bin) + + + + Choose a file to import + Vyberte soubor pro import + + + + %1 Image + %1 Obrázek + + + + Invalid data for this mode + Neplatná data pro tento režim + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + + + + + + + %n character(s) + + %n znak + %n znaků + + + + + + Type of data currently in cell: Valid JSON + + + + + Type of data currently in cell: Binary + Aktuální typ dat v buňce: Binární + + + + + %n byte(s) + + %n byte + %n bytů + + + + + + EditIndexDialog + + + &Name + Název + + + + Order + Řadit + + + + &Table + Tabulka + + + + Edit Index Schema + Upravit schéma indexů + + + + &Unique + Unikátní + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + + + + + Partial inde&x clause + + + + + Colu&mns + Sloupce + + + + Table column + Sloupec tabulky + + + + Type + Typ + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + + + + + Index column + Index sloupce + + + + Deleting the old index failed: +%1 + + + + + Creating the index failed: +%1 + Vytváření indexu se nezdařilo: +%1 + + + + EditTableDialog + + + Edit table definition + Upravit definici tabulky + + + + Table + Tabulka + + + + Advanced + Pokročilé + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + + + + + Without Rowid + Bez id řádku + + + + Database sche&ma + + + + + Fields + Pole + + + + Add + + + + + Remove + + + + + Move to top + + + + + Move up + + + + + Move down + + + + + Move to bottom + + + + + + Name + Název + + + + + Type + Typ + + + + NN + NN + + + + Not null + Není null + + + + PK + PK + + + + Primary key + Primární klíč + + + + AI + AI + + + + Autoincrement + Autoincrement + + + + U + U + + + + + + Unique + Unikátní + + + + Default + Výchozí + + + + Default value + Výchozí hodnota + + + + + + Check + Zkontrolovat + + + + Check constraint + Zkontrolovat omezení + + + + Collation + + + + + + + Foreign Key + Cizí klíč + + + + Constraints + + + + + Add constraint + + + + + Remove constraint + + + + + Columns + Sloupce + + + + SQL + + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + + + + + + Primary Key + + + + + Add a primary key constraint + + + + + Add a foreign key constraint + + + + + Add a unique constraint + + + + + Add a check constraint + + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + + + + + Error creating table. Message from database engine: +%1 + Chyba při vytváření tabulky. Zpráva z databáze: +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Pole s tímto názvem již existuje. Nejdříve jej přejmenujte, nebo vyberte pro toto pole jiný název, prosím. + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + Tento sloupec je použit jako cizí klíč v tabulce %1 a jeho název nemůže být změněn. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + Existuje alespoň jeden řádek, který je nastaven na NULL. Z tohoto důvodu je nemožné nastavit tento flag. Nejprve změňte data v tabulce, prosím. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + Existuje alespoň jeden řádek, který neobsahuje hodnotu typu integer. Z tohoto důvodu je nemožné nastavit AI flag. Nejprve změňte data v tabulce, prosím. + + + + Column '%1' has duplicate data. + + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + + + + + ExportDataDialog + + + Export data as CSV + Exportovat data do CSV + + + + Tab&le(s) + Tabulka/ky + + + + Colu&mn names in first line + Názvy sloupců v prvním řádku + + + + Fie&ld separator + Oddělovač pole + + + + , + , + + + + ; + ; + + + + Tab + Karta + + + + | + | + + + + + + Other + Ostatní + + + + &Quote character + &Uvozovka + + + + " + " + + + + ' + ' + + + + New line characters + Znaky nového řádku + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + Pretty print + + + + + Could not open output file: %1 + Nemohu otevřít výstupní soubor: %1 + + + + + Choose a filename to export data + Vyberte název souboru pro export dat + + + + Export data as JSON + Exportovat data jako JSON + + + + exporting CSV + exportování CSV + + + + exporting JSON + exportování JSONu + + + + Please select at least 1 table. + Vyberte alespoň jednu tabulku, prosím. + + + + Choose a directory + Vybrat složku + + + + Export completed. + Export byl dokončen. + + + + ExportSqlDialog + + + Export SQL... + Exportovat SQL... + + + + Tab&le(s) + Tabulka/ky + + + + Select All + Vybrat vše + + + + Deselect All + Zrušit výběr + + + + &Options + Volby + + + + Keep column names in INSERT INTO + Zachovat názvy sloupců v INSERT INTO + + + + Multiple rows (VALUES) per INSERT statement + Více řádků (VALUES) pro příkaz INSERT + + + + Export everything + Exportovat vše + + + + Export data only + Exportovat pouze data + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Přepsat staré schéma (DROP TABLE, then CREATE TABLE) + + + + Export schema only + Exportovat pouze schéma + + + + Please select at least one table. + Vyberte prosím aspoň jednu tabulku. + + + + Choose a filename to export + Vyberte název souboru pro export + + + + Export completed. + Export dokončen. + + + + Export cancelled or failed. + Export byl zrušen nebo selhal. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + + + + + Find and Replace... + Najít a nahradit... + + + + Print... + Tisk... + + + + ExtendedTableWidget + + + Use as Exact Filter + + + + + Containing + + + + + Not containing + + + + + Not equal to + + + + + Greater than + Větší než + + + + Less than + Menší než + + + + Greater or equal + Větší nebo rovno + + + + Less or equal + Menší nebo rovno + + + + Between this and... + Mezi tímto a... + + + + Regular expression + + + + + Edit Conditional Formats... + + + + + Set to NULL + Nastavit na NULL + + + + Copy + Kopírovat + + + + Copy with Headers + Kopírovat s hlavičkami + + + + Copy as SQL + Kopírovat jako SQL + + + + Paste + Vložit + + + + Print... + Tisk... + + + + Use in Filter Expression + + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + + + + + FileExtensionManager + + + File Extension Manager + + + + + &Up + Nahoru + + + + &Down + Dolů + + + + &Add + Přidat + + + + &Remove + Odstranit + + + + + Description + Popis + + + + Extensions + Rozšíření + + + + *.extension + *.extension + + + + FilterLineEdit + + + Filter + Filtr + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + + + + + Clear All Conditional Formats + + + + + Use for Conditional Format + + + + + Edit Conditional Formats... + + + + + Set Filter Expression + + + + + What's This? + Co je toto? + + + + Is NULL + je NULL + + + + Is not NULL + Není NULL + + + + Is empty + Je prázdný + + + + Is not empty + Není prázdný + + + + Not containing... + + + + + Equal to... + Rovný k... + + + + Not equal to... + Není rovný k... + + + + Greater than... + Větší než... + + + + Less than... + Menší než... + + + + Greater or equal... + Větší nebo rovno... + + + + Less or equal... + Menší nebo rovno... + + + + In range... + V rozmezí... + + + + Regular expression... + + + + + FindReplaceDialog + + + Find and Replace + Najít a nahradit + + + + Fi&nd text: + Najít text + + + + Re&place with: + Nahradit s: + + + + Match &exact case + + + + + Match &only whole words + + + + + When enabled, the search continues from the other end when it reaches one end of the page + + + + + &Wrap around + + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + + + + + Search &backwards + + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + + + + + &Selection only + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Use regular e&xpressions + + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + + + + + &Find Next + Najít další + + + + F3 + + + + + &Replace + Nahradit + + + + Highlight all the occurrences of the text in the page + + + + + F&ind All + Najít vše + + + + Replace all the occurrences of the text in the page + + + + + Replace &All + Nahradit vše + + + + The searched text was not found + Hledaný text nebyl nalezen + + + + The searched text was not found. + Hledaný text nebyl nalezen. + + + + The searched text was found one time. + Hledaný text byl nalezen jednou. + + + + The searched text was found %1 times. + Hledaný text byl nalezen %1 krát. + + + + The searched text was replaced one time. + Hledaný text byl nahrazen jednou. + + + + The searched text was replaced %1 times. + Hledaný text byl nahrazen %1 krát. + + + + ForeignKeyEditor + + + &Reset + + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + + + + + ImportCsvDialog + + + Import CSV file + Importovat soubor CSV + + + + Table na&me + Název tabulky + + + + &Column names in first line + &Názvy sloupců v prvním řádku + + + + Field &separator + Oddělovač pole + + + + , + , + + + + ; + ; + + + + + Tab + Karta + + + + | + | + + + + Other + Ostatní + + + + &Quote character + &Uvozovka + + + + + Other (printable) + + + + + + Other (code) + + + + + " + " + + + + ' + ' + + + + &Encoding + Kódování + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + Ořezat pole? + + + + Separate tables + Oddělit tabulky + + + + Advanced + Pokročilé + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + + + + + Ignore default &values + Ignorovat výchozí hodnoty + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + + + + + Fail on missing values + + + + + Disable data type detection + + + + + Disable the automatic data type detection when creating a new table. + + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + + + + + Abort import + + + + + Ignore row + + + + + Replace existing row + + + + + Conflict strategy + + + + + + Deselect All + Zrušit celý výběr + + + + Match Similar + + + + + Select All + Vybrat vše + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + + + + + There is already a table named '%1'. Do you want to import the data into it? + + + + + Creating restore point failed: %1 + Vytváření bodu obnovy selhalo: %1 + + + + Creating the table failed: %1 + Vytváření tabulky selhalo: %1 + + + + importing CSV + importování CSV + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + + + + + Inserting row failed: %1 + Vkládání řádku selhalo: %1 + + + + MainWindow + + + DB Browser for SQLite + DB Browser pro SQLite + + + + toolBar1 + toolBar1 + + + + Opens the SQLCipher FAQ in a browser window + Otevře SQLCipher FAQ v okně prohlížeče + + + + Export one or more table(s) to a JSON file + Export jedné nebo více tabulek do souboru JSON + + + + &File + &Soubor + + + + &Import + &Import + + + + &Export + &Export + + + + Open an existing database file in read only mode + + + + + &Edit + Upravit + + + + &View + Pohled + + + + &Help + Pomoc + + + + DB Toolbar + Panel nástrojů DB + + + + Edit Database &Cell + Upravit databázovou buňku + + + + DB Sche&ma + DB Schéma + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + Proveďte SQL + + + + + Execute current line + Provést aktuální řádek + + + + This button executes the SQL statement present in the current editor line + + + + + Shift+F5 + + + + + Sa&ve Project + Ulo&žit Projekt + + + + User + Uživatel + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Databázová Struktura + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Prohlížet data + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Editovat Pragma + + + + Application + Aplikace + + + + &Clear + &Vyčistit + + + + &New Database... + Nová databáze... + + + + + Create a new database file + Vytvořit nový databázový soubor + + + + This option is used to create a new database file. + Tato volba slouží k vytvoření nového souboru databáze. + + + + Ctrl+N + + + + + + &Open Database... + Otevřít databázi... + + + + + + + + Open an existing database file + Otevřít existující soubor databáze + + + + + + This option is used to open an existing database file. + Tato volba slouží k otevření existujícího souboru databáze. + + + + Ctrl+O + + + + + &Close Database + &Zavřít databázi + + + + This button closes the connection to the currently open database file + + + + + + Ctrl+W + + + + + + Revert database to last saved state + Vrátit databázi do posledního uloženého stavu + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + + + + + + Write changes to the database file + Zapsat změny do souboru databáze + + + + This option is used to save changes to the database file. + Tato volba slouží k uložení provedených změn do souboru databáze. + + + + Ctrl+S + + + + + Compact &Database... + + + + + Compact the database file, removing space wasted by deleted records + + + + + + Compact the database file, removing space wasted by deleted records. + + + + + E&xit + Exit + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + Importovat data z textového souboru .sql do nové nebo již existující databáze. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Otevře průzkumníka, kde můžete importovat data z textového souboru, kde jsou data oddělena čárkami, do databázové tabulky. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + + + + + Export a database to a .sql dump text file. + Exportovat databázi do textového souboru .sql + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + + + + + Export a database table as a comma separated text file. + Exportovat databázovou tabulku jako textový soubor oddělený čárkami. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + + + + + + Delete Table + Smazat Tabulku + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + + + + + &Preferences... + &Možnosti... + + + + + Open the preferences window. + Otevřít okno s možnostmi. + + + + &DB Toolbar + Panel nástrojů DB + + + + Shows or hides the Database toolbar. + Zobrazí nebo skryje lištu Databáze. + + + + Shift+F1 + + + + + Open SQL file(s) + + + + + This button opens files containing SQL statements and loads them in new editor tabs + + + + + Execute line + + + + + &Wiki + Wiki + + + + F1 + + + + + Bug &Report... + Nahlásit chybu... + + + + Feature Re&quest... + Požadavek na funkci... + + + + Web&site + Webová stránka + + + + &Donate on Patreon... + Přispět na Patreon... + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + + + + + This button lets you open a DB Browser for SQLite project file + + + + + Browse Table + + + + + &Attach Database... + Přiložit databázi... + + + + + Add another database file to the current database connection + + + + + This button lets you add another database file to the current database connection + + + + + &Set Encryption... + Nastavit šifrování... + + + + SQLCipher &FAQ + SQLCipher FAQ + + + + Table(&s) to JSON... + Tabulka(ky) do JSONu... + + + + Open Data&base Read Only... + + + + + Ctrl+Shift+O + + + + + Save results + Uložit výsledky + + + + Save the results view + + + + + This button lets you save the results of the last executed query + + + + + + Find text in SQL editor + Najít text v SQL editoru + + + + Find + + + + + This button opens the search bar of the editor + + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + Najít a nahradit text v SQL editoru + + + + Find or replace + + + + + This button opens the find/replace dialog for the current editor tab + + + + + Ctrl+H + + + + + Export to &CSV + Export do CSV + + + + Save as &view + Uložit jako pohled + + + + Save as view + Uložit jako pohled + + + + Shows or hides the Project toolbar. + Zobrazit nebo skrýt lištu projektu + + + + Extra DB Toolbar + Extra DB Toolbar + + + + New In-&Memory Database + + + + + Drag && Drop Qualified Names + + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + + + + + Drag && Drop Enquoted Names + + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + + + + + &Integrity Check + + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + + + + + &Foreign-Key Check + + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + + + + + &Quick Integrity Check + + + + + Run a quick integrity check over the open DB + + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + + + + + &Optimize + + + + + Attempt to optimize the database + + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + + + + + + Print + Tisk + + + + Print text from current SQL editor tab + + + + + Open a dialog for printing the text in the current SQL editor tab + + + + + Print the structure of the opened database + + + + + Open a dialog for printing the structure of the opened database + + + + + &Save Project As... + + + + + + + Save the project in a file selected in a dialog + + + + + Save A&ll + + + + + + + Save DB file, project file and opened SQL files + + + + + Ctrl+Shift+S + + + + + &Recently opened + &Nedávno otevřené + + + + Open &tab + Otevřít kartu + + + + Ctrl+T + + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + + + + + Un/comment block of SQL code + + + + + Un/comment block + + + + + Comment or uncomment current line or selected block of code + + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + + + + + Ctrl+/ + + + + + Stop SQL execution + + + + + Stop execution + + + + + Stop the currently running SQL script + + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + + + + + &Tools + Nástroje + + + + SQL &Log + SQL &Log + + + + Show S&QL submitted by + + + + + Error Log + + + + + This button clears the contents of the SQL logs + + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + + + + + &Plot + + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + + + + + &Remote + Vzdálené + + + + + Project Toolbar + + + + + Extra DB toolbar + Extra DB toolbar + + + + + + Close the current database file + + + + + Ctrl+F4 + + + + + &Revert Changes + Vrátit Změny + + + + &Write Changes + Zapsat Změny + + + + &Database from SQL file... + Databáze z SQL souboru... + + + + &Table from CSV file... + Tabulka ze souboru CSV... + + + + &Database to SQL file... + Databáze do souboru SQL... + + + + &Table(s) as CSV file... + Tabulka/ky jako soubor CSV... + + + + &Create Table... + Vytvořit Tabulku... + + + + &Delete Table... + Smazat Tabulku... + + + + &Modify Table... + Upravit Tabulku... + + + + Create &Index... + Vytvořit Index... + + + + W&hat's This? + Co je toto? + + + + &About + O + + + + This button opens a new tab for the SQL editor + + + + + &Execute SQL + &Provést příkaz SQL + + + + Execute all/selected SQL + Provést všechny/vybrané SQL + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + + + + + + + Save SQL file + Uložit SQL soubor + + + + &Load Extension... + Načíst rozšíření... + + + + Ctrl+E + + + + + Export as CSV file + Exportovat jako soubor CSV + + + + Export table as comma separated values file + Exportovat tabulku do souboru jako hodnoty oddělené čárkami + + + + + Save the current session to a file + Uložit aktuální session do souboru + + + + Open &Project... + Otevřít projekt... + + + + + Load a working session from a file + + + + + + Save SQL file as + Uložit soubor SQL jako + + + + This button saves the content of the current SQL editor tab to a file + + + + + &Browse Table + &Prohlížet Tabulku + + + + Copy Create statement + Kopírovat příkaz Create + + + + Copy the CREATE statement of the item to the clipboard + Zkopírovat do schránky příkaz CREATE + + + + Ctrl+Return + + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Encrypted + Šifrováno + + + + Read only + Pouze pro čtení + + + + Database file is read only. Editing the database is disabled. + Soubor databáze je určen pouze pro čtení. Úprava databáze je zakázána. + + + + Database encoding + Kódování databáze + + + + Database is encrypted using SQLCipher + Databáze je šifrována přes SQLCipher + + + + + Choose a database file + Vyberte soubor databáze + + + + + + Choose a filename to save under + Vyberte název souboru pro uložení + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + Jste si jisti, že chcete vrátit zpět všechny provedené změny v databázi '%1' od posledního uložení? + + + + Choose a file to import + Vyberte soubor pro import + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + + + + + Open Database or Project + + + + + Attach Database... + + + + + Import CSV file(s)... + + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + + + + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + + + + + Text files(*.sql *.txt);;All files(*) + Textové soubory(*.sql *.txt);;Všechny soubory(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + + + + + Do you want to save the changes made to the project file '%1'? + + + + + File %1 already exists. Please choose a different name. + Soubor %1 již existuje. Vyberte jiný název, prosím. + + + + Error importing data: %1 + Chyba při importu dat: %1 + + + + Import completed. + Import dokončen. + + + + Delete View + Smazat Pohled + + + + Modify View + + + + + Delete Trigger + Smazat Spoušť + + + + Modify Trigger + + + + + Delete Index + Smazat Index + + + + Modify Index + Změnit Index + + + + Modify Table + Změnit tabulku + + + + Do you want to save the changes made to SQL tabs in a new project file? + + + + + Do you want to save the changes made to the SQL file %1? + + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + + + + + Could not find resource file: %1 + + + + + Choose a project file to open + Vybrat soubor projektu k otevření + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + + + + + Could not open project file for writing. +Reason: %1 + + + + + Busy (%1) + + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + + + + + Window Layout + + + + + Reset Window Layout + + + + + Alt+0 + + + + + Simplify Window Layout + + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + + + + + Dock Windows at Left Side + + + + + Dock Windows at Top + + + + + The database is currenctly busy. + + + + + Click here to interrupt the currently running query. + + + + + Could not open database file. +Reason: %1 + + + + + In-Memory database + + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + + + + + Are you sure you want to delete the view '%1'? + + + + + Are you sure you want to delete the trigger '%1'? + + + + + Are you sure you want to delete the index '%1'? + + + + + Error: could not delete the table. + + + + + Error: could not delete the view. + + + + + Error: could not delete the trigger. + + + + + Error: could not delete the index. + + + + + Message from database engine: +%1 + + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + + + + + Edit View %1 + + + + + Edit Trigger %1 + + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + + + + + -- EXECUTING SELECTION IN '%1' +-- + + + + + -- EXECUTING LINE IN '%1' +-- + + + + + -- EXECUTING ALL IN '%1' +-- + + + + + + At line %1: + + + + + Result: %1 + + + + + Result: %2 + + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + + + + + Opened '%1' in read-only mode from recent file list + + + + + Opened '%1' from recent file list + + + + + This action will open a new SQL tab with the following statements for you to edit and run: + + + + + Rename Tab + + + + + Duplicate Tab + + + + + Close Tab + + + + + Opening '%1'... + + + + + There was an error opening '%1'... + + + + + Value is not a valid URL or filename: %1 + + + + + %1 rows returned in %2ms + + + + + Choose text files + Vybrat textové soubory + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + + + + + Select SQL file to open + Vyberte soubor SQL k otevření + + + + Select file name + Vyberte název souboru + + + + Select extension file + Vyberte soubor s rozšířením + + + + Extension successfully loaded. + Rozšíření bylo úspěšně načteno. + + + + Error loading extension: %1 + Chyba při načítání přípony: %1 + + + + + Don't show again + Znovu nezobrazovat + + + + New version available. + Dostupná nová verze. + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Nová verze DB Browseru pro SQLite je nyní dostupná (%1.%2.%3).<br/><br/>Stáhněte ji prosím na <a href='%4'>%4</a>. + + + + Project saved to file '%1' + + + + + Collation needed! Proceed? + Je potřeba provést collation! Potvrdit? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + + + + + creating collation + + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + + + + + Please specify the view name + Specifikujte název pohledu, prosím + + + + There is already an object with that name. Please choose a different name. + Objekt s tímto názvem již existuje. Vyberte jiný název, prosím. + + + + View successfully created. + Pohled byl úspěšně vytvořen. + + + + Error creating view: %1 + Chyba při vytváření pohledu: %1 + + + + This action will open a new SQL tab for running: + + + + + Press Help for opening the corresponding SQLite reference page. + + + + + DB Browser for SQLite project file (*.sqbpro) + DB Browser pro SQLite project file (*.sqbpro) + + + + Error checking foreign keys after table modification. The changes will be reverted. + + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + + + + + Execution finished with errors. + + + + + Execution finished without errors. + + + + + NullLineEdit + + + Set to NULL + Nastavit na NULL + + + + Alt+Del + + + + + PlotDock + + + Plot + + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + + + + + Columns + Sloupce + + + + X + X + + + + Y1 + + + + + Y2 + + + + + Axis Type + + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + + + + + Line type: + Typ řádku: + + + + + None + Žádná + + + + Line + Řádek + + + + StepLeft + KrokVlevo + + + + StepRight + KrokVpravo + + + + StepCenter + KrokDoprostřed + + + + Impulse + Impuls + + + + Point shape: + + + + + Cross + Kříž + + + + Plus + Plus + + + + Circle + Kruh + + + + Disc + Disk + + + + Square + Čtverec + + + + Diamond + Diamand + + + + Star + Hvězda + + + + Triangle + Trojúhelník + + + + TriangleInverted + ObrácenýTrojúhelník + + + + CrossSquare + + + + + PlusSquare + PlusČtverec + + + + CrossCircle + + + + + PlusCircle + + + + + Peace + + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + + + + + Save current plot... + + + + + + Load all data and redraw plot + + + + + + + Row # + Řádek # + + + + Copy + Kopírovat + + + + Print... + Tisk... + + + + Show legend + Zobrazit legendu + + + + Stacked bars + + + + + Date/Time + Datum/čas + + + + Date + Datum + + + + Time + Čas + + + + + Numeric + + + + + Label + Štítek + + + + Invalid + + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + + + + + Choose an axis color + Vyberte barvu osy + + + + Choose a filename to save under + Vyberte název souboru pro uložení + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;Všechny Soubory(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + + + + + Loading all remaining data for this table took %1ms. + + + + + PreferencesDialog + + + Preferences + Možnosti + + + + &General + &Obecné + + + + Remember last location + Zapamatovat poslední umístění + + + + Always use this location + Vždy použít toto umístění + + + + Remember last location for session only + Pamatovat poslední umístění pouze po dobu trvání session + + + + + + ... + ... + + + + Default &location + Výchozí &umístění + + + + Lan&guage + Jazyk + + + + Automatic &updates + Automatické &aktualizace + + + + + + + + + + + + enabled + povoleno + + + + Show remote options + Zobrazit vzdálené možnosti + + + + &Database + &Databáze + + + + Database &encoding + Kódování &databáze + + + + Open databases with foreign keys enabled. + Otevře databázi s povolenými cizími klíči. + + + + &Foreign keys + &Cizí klíče + + + + SQ&L to execute after opening database + SQ&L k vykonání po otevření databáze + + + + Data &Browser + Prohlížeč Dat + + + + Remove line breaks in schema &view + + + + + Prefetch block si&ze + + + + + Default field type + Výchozí typ pole + + + + Font + Font + + + + &Font + &Font + + + + Content + Obsah + + + + Symbol limit in cell + Maximální počet znaků v buňce + + + + NULL + NULL + + + + Regular + Regulární + + + + Binary + Binární + + + + Background + Pozadí + + + + Filters + Filtry + + + + Threshold for completion and calculation on selection + + + + + Show images in cell + + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + + + + + Escape character + + + + + Delay time (&ms) + Zpoždění (&ms) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + + + + + &SQL + &SQL + + + + Settings name + Název možností + + + + Context + Kontext + + + + Colour + Barva + + + + Bold + Tučný + + + + Italic + Kurzíva + + + + Underline + Podtržený + + + + Keyword + Klíčové slovo + + + + Function + Funkce + + + + Table + Tabulka + + + + Comment + Komentář + + + + Identifier + Identifikátor + + + + String + String + + + + Current line + Aktuální řádek + + + + SQL &editor font size + velikost fontu SQL &editoru + + + + Tab size + + + + + SQL editor &font + &font SQL editoru + + + + Error indicators + + + + + Hori&zontal tiling + + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + + + + + Code co&mpletion + + + + + Toolbar style + + + + + + + + + Only display the icon + + + + + + + + + Only display the text + + + + + + + + + The text appears beside the icon + + + + + + + + + The text appears under the icon + + + + + + + + + Follow the style + + + + + DB file extensions + + + + + Manage + + + + + Main Window + + + + + Database Structure + Databázová Struktura + + + + Browse Data + Prohlížet data + + + + Execute SQL + Proveďte SQL + + + + Edit Database Cell + + + + + When this value is changed, all the other color preferences are also set to matching colors. + + + + + Follow the desktop style + + + + + Dark style + + + + + Application style + + + + + This sets the font size for all UI elements which do not have their own font size option. + + + + + Font size + + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + + + + + Database structure font size + + + + + Font si&ze + Velikost písma + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + + + + + Field display + + + + + Displayed &text + + + + + + + + + + Click to set this color + + + + + Text color + Barva textu + + + + Background color + Barva pozadí + + + + Preview only (N/A) + + + + + Foreground + Popředí + + + + SQL &results font size + + + + + &Wrap lines + + + + + Never + Nikdy + + + + At word boundaries + + + + + At character boundaries + + + + + At whitespace boundaries + + + + + &Quotes for identifiers + + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + + + + + "Double quotes" - Standard SQL (recommended) + + + + + `Grave accents` - Traditional MySQL quotes + + + + + [Square brackets] - Traditional MS SQL Server quotes + + + + + Keywords in &UPPER CASE + + + + + When set, the SQL keywords are completed in UPPER CASE letters. + + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + + + + + Close button on tabs + + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + + + + + &Extensions + &Rozšíření + + + + Select extensions to load for every database: + Vyberte rozšíření k načtení pro každou databázi: + + + + Add extension + Přidat rozšíření + + + + Remove extension + Odebrat rozšíření + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + + + + + Disable Regular Expression extension + Zakázat rozšíření pro regulární výrazy + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + + + + + Allow loading extensions from SQL code + + + + + Remote + Vzdálený + + + + CA certificates + certifikáty CA + + + + Proxy + + + + + Configure + + + + + + Subject CN + předmět CN + + + + Common Name + + + + + Subject O + předmět O + + + + Organization + Organizace + + + + + Valid from + Platné od + + + + + Valid to + Platné do + + + + + Serial number + Sériové číslo + + + + Your certificates + Vaše certifikáty + + + + File + Soubor + + + + Subject Common Name + + + + + Issuer CN + + + + + Issuer Common Name + + + + + Clone databases into + + + + + + Choose a directory + Vyberte složku + + + + The language will change after you restart the application. + Jazyk bude změněn po restartu aplikace. + + + + Select extension file + Vybrat soubor rozšíření + + + + Extensions(*.so *.dylib *.dll);;All files(*) + + + + + Import certificate file + Importovat soubor certifikátu + + + + No certificates found in this file. + V tomto souboru nebyly nalezeny žádné certifikáty. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + Opravdu chcete smazat tento certifikát? Všechny data certifikátu budou smazány z nastavení aplikace! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + + + + + ProxyDialog + + + Proxy Configuration + + + + + Pro&xy Type + + + + + Host Na&me + + + + + Port + + + + + Authentication Re&quired + + + + + &User Name + + + + + Password + + + + + None + Žádná + + + + System settings + + + + + HTTP + + + + + Socks v5 + + + + + QObject + + + Error importing data + Chyba při importu dat + + + + from record number %1 + ze záznamu číslo %1 + + + + . +%1 + . +%1 + + + + Importing CSV file... + + + + + Cancel + Zrušit + + + + All files (*) + Všechny soubory (*) + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + + + + + Left + + + + + Right + + + + + Center + + + + + Justify + + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + + + + + DB Browser for SQLite Project Files (*.sqbpro) + + + + + SQL Files (*.sql) + + + + + All Files (*) + + + + + Text Files (*.txt) + + + + + Comma-Separated Values Files (*.csv) + + + + + Tab-Separated Values Files (*.tsv) + + + + + Delimiter-Separated Values Files (*.dsv) + + + + + Concordance DAT files (*.dat) + + + + + JSON Files (*.json *.js) + + + + + XML Files (*.xml) + + + + + Binary Files (*.bin *.dat) + + + + + SVG Files (*.svg) + + + + + Hex Dump Files (*.dat *.bin) + + + + + Extensions (*.so *.dylib *.dll) + + + + + RemoteCommitsModel + + + Commit ID + + + + + Message + + + + + Date + Datum + + + + Author + + + + + Size + Velikost + + + + Authored and committed by %1 + + + + + Authored by %1, committed by %2 + + + + + RemoteDatabase + + + Error opening local databases list. +%1 + + + + + Error creating local databases list. +%1 + + + + + RemoteDock + + + Remote + Vzdálený + + + + Identity + + + + + Push currently opened database to server + + + + + DBHub.io + + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + + + + + Local + + + + + Current Database + + + + + Clone + + + + + User + Uživatel + + + + Database + Databáze + + + + Branch + Větev + + + + Commits + + + + + Commits for + + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + + + + + Back + + + + + Delete Database + + + + + Delete the local clone of this database + + + + + Open in Web Browser + + + + + Open the web page for the current database in your browser + + + + + Clone from Link + + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + + + + + Refresh + Obnovit + + + + Reload all data and update the views + + + + + F5 + + + + + Clone Database + + + + + Open Database + + + + + Open the local copy of this database + + + + + Check out Commit + + + + + Download and open this specific commit + + + + + Check out Latest Commit + + + + + Check out the latest commit of the current branch + + + + + Save Revision to File + + + + + Saves the selected revision of the database to another file + + + + + Upload Database + + + + + Upload this database as a new commit + + + + + Select an identity to connect + + + + + Public + Veřejný + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + + + + + Invalid URL: The host name does not match the host name of the current identity. + + + + + Invalid URL: No branch name specified. + + + + + Invalid URL: No commit ID specified. + + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + + + + + The database has unsaved changes. Are you sure you want to push it before saving? + + + + + The database you are trying to delete is currently opened. Please close it before deleting. + + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + + + + + RemoteLocalFilesModel + + + Name + Název + + + + Branch + Větev + + + + Last modified + Poslední změněné + + + + Size + Velikost + + + + Commit + + + + + File + Soubor + + + + RemoteModel + + + Name + Název + + + + Last modified + Poslední změněné + + + + Size + Velikost + + + + Commit + + + + + Size: + + + + + Last Modified: + + + + + Licence: + + + + + Default Branch: + + + + + RemoteNetwork + + + Choose a location to save the file + + + + + Error opening remote file at %1. +%2 + + + + + Error: Invalid client certificate specified. + + + + + Please enter the passphrase for this client certificate in order to authenticate. + + + + + Cancel + Zrušit + + + + Uploading remote database to +%1 + Nahrávám vzdálenou databázi do +%1. {1?} + + + + Downloading remote database from +%1 + Stahuji vzdálenou databázi z +%1. {1?} + + + + + Error: The network is not accessible. + Chyba: síť není dostupná. + + + + Error: Cannot open the file for sending. + Chyba: Nemohu otevřít soubor k odeslání. + + + + RemotePushDialog + + + Push database + + + + + Database na&me to push to + + + + + Commit message + + + + + Database licence + + + + + Public + Veřejný + + + + Branch + Větev + + + + Force push + + + + + Username + + + + + Database will be public. Everyone has read access to it. + + + + + Database will be private. Only you have access to it. + + + + + Use with care. This can cause remote commits to be deleted. + + + + + RunSql + + + Execution aborted by user + + + + + , %1 rows affected + , %1 řádků bylo ovlivněno + + + + query executed successfully. Took %1ms%2 + + + + + executing query + + + + + SelectItemsPopup + + + A&vailable + + + + + Sele&cted + + + + + SqlExecutionArea + + + Form + Formulář + + + + Find previous match [Shift+F3] + + + + + Find previous match with wrapping + + + + + Shift+F3 + + + + + The found pattern must be a whole word + + + + + Whole Words + Celá slova + + + + Text pattern to find considering the checks in this frame + + + + + Find in editor + Najít v editoru + + + + The found pattern must match in letter case + + + + + Case Sensitive + + + + + Find next match [Enter, F3] + + + + + Find next match with wrapping + + + + + F3 + + + + + Interpret search pattern as a regular expression + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Regular Expression + Regulární výraz + + + + + Close Find Bar + Zavřít lištu pro hledání + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + + + + + Results of the last executed statements + Výsledky naposledy provedených příkazů + + + + This field shows the results and status codes of the last executed statements. + + + + + Couldn't read file: %1. + + + + + + Couldn't save file: %1. + + + + + Your changes will be lost when reloading it! + + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ltrim(X) odstraní mezery z levé strany X. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) Funkce s více parametry min() vrací parametr s minimální hodnotou. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) Funkce nullif(X,Y) vrací první parametr, pokud jsou parametry odlišné. NULL vrací, pokud jsou parametry stejné. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () Funkce random() vrací pseudo-náhodný integer v rozmezí -9223372036854775808 a +9223372036854775807. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + + + + + (X) rtrim(X) removes spaces from the right side of X. + + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + + + + + (X) trim(X) removes spaces from both ends of X. + (X) trim(X) odstraní mezery z obou stran X. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + + + + + + + + (timestring,modifier,modifier,...) + + + + + (format,timestring,modifier,modifier,...) + + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) Agregační funkce max() vrací maximální hodnotu ze všech hodnot ve skupině. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) Agregační funkce min() vrací minimální hodnotu ze všech hodnot ve skupině, která není NULL. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) Agregační funkce sum() a total() vrací součet všech hodnot ve skupině, které nejsou NULL. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + + + + + SqliteTableModel + + + reading rows + čtení sloupců + + + + loading... + načítání... + + + + References %1(%2) +Hold %3Shift and click to jump there + + + + + Error changing data: +%1 + Chyba při změně dat: +%1 + + + + retrieving list of columns + + + + + Fetching data... + Načítám data... + + + + + Cancel + Zrušit + + + + TableBrowser + + + Browse Data + Prohlížet data + + + + &Table: + &Tabulka: + + + + Select a table to browse data + Vyberte tabulku pro prohlížení dat + + + + Use this list to select a table to be displayed in the database view + Pro zobrazení v databázovém pohledu použijte pro výběr tabulky tento seznam + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + + + + + Text pattern to find considering the checks in this frame + + + + + Find in table + + + + + Find previous match [Shift+F3] + + + + + Find previous match with wrapping + + + + + Shift+F3 + + + + + Find next match [Enter, F3] + + + + + Find next match with wrapping + + + + + F3 + + + + + The found pattern must match in letter case + + + + + Case Sensitive + + + + + The found pattern must be a whole word + + + + + Whole Cell + + + + + Interpret search pattern as a regular expression + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Regular Expression + Regulární výraz + + + + + Close Find Bar + Zavřít lištu pro hledání + + + + Text to replace with + + + + + Replace with + + + + + Replace next match + + + + + + Replace + + + + + Replace all matches + + + + + Replace all + + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Posune na úplný začátek</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Kliknutím na toto tlačítko se přesunete na začátek pohledu tabulky výše.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 z 0 + + + + Scroll one page downwards + + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + + + + + > + > + + + + Scroll to the end + Posunout na konec + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>Kliknutím zde přeskočíte na určený záznam</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>Toto tlačítko je určeno k navigaci k záznamu, jehož číslo je nastaveno v poli Jít na.</p></body></html> + + + + Go to: + Jít na: + + + + Enter record number to browse + Vložte číslo záznamu pro jeho procházení + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Napiště číslo záznamu do tohoto pole a klikněte na Jít na: tlačítko k zobrazení záznamu v pohledu databáze + + + + 1 + 1 + + + + Show rowid column + Zobrazit rowid sloupce + + + + Toggle the visibility of the rowid column + Přepnout viditelnost rowid sloupců + + + + Unlock view editing + + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + + + + + Edit display format + Upravit formát zobrazení + + + + Edit the display format of the data in this column + Upravit formát zobrazení dat v tomto sloupci + + + + + New Record + Nový záznam + + + + + Insert a new record in the current table + Vložit nový záznam do současné tabulky + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + + + + + + Delete Record + Smazat záznam + + + + Delete the current record + Smazat aktuální záznam + + + + + This button deletes the record or records currently selected in the table + + + + + + Insert new record using default values in browsed table + + + + + Insert Values... + Vložit hodnoty... + + + + + Open a dialog for inserting values in a new record + + + + + Export to &CSV + Export do CSV + + + + + Export the filtered data to CSV + + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + + + + + Save as &view + Uložit jako pohled + + + + + Save the current filter, sort column and display formats as a view + + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + + + + + Save Table As... + + + + + + Save the table as currently displayed + + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + + + + + Hide column(s) + Skrýt sloupec(ce) + + + + Hide selected column(s) + Skrýt vybraný sloupec(ce) + + + + Show all columns + Zobrazit všechny sloupce + + + + Show all columns that were hidden + + + + + + Set encoding + Nastavit kódování + + + + Change the encoding of the text in the table cells + Změnit kódování textu v buňkách tabulky + + + + Set encoding for all tables + Nastavit kódování pro všechny tabulky + + + + Change the default encoding assumed for all tables in the database + + + + + Clear Filters + + + + + Clear all filters + Vymazat všechny filtry + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + + + + + Clear Sorting + + + + + Reset the order of rows to the default + + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + + + + + Print + Tisk + + + + Print currently browsed table data + Tisk právě prohlížených dat tabulky + + + + Print currently browsed table data. Print selection if more than one cell is selected. + + + + + Ctrl+P + + + + + Refresh + Obnovit + + + + Refresh the data in the selected table + + + + + This button refreshes the data in the currently selected table. + Toto tlačítko obnoví data v aktuálně vybrané tabulce. + + + + F5 + + + + + Find in cells + + + + + Open the find tool bar which allows you to search for values in the table view below. + + + + + + Bold + Tučný + + + + Ctrl+B + + + + + + Italic + Kurzíva + + + + + Underline + Podtržený + + + + Ctrl+U + + + + + + Align Right + + + + + + Align Left + + + + + + Center Horizontally + + + + + + Justify + + + + + + Edit Conditional Formats... + + + + + Edit conditional formats for the current column + + + + + Clear Format + + + + + Clear All Formats + + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + + + + + + Font Color + + + + + + Background Color + + + + + Toggle Format Toolbar + + + + + Show/hide format toolbar + + + + + + This button shows or hides the formatting toolbar of the Data Browser + + + + + Select column + + + + + Ctrl+Space + + + + + Replace text in cells + + + + + Filter in any column + + + + + Ctrl+R + + + + + %n row(s) + + + + + + + + + , %n column(s) + + + + + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + + + + + Conditional formats for "%1" + + + + + determining row count... + + + + + %1 - %2 of >= %3 + + + + + %1 - %2 of %3 + %1 - %2 z %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + + + + + Delete Records + + + + + Duplicate records + + + + + Duplicate record + + + + + Ctrl+" + + + + + Adjust rows to contents + + + + + Error deleting record: +%1 + Chyba při mazání záznamu: +%1 + + + + Please select a record first + Prosím vyberte záznam jako první + + + + There is no filter set for this table. View will not be created. + + + + + Please choose a new encoding for all tables. + Vyberte nové kódování pro všechny tabulky, prosím. + + + + Please choose a new encoding for this table. + Vyberte nové kódování pro tuto tabulku, prosím. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Pro použití kódování databáze ponechte pole prázdné. + + + + This encoding is either not valid or not supported. + Toto kódování není buď platné, nebo podporováno. + + + + %1 replacement(s) made. + + + + + VacuumDialog + + + Compact Database + Compact Database + + + + Warning: Compacting the database will commit all of your changes. + Varování: Procesem 'compact the database' budou aplikovány všechny vaše provedené změny. + + + + Please select the databases to co&mpact: + Prosím vyberte databázi pro proces 'compact': + + + diff --git a/ConfigFiles/translations/sqlb_de.qm b/ConfigFiles/translations/sqlb_de.qm new file mode 100644 index 0000000..a5dd69a Binary files /dev/null and b/ConfigFiles/translations/sqlb_de.qm differ diff --git a/ConfigFiles/translations/sqlb_de.ts b/ConfigFiles/translations/sqlb_de.ts new file mode 100644 index 0000000..c359697 --- /dev/null +++ b/ConfigFiles/translations/sqlb_de.ts @@ -0,0 +1,7015 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + Über DB-Browser für SQLite + + + + Version + Version + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB-Browser für SQLite ist ein grafisches, freies Open-Source-Tool zum Erstellen, Entwerfen und Bearbeiten von SQLite-Datenbankdateien.</p><p>Es steht unter zwei Lizenzen zur Verfügung: der Mozilla Public License Version 2 und der GNU General Public License Version 3 oder aktueller. Sie können das Programm unter den Bedingungen dieser Lizenzen verändern und weiterverteilen.</p><p>Siehe <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> und <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> für Details.</p><p>Für mehr Informationen über dieses Programm besuchen Sie bitte unsere Website: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">Diese Software verwendet das GPL/LGPL QT Toolkit von </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>Siehe </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> für Lizenzbedingungen und -informationen.</span></p><p><span style=" font-size:small;">Sie verwendet ebenso das Silk-Iconset von Mark James, welches unter einer Creative Commons Attribution 2.5 und 3.0 Lizenz verfügbar ist.<br/>Siehe </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> für Details.</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + Neue Zeile hinzufügen + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + Geben Sie Werte für die neue Zeile unter Beachtung der Constraints ein. Fette Felder sind Pflichtfelder. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + In der Wertspalte können Sie den Wert für das durch die Namensspalte identifizierte Feld angeben. Die Typspalte zeigt den Feldtyp an. Standardwerte werden im Stil von NULL-Werten angezeigt. + + + + Name + Name + + + + Type + Typ + + + + Value + Wert + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + Einzufügende Werte. Vorausgefüllte Standardwerte werden automatisch eingefügt, insofern sie nicht geändert wurden. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + Wenn Sie die Werte im oberen Teil ändern, wird hier das SQL-Query für das Einfügen der neuen Zeile angezeigt. Sie können das Query vor dem Speichern manuell bearbeiten. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Speichern</span> wird das dargestellte SQL-Statement zum Einfügen des neuen Eintrags an die Datenbank übermitteln.</p><p><span style=" font-weight:600;">Voreinstellungen</span> wird die ursprünglichen Werte der <span style=" font-weight:600;">Wert</span>-Spalte wiederherstellen.</p><p><span style=" font-weight:600;">Abbrechen</span> schließt diesen Dialog, ohne die Query auszuführen.</p></body></html> + + + + Auto-increment + + Auto-Inkrement + + + + + Unique constraint + + Unique-Constraint + + + + + Check constraint: %1 + + Prüfungsconstraint: %1 + + + + + Foreign key: %1 + + Fremdschlüssel: %1 + + + + + Default value: %1 + + Standardwert: %1 + + + + + Error adding record. Message from database engine: + +%1 + Fehler beim Hinzufügen der Zeile. Mitteilung der Datenbank-Engine: + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + Sind Sie sicher, dass Sie alle eingegebenen Werte auf ihre Standardwerte zurücksetzen möchten? + + + + Application + + + Possible command line arguments: + Mögliche Kommandozeilen-Argumente: + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + Die Optionen -o/--option und -O/--save-option benötigen ein Argument der Form Gruppe/Einstellung=Wert + + + + Usage: %1 [options] [<database>|<project>] + + + + + + -h, --help Show command line options + + + + + -q, --quit Exit application after running scripts + + + + + -s, --sql <file> Execute this SQL file after opening the DB + + + + + -t, --table <table> Browse this table after opening the DB + + + + + -R, --read-only Open database in read-only mode + + + + + -o, --option <group>/<setting>=<value> + + + + + Run application with this setting temporarily set to value + + + + + -O, --save-option <group>/<setting>=<value> + + + + + Run application saving this value for this setting + + + + + -v, --version Display the current version + + + + + <database> Open this SQLite database + + + + + <project> Open this project file (*.sqbpro) + + + + + The -s/--sql option requires an argument + Die -s/--sql Option benötigt ein Argument + + + + The file %1 does not exist + Die Datei %1 existiert nicht + + + + The -t/--table option requires an argument + Die -t/--table Option benötigt ein Argument + + + + SQLite Version + SQLite-Version + + + + SQLCipher Version %1 (based on SQLite %2) + SQLCipher Version %1 (basierend auf SQLite %2) + + + + DB Browser for SQLite Version %1. + + + + + Built for %1, running on %2 + Erstellt für %1, laufend unter %2 + + + + Qt Version %1 + + + + + Invalid option/non-existant file: %1 + Ungültige Option/nicht existente Datei: %1 + + + + CipherDialog + + + SQLCipher encryption + SQLCipher-Verschlüsselung + + + + &Password + &Passwort + + + + &Reenter password + Wiede&rhole Passwort + + + + Encr&yption settings + &Verschlüsselungs-Einstellungen + + + + SQLCipher &3 defaults + SQLCipher &3 Standardwerte + + + + SQLCipher &4 defaults + SQLCipher &4 Standardwerte + + + + Custo&m + &Benutzerdefiniert + + + + Page si&ze + Seiten&größe + + + + &KDF iterations + &KDF-Iterationen + + + + HMAC algorithm + HMAC-Algorithmus + + + + KDF algorithm + KDF-Algorithmus + + + + Plaintext Header Size + Plaintext-Headergröße + + + + Passphrase + Passphrase + + + + Raw key + Originalschlüssel + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + Setzen Sie bitte einen Schlüssel zum Verschlüsseln der Datenbank. +Beachten Sie, dass bei Änderung der optionalen Einstellungen diese bei jedem Öffnen der Datenbank-Datei eingegeben werden müssen. +Lassen Sie die Passwortfelder leer, um die Verschlüsselung zu deaktivieren. +Der Verschlüsselungsprozess benötigt unter Umständen ein bisschen Zeit und Sie sollten ein Backup-Kopie Ihrer Datenbank haben! Ungespeicherte Änderungen werden vor der Änderung der Verschlüsselung übernommen. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + Geben Sie bitte den zur Verschlüsselung der Datenbank genutzten Schlüssel ein. +Falls weitere Einstellungen für diese Datenbank-Datei vorgenommen worden sind, müssen Sie diese Informationen zusätzlich angeben. + + + + ColumnDisplayFormatDialog + + + Choose display format + Anzeigeformat auswählen + + + + Display format + Anzeigeformat + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + Wählen Sie ein Anzeigeformat für die Spalte '%1', welches bei der Anzeige eines jeden Wertes angewendet wird. + + + + Default + Voreinstellung + + + + Decimal number + Dezimalzahl + + + + Exponent notation + Exponentnotation + + + + Hex blob + Hex-Blob + + + + Hex number + Hexwert + + + + Apple NSDate to date + Apple NSDate zu Datum + + + + Java epoch (milliseconds) to date + Java-Epoche (Millisekunden) zu Datum + + + + .NET DateTime.Ticks to date + + + + + Julian day to date + Julianischer Tag zu Datum + + + + Unix epoch to local time + Unix-Epoche zu lokaler Zeit + + + + Date as dd/mm/yyyy + Datum als dd/mm/yyyy + + + + Lower case + Kleinschreibung + + + + Custom display format must contain a function call applied to %1 + Benutzerdefinierte Darstellungsformate benötigen einen Funktionsaufruf, der auf %1 angewendet wird + + + + Error in custom display format. Message from database engine: + +%1 + Fehler im benutzerdefinierten Anzeigeformat. Meldung von Datenbank: + +%1 + + + + Custom display format must return only one column but it returned %1. + Das benutzerdefinierte Anzeigeformat darf nur eine Spalte zurückgeben, es wurde aber %1 zurückgegeben. + + + + Octal number + Oktalwert + + + + Round number + Gerundeter Wert + + + + Unix epoch to date + Unix-Epoche zu Datum + + + + Upper case + Großschreibung + + + + Windows DATE to date + Windows DATUM zu Datum + + + + Custom + Benutzerdefiniert + + + + CondFormatManager + + + Conditional Format Manager + Verwaltung für bedingte Formatierung + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + Dieser Dialog erlaubt das Erstellen und Bearbeiten bedingter Formatierungen. Jeder Zellenstil wird anhand der ersten erfüllten Bedingung für diese Zelldaten ausgewählt. Bedingte Formatierungen können nach oben und unten bewegt werden, wobei jene weiter oben Vorrang vor jenen weiter unten haben. Der Syntax für Bedingungen ist der gleiche wie bei Filtern und eine leere Bedingung trifft auf alle Werte zu. + + + + Add new conditional format + Neue bedingte Formatierung hinzufügen + + + + &Add + &Hinzufügen + + + + Remove selected conditional format + Ausgewählte bedingte Formatierung entfernen + + + + &Remove + &Entfernen + + + + Move selected conditional format up + Ausgewählte bedingte Formatierung nach oben bewegen + + + + Move &up + Nach &oben + + + + Move selected conditional format down + Ausgewählte bedingte Formatierung nach unten bewegen + + + + Move &down + Nach &unten + + + + Foreground + Vordergrund + + + + Text color + Textfarbe + + + + Background + Hintergrund + + + + Background color + Hintergrundfarbe + + + + Font + Schrift + + + + Size + Größe + + + + Bold + Fett + + + + Italic + Kursiv + + + + Underline + Unterstreichung + + + + Alignment + Ausrichtung + + + + Condition + Bedingung + + + + + Click to select color + Zur Auswahl der Farbe klicken + + + + Are you sure you want to clear all the conditional formats of this field? + Sollen wirklich alle bedingten Formatierungen dieses Felds gelöscht werden? + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + Geben Sie bitte einen Datenbanknamen an, mit dem Sie auf die anhängte Datenbank zugreifen möchten + + + + Invalid file format + Ungültiges Dateiformat + + + + Do you want to save the changes made to the database file %1? + Sollen die getätigten Änderungen an der Datenbank-Datei %1 gespeichert werden? + + + + Exporting database to SQL file... + Datenbank in SQL-Datei exportieren... + + + + + Cancel + Abbrechen + + + + Executing SQL... + SQL ausführen... + + + + Action cancelled. + Vorgang abgebrochen. + + + + This database has already been attached. Its schema name is '%1'. + Diese Datenbank wurde bereits angehängt. Ihr Schemaname ist '%1'. + + + + Do you really want to close this temporary database? All data will be lost. + Möchten Sie diese temporäre Datenbank wirklich schließen? Alle Daten gehen damit verloren. + + + + Database didn't close correctly, probably still busy + Datenbank wurde nicht richtig geschlossen, vermutlich noch in Bearbeitung + + + + The database is currently busy: + Die Datenbank ist zur Zeit beschäfigt: + + + + Do you want to abort that other operation? + Möchten Sie die andere Operation abbrechen? + + + + + No database file opened + Keine Datenbankdatei geöffnet + + + + + Error in statement #%1: %2. +Aborting execution%3. + Fehler im Statement #%1: %2. +Ausführung wird abgebrochen %3. + + + + + and rolling back + und der Zustand zurückgesetzt + + + + didn't receive any output from %1 + keine Ausgabe von %1 erhalten + + + + could not execute command: %1 + Befehl konnte nicht ausgeführt werden: %1 + + + + Cannot delete this object + Dieses Objekt kann nicht gelöscht werden + + + + Cannot set data on this object + Daten können für dieses Objekt nicht gesetzt werden + + + + + A table with the name '%1' already exists in schema '%2'. + Es existiert eine Tabelle mit dem Namen '%1' im Schema '%2'. + + + + No table with name '%1' exists in schema '%2'. + Im Schema '%2' existiert keine Tabelle mit dem Namen '%1'. + + + + + Cannot find column %1. + Spalte %1 kann nicht gefunden werden. + + + + Creating savepoint failed. DB says: %1 + Erstellung des Sicherungspunktes fehlgeschlagen. DB meldet: %1 + + + + Renaming the column failed. DB says: +%1 + Umbenennung der Spalte fehlgeschlagen. DB meldet: +%1 + + + + + Releasing savepoint failed. DB says: %1 + Entsperren des Sicherungspunktes fehlgeschlagen. DB meldet: %1 + + + + Creating new table failed. DB says: %1 + Erstellen der neuen Tabelle ist fehlgeschlagen. DB meldet: %1 + + + + Copying data to new table failed. DB says: +%1 + Kopieren der Daten zur neuen Tabelle ist fehlgeschlagen. DB meldet: +%1 + + + + Deleting old table failed. DB says: %1 + Löschen der alten Tabelle ist fehlgeschlagen. DB meldet: %1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + Fehler beim Umbenennen der Tabelle '%1' zu '%2'. +Meldung von Datenbank: +%3 + + + + could not get list of db objects: %1 + Liste der DB-Objekte konnte nicht abgefragt werden: %1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + Wiederherstellung einiger mit dieser Tabelle verbundener Objekte fehlgeschagen. Dies passiert häufig durch geänderte Spaltennamen. SQL-Statement zum manuellen Reparieren und Ausführen: + + + + + + could not get list of databases: %1 + konnte keine Datenbankliste abrufen: %1 + + + + Error loading extension: %1 + Fehler beim Laden der Erweiterung: %1 + + + + could not get column information + Spalteninformationen konnten nicht errmittelt werden + + + + Error setting pragma %1 to %2: %3 + Fehler beim Setzen des Pragmas %1 auf %2: %3 + + + + File not found. + Datei nicht gefunden. + + + + DbStructureModel + + + Name + Name + + + + Object + Objekt + + + + Type + Typ + + + + Schema + Schema + + + + Database + Datenbank + + + + Browsables + Durchsuchbar + + + + All + Alle + + + + Temporary + Temporär + + + + Tables (%1) + Tabellen (%1) + + + + Indices (%1) + Indizes (%1) + + + + Views (%1) + Ansichten (%1) + + + + Triggers (%1) + Trigger (%1) + + + + EditDialog + + + Edit database cell + Datenbank-Zelle bearbeiten + + + + Mode: + Modus: + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + Dies ist die Liste der unterstützten Modi des Zelleneditors. Wählen Sie einen Modus für die Anzeige oder Bearbeitung der Daten der aktuellen Zelle aus. + + + + RTL Text + RTL-Text + + + + + Image + Bild + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + Den Editormodus automatisch dem geladenen Datentyp anpassen + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + Dieser Button aktiviert oder deaktiviert den automatischen Wechsel des Editormodus. Wenn eine neue Zelle ausgewählt wird oder neue Daten importiert werden und der automatische Wechsel aktiviert ist, passt sich der Modus dem erkannten Datentyp an. Sie können den Editormodus danach manuell ändern. Falls Sie dies bei der Bewegung durch die Zellen im manuell eingestellten Modus behalten möchten, deaktivieren Sie den Button. + + + + Auto-switch + Auto-Wechsel + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + Der Text-Editor-Modus erlaubt das Bearbeiten von Reintext sowie JSON- oder XML-Daten mit Syntaxhervorhebung, automatischer Formatierung und Validierung vor dem Speichern. + +Fehler werden mittels eine roten Wellenlinie angezeigt. + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + Dieser Qt-Editor wird für rechts-nach-links-Eingaben verwendet, welche vom Standard-Texteditor nicht unterstützt werden. Das Vorhandensein von rechts-nach-links-Zeichen wird erkannt und dieser Editormodus wird automatisch ausgewählt. + + + + Open preview dialog for printing the data currently stored in the cell + Vorschau-Dialog öffnen, um die aktuell in der Zelle gespeicherten Daten auszugeben + + + + Auto-format: pretty print on loading, compact on saving. + Auto-Format: Druckoptimierung (Pretty Print) beim Laden, kompakt beim Speichern. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + Falls aktiviert, formatiert die Auto-Format-Funktion die Daten beim Laden, bricht den Text in Zeilen und rückt ihn ein für maximale Lesbarkeit. Beim Speichern der Daten verdichtet die Auto-Format-Funktion die Daten durch das Entfernen der Zeilenumbrüche und unnötigen Leerzeichen. + + + + Word Wrap + Wortumbrüche + + + + Wrap lines on word boundaries + Zeilen an Wortgrenzen umbrechen + + + + + Open in default application or browser + Mit der Standardanwendung oder dem Browser öffnen + + + + Open in application + Mit Anwendung öffnen + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + Der Wert wird als Datei oder URL interpretiert und mit der Standardanwendung oder dem Web-Browser geöffnet. + + + + Save file reference... + Dateireferenz speichern... + + + + Save reference to file + Referenz in Datei speichern + + + + + Open in external application + Mit externer Anwendung öffnen + + + + Autoformat + Auto-Format + + + + &Export... + &Exportieren... + + + + + &Import... + &Importieren... + + + + + Import from file + Aus Datei importieren + + + + + Opens a file dialog used to import any kind of data to this database cell. + Öffnet einen Dateidialog, um jegliche Art von Daten in diese Datenbankzelle zu importieren. + + + + Export to file + In Datei exportieren + + + + Opens a file dialog used to export the contents of this database cell to a file. + Öffnet einen Dateidialog, um den Inhalt dieser Datenbankzelle in eine Datei zu exportieren. + + + + + Print... + Drucken... + + + + Open preview dialog for printing displayed image + Vorschaudialog zum Drucken des angezeigten Bildes öffnen + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + Vorschaudialog zum Drucken des angezeigten Textes öffnen + + + + Copy Hex and ASCII + Hex und ASCII kopieren + + + + Copy selected hexadecimal and ASCII columns to the clipboard + Ausgewählte hexadezimale und ASCII-Spalten in die Zwischenablage kopieren + + + + Ctrl+Shift+C + + + + + Set as &NULL + Auf &NULL setzen + + + + Apply data to cell + Daten auf Zelle anwenden + + + + This button saves the changes performed in the cell editor to the database cell. + Dieser Button speichert die im Zelleneditor für die Datenbankzelle durchgeführten Änderungen. + + + + Apply + Übernehmen + + + + Text + Text + + + + Binary + Binär + + + + Erases the contents of the cell + Löscht den Inhalt der Zelle + + + + This area displays information about the data present in this database cell + Dieser Bereich stellt Informationen über die Daten in dieser Datenbank-Zelle dar + + + + Type of data currently in cell + Art der Daten in dieser Zelle + + + + Size of data currently in table + Größe der Daten in dieser Tabelle + + + + Choose a filename to export data + Dateinamen für den Datenexport wählen + + + + Type of data currently in cell: %1 Image + Art der Daten in der aktuellen Zelle: %1 Bild + + + + %1x%2 pixel(s) + %1x%2 Pixel + + + + Type of data currently in cell: NULL + Art der Daten in dieser Zelle: NULL + + + + + Type of data currently in cell: Text / Numeric + Art der Daten in dieser Zelle: Text / Numerisch + + + + + Image data can't be viewed in this mode. + In diesem Modus können keine Bilddaten angezeigt werden. + + + + + Try switching to Image or Binary mode. + Versuchen Sie, in den Bild- oder Binär-Modus zu wechseln. + + + + + Binary data can't be viewed in this mode. + Binärdaten können in diesem Modus nicht angezeigt werden. + + + + + Try switching to Binary mode. + Versuchen Sie, in den Binär-Modus zu wechseln. + + + + Couldn't save file: %1. + Datei konnte nicht gespeichert werden: %1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + Die Daten wurden in einer temporären Datei gespeichert und jene wurde mit der Standardanwendung geöffnet. Die Datei kann nun bearbeitet werden. Am Ende der Bearbeitungen können die gespeicherten neuen Daten auf den Zelleneditor angewandt oder die Änderungen verworfen werden. + + + + + Image files (%1) + Bilddateien (%1) + + + + Binary files (*.bin) + Binärdateien (*.bin) + + + + Choose a file to import + Datei für Import auswählen + + + + %1 Image + %1 Bild + + + + Invalid data for this mode + Ungültige Daten für diesen Modus + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + Die Zelle enthält ungültige %1-Daten. Grund: %2. Möchten Sie diese wirklich auf die Zelle anwenden? + + + + + + %n character(s) + + %n Zeichen + %n Zeichen + + + + + Type of data currently in cell: Valid JSON + Aktueller Datentyp in dieser Zelle: Gültiges JSON + + + + Type of data currently in cell: Binary + Art der Daten in dieser Zelle: Binär + + + + + %n byte(s) + + %n Byte + %n Bytes + + + + + EditIndexDialog + + + &Name + &Name + + + + Order + Sortierung + + + + &Table + &Tabelle + + + + Edit Index Schema + Index-Schema bearbeiten + + + + &Unique + Einde&utig + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + Zum Einschränken des Index auf einen Teil der Tabelle kann hier eine WHERE-Klausel angegeben werden, die den Teil der Tabelle auswählt, der indexiert werden soll + + + + Partial inde&x clause + Teilinde&x-Klausel + + + + Colu&mns + &Spalten + + + + Table column + Tabellenspalte + + + + Type + Typ + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + Fügt eine neue Ausdrucksspalte zum Index hinzu. Ausdrucksspalten enthalten SQL-Ausdrücke statt Spaltennamen. + + + + Index column + Indexspalte + + + + Deleting the old index failed: +%1 + Löschen des alten Index fehlgeschlagen: %1 + + + + Creating the index failed: +%1 + Erstellen des Index fehlgeschlagen: +%1 + + + + EditTableDialog + + + Edit table definition + Tabellen-Definition bearbeiten + + + + Table + Tabelle + + + + Advanced + Erweitert + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + Als 'WITHOUT rowid'-Tabelle markieren. Das Setzen dieses Flags erfordert ein Feld vom Typ INTEGER mit gesetzten Primärkey-Flag und nicht gesetztem Autoinkrement-Flag. + + + + Without Rowid + Ohne Rowid + + + + Fields + Felder + + + + Database sche&ma + Datenbank-Sche&ma + + + + Add + Hinzufügen + + + + Remove + Entfernen + + + + Move to top + Zum Beginn + + + + Move up + Nach oben + + + + Move down + Nach unten + + + + Move to bottom + Zum Ende + + + + + Name + Name + + + + + Type + Typ + + + + NN + NN + + + + Not null + Nicht Null + + + + PK + PK + + + + Primary key + Primärschlüssel + + + + AI + AI + + + + Autoincrement + Autoinkrement + + + + U + + + + + + + Unique + Eindeutig + + + + Default + Voreinstellung + + + + Default value + Voreingestellter Wert + + + + + + Check + Prüfen + + + + Check constraint + Beschränkung prüfen + + + + Collation + Kollation + + + + + + Foreign Key + Fremdschlüssel + + + + Constraints + Constraints + + + + Add constraint + Constraint hinzufügen + + + + Remove constraint + Constraint entfernen + + + + Columns + Spalten + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style="font-weight:600; color:#ff0000;">Warnung: </span>Diese Tabellendefinitionenthält Elemente, die unser Parser nicht vollständig versteht. Das Ändern und Speichern der Tabelle kann zu Problemen führen.</p></body></html> + + + + + Primary Key + Primärschlüssel + + + + Add a primary key constraint + Ein Constraint für den Primärschlüssel hinzufügen + + + + Add a foreign key constraint + Ein Constraint für den Fremdschlüssel hinzufügen + + + + Add a unique constraint + Ein Unique-Constraint hinzufügen + + + + Add a check constraint + Ein Prüfungs-Constraint hinzufügen + + + + Error creating table. Message from database engine: +%1 + Fehler beim Erstellen der Tabelle. Meldung der Datenbank: +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Es existiert bereits ein Feld mit diesem Namen. Bitte benennen Sie es zunächst um oder wählen Sie einen anderen Namen für dieses Feld. + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + Es kann nur einen Primärschlüssel für jede Tabelle geben. Bitte stattdessen den existierenden Primärschlüssel bearbeiten. + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + Diese Spalte wird in einem Fremdschlüssel in Tabelle %1 referenziert und kann aus diesem Grund nicht geändert werden. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + Mindestens eine Reihe enthält ein Feld mit dem Wert NULL. Dies verhindert das Setzen dieser Markierung. Bitte zunächst die Tabellendaten ändern. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + Mindestens eine Reihe enthält ein Feld mit einem nicht ganzzahligen Wert. Dies verhindert das Setzen der AI-Markierung. Bitte zunächst die Tabellendaten ändern. + + + + Column '%1' has duplicate data. + + Spalte '%1' hat doppelte Daten. + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + Dies macht das Aktivieren des 'Unique'-Flags unmöglich. Bitte die doppelten Daten entfernen, damit das 'Unique'-Flag dann aktiviert werden kann. + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + Soll das Feld '%1' wirklich gelöscht werden? +Alle aktuell in diesem Feld gespeicherten Daten gehen verloren. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + Bitte fügen Sie vor dem Setzen des "Without rowid"-Flags ein Feld hinzu, welches folgenden Kriterien entspricht: + - Primärschlüssel-Flag gesetzt + - Autoinkrement deaktiviert + + + + ExportDataDialog + + + Export data as CSV + Daten als CSV exportieren + + + + Tab&le(s) + Tabe&lle(n) + + + + Colu&mn names in first line + &Spaltennamen in der ersten Zeile + + + + Fie&ld separator + Fe&ld-Separator + + + + , + , + + + + ; + ; + + + + Tab + Tab + + + + | + | + + + + + + Other + Anderer + + + + &Quote character + &String-Zeichen + + + + " + " + + + + ' + ' + + + + New line characters + Zeilenumbruchs-Zeichen + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + Pretty Print + + + + + Could not open output file: %1 + Ausgabedatei konnte nicht geöffnet werden: %1 + + + + + Choose a filename to export data + Dateinamen für den Datenexport wählen + + + + Export data as JSON + Daten als JSON exportieren + + + + exporting CSV + exportiere CSV + + + + exporting JSON + exportiere JSON + + + + Please select at least 1 table. + Bitte mindestens eine Tabelle auswählen. + + + + Choose a directory + Verzeichnis wählen + + + + Export completed. + Export abgeschlossen. + + + + ExportSqlDialog + + + Export SQL... + SQL exportieren... + + + + Tab&le(s) + Tabe&lle(n) + + + + Select All + Alle auswählen + + + + Deselect All + Alle abwählen + + + + &Options + &Optionen + + + + Keep column names in INSERT INTO + Spaltennamen in INSERT INTO belassen + + + + Multiple rows (VALUES) per INSERT statement + Mehrere Reihen (VALUES) je INSERT-Statement + + + + Export everything + Alles exportieren + + + + Export schema only + Nur Schema exportieren + + + + Export data only + Nur Daten exportieren + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + Altes Schema behalten (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Altes Schema überschreiben (DROP TABLE, dann CREATE TABLE) + + + + Please select at least one table. + Bitte wählen Sie mindestens eine Tabelle aus. + + + + Choose a filename to export + Dateinamen zum Export auswählen + + + + Export completed. + Export abgeschlossen. + + + + Export cancelled or failed. + Export abgebrochen oder fehlgeschlagen. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + Suchen... + + + + Find and Replace... + Suchen und ersetzen... + + + + Print... + Drucken... + + + + ExtendedTableWidget + + + Use as Exact Filter + Als exakten Filter verwenden + + + + Containing + Enthält + + + + Not containing + Enthält nicht + + + + Not equal to + Ungleich zu + + + + Greater than + Größer als + + + + Less than + Kleiner als + + + + Greater or equal + Größer oder gleich + + + + Less or equal + Kleiner oder gleich + + + + Between this and... + Zwischen diesem und... + + + + Regular expression + Regulärer Ausdruck + + + + Edit Conditional Formats... + Bedingte Formatierungen bearbeiten... + + + + Set to NULL + Auf NULL setzen + + + + Copy + Kopieren + + + + Copy with Headers + Mit Headern kopieren + + + + Copy as SQL + Als SQL kopieren + + + + Paste + Einfügen + + + + Print... + Drucken... + + + + Use in Filter Expression + In Filterausdruck verwenden + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + Der Inhalt der Zwischenablage ist größer als der ausgewählte Bereich. Soll er dennoch eingefügt werden? + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>Es wurden nicht alle Daten geladen. <b>Sollen vor dem Auswählen aller Zeilen alle Daten geladen werden?</b><p><p>Das Antworten von <b>Nein</b> wird keine weiteren Daten laden und die Auswahl nicht durchführen.</br>Das Antworten von <b>Ja</b> benötigt möglicherweise einige Zeit, während die Daten geladen werden, aber die Auswahl wird vollständig sein.</p>Warnung: Das Laden aller Daten benötigt bei großen Tabellen möglicherweise eine große Menge an Speicher. + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + Auswahl kann nicht auf NULL gesetzt. Die Spalte %1 hat ein NOT NULL Constraint. + + + + FileExtensionManager + + + File Extension Manager + Dateierweiterungs-Manager + + + + &Up + H&och + + + + &Down + &Runter + + + + &Add + &Hinzufügen + + + + &Remove + &Entfernen + + + + + Description + Beschreibung + + + + Extensions + Erweiterungen + + + + *.extension + *.erweiterung + + + + FilterLineEdit + + + Filter + Filtern + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + Diese Eingabefelder erlauben Ihnen das Anwenden von schnellen Filtern in der aktuell ausgewählten Tabelle. +Standardmäßig werden Zeilen, die den Eingabetext beinhalten, herausgefiltert. +Zudem werden die folgenden Operatoren unterstützt: +% Wildcard +> Größer als +< Kleiner als +>= Größer oder gleich +<= Kleiner oder gleich += Gleich: exakte Übereinstimmung +<> Ungleich:exakte inverse Übereinstimmung +x~y Bereich: Werte zwischen x und y +/regexp/ Werte, die dem regulären Ausdruck genügen + + + + Clear All Conditional Formats + Alle bedingten Formatierungen löschen + + + + Use for Conditional Format + Als bedingte Formatierung verwenden + + + + Edit Conditional Formats... + Bedingte Formatierungen bearbeiten... + + + + Set Filter Expression + Filterausdruck setzen + + + + What's This? + Was ist das? + + + + Is NULL + Ist NULL + + + + Is not NULL + Ist nicht NULL + + + + Is empty + Ist leer + + + + Is not empty + Ist nicht leer + + + + Not containing... + Enthält nicht... + + + + Equal to... + Gleich zu... + + + + Not equal to... + Ungleich zu... + + + + Greater than... + Größer als... + + + + Less than... + Kleiner als... + + + + Greater or equal... + Größer oder gleich... + + + + Less or equal... + Kleiner oder gleich... + + + + In range... + Im Bereich... + + + + Regular expression... + Regulärer Ausdruck... + + + + FindReplaceDialog + + + Find and Replace + Suchen und Ersetzen + + + + Fi&nd text: + Text fi&nden: + + + + Re&place with: + Er&setzen mit: + + + + Match &exact case + &Exakte Schreibung + + + + Match &only whole words + Nur &ganze Wörter + + + + When enabled, the search continues from the other end when it reaches one end of the page + Falls aktiviert, fährt die Suche am anderen Ende fort, wenn sie das Ende der Seite erreicht hat + + + + &Wrap around + &Umbrechen + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + Falls gesetzt, erfolgt die Suche rückwärts von der Cursorposition, andernfalls erfolgt sie vorwärts + + + + Search &backwards + Rück&wärts suchen + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>Wenn ausgewählt, wird das gesuchte Muster nur in der aktuellen Auswahl gesucht.</p></body></html> + + + + &Selection only + Nur Au&swahl + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Falls aktiviert, wird das Suchmuster als regulärer Ausdruck (UNIX-Stil) interpretiert. Siehe <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks (englisch)</a>.</p></body></html> + + + + Use regular e&xpressions + Reguläre A&usdrücke verwenden + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + Das nächste Auftreten ausgehend von der Cursorpositoin und in der durch "Rückwärts suchen" gesetzten Richtung finden + + + + &Find Next + Nächste &finden + + + + F3 + + + + + &Replace + &Ersetzen + + + + Highlight all the occurrences of the text in the page + Alle Auftreten des Textes auf der Seite hervorheben + + + + F&ind All + Alle f&inden + + + + Replace all the occurrences of the text in the page + Alle Auftreten des Textes auf der Seite ersetzen + + + + Replace &All + &Alle ersetzen + + + + The searched text was not found + Der gesuchte Text wurde nicht gefunden + + + + The searched text was not found. + Der gesuchte Text wurde nicht gefunden. + + + + The searched text was found one time. + Der gesuchte Text wurde einmal gefunden. + + + + The searched text was found %1 times. + Der gesuchte Text wurde %1-mal gefunden. + + + + The searched text was replaced one time. + Der gesuchte Text wurde einmal ersetzt. + + + + The searched text was replaced %1 times. + Der gesuchte Text wurde %1-mal ersetzt. + + + + ForeignKeyEditor + + + &Reset + Zu&rücksetzen + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + Fremdschlüssel-Klauseln (ON UPDATE, ON DELETE etc.) + + + + ImportCsvDialog + + + Import CSV file + CSV-Datei importieren + + + + Table na&me + Tabellenna&me + + + + &Column names in first line + &Spaltennamen in erster Zeile + + + + Field &separator + Feld-&Separator + + + + , + , + + + + ; + ; + + + + + Tab + Tab + + + + | + | + + + + Other + Anderer + + + + &Quote character + &String-Zeichen + + + + + Other (printable) + Anderer (darstellbar) + + + + + Other (code) + Anderer (Code) + + + + " + " + + + + ' + ' + + + + &Encoding + &Codierung + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + Felder trimmen? + + + + Separate tables + Tabellen trennen + + + + Advanced + Erweitert + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + Beim Import eines leeren Wertes aus einer CSV-Datei in eine existierende Tabelle mit einem Standardwert für diese Spalte wird dieser Standardwert eingefügt. Aktivieren Sie diese Option, um stattdessen einen leeren Wert einzufügen. + + + + Ignore default &values + Standard&werte ignorieren + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + Aktivieren Sie diese Option, um den Import zu stoppen, falls ein leerer Wert in eine NOT-NULL-Spalte ohne Standardwert importiert werden soll. + + + + Fail on missing values + Fehler bei fehlenden Werten + + + + Disable data type detection + Datentyp-Erkennung deaktivieren + + + + Disable the automatic data type detection when creating a new table. + Die automatische Datentyperkennung bei der Erstellung einer neuen Tabelle deaktivieren. + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + Beim Import von Daten in eine existierende Tabelle mit einem Primärschlüssel, Unique-Constraints oder einem eindeutigen Index besteht die Möglichkeit von Konflikten. Diese Option erlaubt die Auswahl einer Strategie für diesen Fall: Standardmäßig wird der Import abgebrochen und zurückgerollt, aber es besteht auch die Option des Ignorierens und somit Nicht-Importierens in Konflikt stehender Zeilen oder des Ersetzens existierender Zeilen der Tabelle. + + + + Abort import + Import abbrechen + + + + Ignore row + Zeile ignorieren + + + + Replace existing row + Existierende Zeile ersetzen + + + + Conflict strategy + Konflikt-Strategie + + + + + Deselect All + Alle abwählen + + + + Match Similar + Ähnliche suchen + + + + Select All + Alle auswählen + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + Es gibt bereits eine Tabelle namens '%1' und ein Import in eine existierende Tabelle ist nur bei übereinstimmender Spaltenanzahl möglich. + + + + There is already a table named '%1'. Do you want to import the data into it? + Es gibt bereits eine Tabelle namens '%1'. Möchten Sie die Daten in diese importieren? + + + + Creating restore point failed: %1 + Erstellung des Wiederherstellungspunktes fehlgeschlagen: %1 + + + + Creating the table failed: %1 + Erstellung der Tabelle fehlgeschlagen: %1 + + + + importing CSV + importierte CSV + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + Import der Datei '%1' benötigte %2ms. Davon wurden %3ms in der Zeilenfunktion verbracht. + + + + Inserting row failed: %1 + Einfügen der Zeile fehlgeschlagen: %1 + + + + MainWindow + + + toolBar1 + Toolbar1 + + + + Opens the SQLCipher FAQ in a browser window + Öffnt die SQLCiper FAQ in einem Browserfenster + + + + Export one or more table(s) to a JSON file + Exportiert eine oder mehrere Tabelle(n) in eine JSON-Datei + + + + DB Browser for SQLite + DB Browser für SQLite + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + Dies ist die Struktur der geöffneten Datenbank. +Sie können SQL-Statements aus einer Objektzeile fassen und in anderen Anwendungen oder einer anderen 'DB-Browser für SQLite'-Instanz ablegen. + + + + + Un/comment block of SQL code + Kommentieren/Unkommentieren eines Block von SQL-Code + + + + Un/comment block + Block kommentieren/unkommentieren + + + + Comment or uncomment current line or selected block of code + Aktuelle Zeilen oder ausgewählten Codeblock kommentieren oder unkommentieren + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + Aktuelle Zeilen oder aktuelle Zeile kommentieren oder unkommentieren, wenn es keine Auswahl gibt. Der gesamte Block wird entsprechend der ersten Zeile invertiert. + + + + Ctrl+/ + + + + + Stop SQL execution + SQL-Ausführung abbrechen + + + + Stop execution + Ausführung abbrechen + + + + Stop the currently running SQL script + Das aktuelle laufende SQL-Skript stoppen + + + + Error Log + Fehlerlog + + + + Ctrl+F4 + + + + + Compact &Database... + &Datenbank komprimieren... + + + + Execute all/selected SQL + Komplettes/ausgewähltes SQL ausführen + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + Dieser Button führt das aktuell ausgewählte SQL-Statement aus. Falls kein Text ausgewählt ist, werden alle SQL-Statements ausgeführt. + + + + &Load Extension... + Erweiterung &laden... + + + + Execute line + Zeile ausführen + + + + &Wiki + &Wiki + + + + F1 + + + + + Bug &Report... + Fehle&rmeldung... + + + + Feature Re&quest... + Funktions&anfrage... + + + + Web&site + Web&seite + + + + &Donate on Patreon... + Über &Patreon spenden... + + + + Open &Project... + &Projekt öffnen... + + + + &Attach Database... + Datenbank &anhängen... + + + + + Add another database file to the current database connection + Eine andere Datenbankdatei zur aktuellen Datenbankverbindung hinzufügen + + + + This button lets you add another database file to the current database connection + Dieser Button erlaubt Ihnen das Hinzufügen einer anderen Datenbankdatei zur aktuellen Datenbankverbindung + + + + &Set Encryption... + Verschlüsselung &setzen... + + + + SQLCipher &FAQ + SQLCiper &FAQ + + + + Table(&s) to JSON... + Tabelle(&n) zu JSON... + + + + Open Data&base Read Only... + Daten&bank im Lesemodus öffnen... + + + + Ctrl+Shift+O + + + + + Save results + Ergebnisse speichern + + + + Save the results view + Ergebnisansicht speichern + + + + This button lets you save the results of the last executed query + Dieser Button erlaubt Ihnen das Speichern der Ergebnisse der zuletzt ausgeführten Query + + + + + Find text in SQL editor + Text im SQL-Editor finden + + + + Find + Suchen + + + + This button opens the search bar of the editor + Dieser Button öffnet die Suchleiste des Editors + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + Text im SQL-Editor suchen oder ersetzen + + + + Find or replace + Suchen oder ersetzen + + + + This button opens the find/replace dialog for the current editor tab + Dieser Button öffnet den Suchen-/Ersetzen-Dialog für den aktuellen Editortab + + + + Ctrl+H + + + + + Export to &CSV + Nach &CSV exportieren + + + + Save as &view + Als &View speichern + + + + Save as view + Als View speichern + + + + Browse Table + Tabelle durchsuchen + + + + Shows or hides the Project toolbar. + Zeigt oder versteckt die Projekt-Werkzeugleiste. + + + + Extra DB Toolbar + Extra-DB-Werkzeugleiste + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + Dieser Button erlaubt Ihnen das Speichern aller mit der geöffneten DB verbundenen Einstellungen in einer DB-Browser für SQLite-Projektdatei + + + + This button lets you open a DB Browser for SQLite project file + Dieser Button erlaubt Ihnen das Öffnen einer DB-Browser für SQLite-Projektdatei + + + + New In-&Memory Database + Neue In-&Memory-Datenbank + + + + Drag && Drop Qualified Names + Drag && Drop qualifizierter Namen + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + Qualifizierte Namen (z.B. "Tabelle."Feld") verwenden, wenn die Objekte gefasst und im Editor abgelegt werden + + + + Drag && Drop Enquoted Names + Drag && Drop zitierter Namen + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + Geschützte Identifier (z.B. "Tabelle1") verwenden, wenn die Objekte gefasst und im Editor abgelegt werden + + + + &Integrity Check + &Integritätsprüfung + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + Führt das integrity_check-Pragma auf der geöffneten Datenbank aus und gibt die Ergebnisse im SQL-Tab zurück. Dieses Pragma führt eine Integritätsprüfung der gesamten Datenbank durch. + + + + &Foreign-Key Check + &Fremdschlüssel-Prüfung + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + Führt das foreign_key_check-Pragma auf der geöffneten Datenbank aus und gibt die Ergebnisse im SQL-Tab zurück + + + + &Quick Integrity Check + &Schnelle Integritätsprüfung + + + + Run a quick integrity check over the open DB + Führt eine schnelle Integritätsprüfung der geöffneten DB aus + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + Führt das quick_check-Pragma auf der geöffneten Datenbank aus und gibt die Ergebnisse im SQL-Tab zurück. Dieser Befehl führt einen Großteil der Prüfung des integrity_check-Pragmas aus, ist aber deutlich schneller. + + + + &Optimize + &Optimieren + + + + Attempt to optimize the database + Versuchen, die Datenbank zu optimieren + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + Führt das optimize-Pragma auf der geöffneten Datenbank aus. Dieses Pragma führt möglicherweise Optimierungen durch, die die Performanz zukünftiger Queries verbessern. + + + + + Print + Drucken + + + + Print text from current SQL editor tab + Den Text aus dem aktuellen SQL-Editortab drucken + + + + Open a dialog for printing the text in the current SQL editor tab + Einen Dialog zum Drucken des Textes im aktuellen SQL-Editortab öffnen + + + + Print the structure of the opened database + Die Struktur der geöffneten Datenbank drucken + + + + Open a dialog for printing the structure of the opened database + Einen Dialog zum Drucken der Struktur der geöffneten Datenbank öffnen + + + + &Save Project As... + Projekt &speichern als... + + + + + + Save the project in a file selected in a dialog + Das Projekt in einer in einem Dialog ausgewählten Datei speichern + + + + Save A&ll + &Alle speichern + + + + + + Save DB file, project file and opened SQL files + DB-Datei, Projektdatei und geöffnete SQL-Dateien speichern + + + + Ctrl+Shift+S + + + + + Open an existing database file in read only mode + Eine existierende Datenbank schreibgeschützt öffnen + + + + &File + &Datei + + + + &Import + &Import + + + + &Export + &Export + + + + &Edit + &Bearbeiten + + + + &View + &Ansicht + + + + &Help + &Hilfe + + + + Edit Database &Cell + Datenbank&zelle bearbeiten + + + + This button clears the contents of the SQL logs + Dieser Button löscht den Inhalt der SQL-Logs + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + Dieses Panel erlaubt Ihnen das Betrachten eines Logs aller SQL-Kommandos, die von der Anwendung oder von Ihnen selbst ausgegangen sind + + + + DB Sche&ma + DB-Sche&ma + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + Dies ist die Struktur der geöffneten Datenbank. +Sie können mehrere Objektnamen aus der Namensspalte nehmen und in den SQL-Editor ziehen und Sie können die Eigenschaften der abgelegten Namen über das Kontextmenü anpassen. Dies kann Sie bei der Erstellung von SQL-Statements unterstützen. +Sie können SQL-Statements aus der Schemaspalte nehmen und in den SQL-Editor oder in anderen Anwendungen ablegen. + + + + + &Remote + Entfe&rnt + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + SQL ausführen + + + + Open SQL file(s) + SQL-Datei(en) öffnen + + + + This button opens files containing SQL statements and loads them in new editor tabs + Dieser Button öffnet Dateien mit SQL-Anweisungen und lädt diese in neue Editortabs + + + + + Execute current line + Aktuelle Zeile ausführen + + + + This button executes the SQL statement present in the current editor line + Dieser Button führt das SQL-Statement in der aktuellen Editorzeile aus + + + + Shift+F5 + + + + + Sa&ve Project + &Projekt speichern + + + + + Save SQL file as + SQL-Datei speichern als + + + + This button saves the content of the current SQL editor tab to a file + Dieser Button speichert den Inhalt des aktuellen SQL-Editortabs in einer Datei + + + + &Browse Table + Tabelle &durchsuchen + + + + Copy Create statement + Create-Statement kopieren + + + + Copy the CREATE statement of the item to the clipboard + CREATE-Statement des Elements in die Zwischenablage kopieren + + + + User + Benutzer + + + + Application + Anwendung + + + + &Clear + &Leeren + + + + &New Database... + &Neue Datenbank... + + + + + Create a new database file + Neue Datenbank-Datei erstellen + + + + This option is used to create a new database file. + Diese Option wird zum Erstellen einer neuen Datenbank-Datei verwendet. + + + + Ctrl+N + + + + + + &Open Database... + Datenbank &öffnen... + + + + + + + + Open an existing database file + Existierende Datenbank-Datei öffnen + + + + + + This option is used to open an existing database file. + Diese Option wird zum Öffnen einer existierenden Datenbank-Datei verwendet. + + + + Ctrl+O + + + + + &Close Database + Datenbank &schließen + + + + This button closes the connection to the currently open database file + Dieser Button schließt die Verbindung zu der aktuell geöffneten Datenbankdatei + + + + + Ctrl+W + + + + + + Revert database to last saved state + Datenbank auf zuletzt gespeicherten Zustand zurücksetzen + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + Diese Option wird zum Zurücksetzen der aktuellen Datenbank-Datei auf den zuletzt gespeicherten Zustand verwendet. Alle getätigten Änderungen gehen verloren. + + + + + Write changes to the database file + Änderungen in Datenbank-Datei schreiben + + + + This option is used to save changes to the database file. + Diese Option wird zum Speichern von Änderungen in der Datenbank-Datei verwendet. + + + + Ctrl+S + + + + + Compact the database file, removing space wasted by deleted records + Datenbank-Datei komprimieren, löscht Speicherplatz von gelöschten Zeilen + + + + + Compact the database file, removing space wasted by deleted records. + Datenbank-Datei komprimieren, löscht Speicherplatz von gelöschten Zeilen. + + + + E&xit + &Beenden + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + Daten von einer .sql-Dump-Textdatei in eine neue oder existierende Datenbank importieren. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + Diese Option wird zum Importieren von Daten von einer .sql-Dump-Textdatei in eine neue oder existierende Datenbank verwendet. SQL-Dumpdateien können von den meisten Datenbankanwendungen erstellt werden, inklusive MySQL und PostgreSQL. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Öffnet einen Assistenten zum Importieren von Daten aus einer kommaseparierten Textdatei in eine Datenbanktabelle. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + Öffnet einen Assistenten zum Importieren von Daten aus einer kommaseparierten Textdatei in eine Datenbanktabelle. CSV-Dateien können von den meisten Datenbank- und Tabellenkalkulations-Anwendungen erstellt werden. + + + + Export a database to a .sql dump text file. + Daten in eine .sql-Dump-Textdatei exportieren. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + Diese Option ermöglicht den Export einer Datenbank in eine .sql-Dump-Textdatei. SQL-Dumpdateien enthalten alle notwendigen Daten, um die Datenbank mit den meisten Datenbankanwendungen neu erstellen zu können, inklusive MySQL und PostgreSQL. + + + + Export a database table as a comma separated text file. + Datenbank als kommaseparierte Textdatei exportieren. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + Exportiert die Datenbank als kommaseparierte Textdatei, fertig zum Import in andere Datenbank- oder Tabellenkalkulations-Anwendungen. + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + Den Assistenten zum Erstellen einer Tabelle öffnen, wo der Name und die Felder für eine neue Tabelle in der Datenbank festgelegt werden können + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + Den Assistenten zum Löschen einer Tabelle öffnen, wo eine zu entfernende Datenbanktabelle ausgewählt werden kann. + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + Den Assistenten zum Ändern einer Tabelle öffnen, wo eine existierende Tabelle umbenannt werden kann. Ebenso können Felder hinzugefügt und gelöscht sowie Feldnamen und -typen geändert werden. + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + Den Assistenten zum Erstellen des Index öffnen, wo ein neuer Index für eine existierende Datenbanktabelle gewählt werden kann. + + + + &Preferences... + &Einstellungen... + + + + + Open the preferences window. + Das Einstellungsfenster öffnen. + + + + &DB Toolbar + &DB Toolbar + + + + Shows or hides the Database toolbar. + Zeigt oder versteckt die Datenbank-Toolbar. + + + + Shift+F1 + + + + + &Recently opened + &Kürzlich geöffnet + + + + Open &tab + &Tab öffnen + + + + Ctrl+T + + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Datenbankstruktur + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Daten durchsuchen + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Pragmas bearbeiten + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + Warnung: dieses Pragma ist nicht lesbar und dieser Wert wurde abgeleitet. Das Schreiben des Pragmas überschreibt möglicherweise ein geändertes LIKE, welches von einer SQLite-Erweiterung zur Verfügung gestellt wird. + + + + &Tools + &Werkzeuge + + + + DB Toolbar + DB Toolbar + + + + SQL &Log + SQL-&Log + + + + Show S&QL submitted by + Anzeige des übergebenen S&QL von + + + + &Plot + &Diagramm + + + + + Project Toolbar + Projekt-Werkzeugleiste + + + + Extra DB toolbar + Extra-DB-Werkzeugleiste + + + + + + Close the current database file + Die aktuelle Datenbankdatei schließen + + + + &Revert Changes + Änderungen &rückgängig machen + + + + &Write Changes + Änderungen &schreiben + + + + &Database from SQL file... + &Datenbank aus SQL-Datei... + + + + &Table from CSV file... + &Tabelle aus CSV-Datei... + + + + &Database to SQL file... + &Datenbank als SQL-Datei... + + + + &Table(s) as CSV file... + &Tabelle(n) als CSV-Datei... + + + + &Create Table... + Tabelle &erstellen... + + + + &Delete Table... + Tabelle &löschen... + + + + &Modify Table... + Tabelle &ändern... + + + + Create &Index... + &Index erstellen... + + + + W&hat's This? + &Was ist das? + + + + &About + &Über + + + + This button opens a new tab for the SQL editor + Dieser Button öffnet einen neuen Tab im SQL-Editor + + + + &Execute SQL + SQL &ausführen + + + + + Save the current session to a file + Aktuelle Sitzung in einer Datei speichern + + + + + Load a working session from a file + Sitzung aus einer Datei laden + + + + + + Save SQL file + SQL-Datei speichern + + + + Ctrl+E + + + + + Export as CSV file + Als CSV-Datei exportieren + + + + Export table as comma separated values file + Tabelle als kommaseparierte Wertedatei exportieren + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Database encoding + Datenbank-Kodierung + + + + + Choose a database file + Eine Datenbankdatei auswählen + + + + Ctrl+Return + Strg+Return + + + + Ctrl+D + Strg+D + + + + Ctrl+I + Strg+I + + + + Window Layout + + + + + Reset Window Layout + Fensteranordnung zurücksetzen + + + + Alt+0 + + + + + The database is currenctly busy. + Die Datenbank ist aktuell beschäftigt. + + + + Click here to interrupt the currently running query. + Hier klicken, um die aktuell laufende Anfrage zu unterbrechen. + + + + Encrypted + Verschlüsselt + + + + Database is encrypted using SQLCipher + Datenbank ist mittels SQLCipher verschlüsselt + + + + Read only + Nur lesen + + + + Database file is read only. Editing the database is disabled. + Zugriff auf Datenbank nur lesend. Bearbeiten der Datenbank ist deaktiviert. + + + + Could not open database file. +Reason: %1 + Datenbankdatei konnte nicht geöffnet werden. Grund: %1 + + + + + + Choose a filename to save under + Dateinamen zum Speichern auswählen + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + Fehler beim Speichern der Datenbankdatei. Dies bedeutet, dass nicht alle Änderungen an der Datenbank gespeichert wurden. Der folgende Fehler muss zuvor gelöst werden: + +%1 + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + Sollen die in den SQL-Tabs getätigten Änderungen in der Projektdatei '%1' gespeichert werden? + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Eine neue Version des DB Browsers für SQLite ist verfügbar (%1.%2.%3).<br/><br/>Bitte laden Sie diese von <a href='%4'>%4</a> herunter. + + + + DB Browser for SQLite project file (*.sqbpro) + DB Browser für SQLite Projektdatei (*.sqbpro) + + + + Error checking foreign keys after table modification. The changes will be reverted. + Fehler beim Prüfen von Fremdschlüsseln nach der Änderung an der Tabelle. Die Änderungen werden rückgängig gemacht. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + Diese Tabelle hat die Fremdschlüsselprüfung nicht bestanden.<br/>Sie sollten 'Werkzeuge | Fremdschlüssel-Prüfng' ausführen und die gemeldeten Probleme beheben. + + + + Execution finished with errors. + Ausführung wurde mit Fehlern beendet. + + + + Execution finished without errors. + Ausführung wurde ohne Fehler beendet. + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + Sollen wirklich alle Änderungen an der Datenbankdatei '%1' seit dem letzten Speichern rückgängig gemacht werden? + + + + Choose a file to import + Datei für Import auswählen + + + + Text files(*.sql *.txt);;All files(*) + Textdateien(*.sql *.txt);;Alle Dateien(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + Soll für die importierten Daten eine neue Datenbank erstellt werden? +Bei der Antwort NEIN werden die Daten in die SQL-Datei der aktuellen Datenbank importiert. + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + Es werden aktuell SQL-Statements ausgeführt. Das Schließen der Datenbank wird deren Ausführung stoppen, was die Datenbank möglicherweise in einem inkonsistenten Zustand belässt. Soll die Datenbank wirklich geschlossen werden? + + + + Do you want to save the changes made to the project file '%1'? + Sollen die an der Projektdatei '%1' getätigten Änderungen gespeichert werden? + + + + File %1 already exists. Please choose a different name. + Datei %1 existiert bereits. Bitte einen anderen Namen auswählen. + + + + Error importing data: %1 + Fehler beim Datenimport: %1 + + + + Import completed. + Import abgeschlossen. + + + + Delete View + Ansicht löschen + + + + Delete Trigger + Trigger löschen + + + + Delete Index + Index löschen + + + + + Delete Table + Tabelle löschen + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + Das Setzen von PRAGMA-Werten übermittelt den aktuellen Vorgang. +Sind Sie sicher? + + + + In-Memory database + In-Memory-Datenbank + + + + Simplify Window Layout + + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + + + + + Dock Windows at Left Side + + + + + Dock Windows at Top + + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + Möchten Sie die Tabelle '%1' wirklich löschen? +Alle mit dieser Tabelle verbundenen Daten gehen verloren. + + + + Are you sure you want to delete the view '%1'? + Möchten Sie die Ansicht '%1' wirklich löschen? + + + + Are you sure you want to delete the trigger '%1'? + Möchten Sie den Trigger '%1' wirklich löschen? + + + + Are you sure you want to delete the index '%1'? + Möchten Sie den Index '%1' wirklich löschen? + + + + Error: could not delete the table. + Fehler: Tabelle konnte nicht gelöscht werden. + + + + Error: could not delete the view. + Fehler: Ansicht konnte nicht gelöscht werden. + + + + Error: could not delete the trigger. + Fehler: Trigger konnte nicht gelöscht werden. + + + + Error: could not delete the index. + Fehler: Index konnte nicht gelöscht werden. + + + + Message from database engine: +%1 + Nachricht von Datenbank-Engine: +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + Das Bearbeiten der Tabelle setzt das Speichern aller ausstehenden Änderungen voraus. +Möchten Sie die Datenbank wirklich speichern? + + + + Edit View %1 + Ansicht %1 bearbeiten + + + + Edit Trigger %1 + Trigger %1 bearbeiten + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + Es werden bereits SQL-Statements ausgeführt. Sollen diese gestoppt werden, um stattdessen die aktuellen Statements auszuführen? Dies führt möglicherweise zu einem inkonsistenten Zustand der Datenbank. + + + + -- EXECUTING SELECTION IN '%1' +-- + -- FÜHRE AUSWAHL IN '%1' AUS +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- FÜHRE ZEILE IN '%1' AUS +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- FÜHRE ALLES IN '%1' AUS +-- + + + + + At line %1: + In Zeile %1: + + + + Result: %1 + Ergebnis: %1 + + + + Result: %2 + Ergebnis: %2 + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + Das Setzen von PRAGMA-Werten oder des Vakuumings wird Ihre aktuelle Transaktion committen. +Sind Sie sich sicher? + + + + Project saved to file '%1' + Projekt in Datei '%1' gespeichert + + + + This action will open a new SQL tab with the following statements for you to edit and run: + Diese Aktion öffnet einen neuen SQL-Tab mit den folgenden Anweisungen zum Bearbeiten und Ausführen: + + + + Rename Tab + Tab umbenennen + + + + Duplicate Tab + Tab duplizieren + + + + Close Tab + Tab schließen + + + + Opening '%1'... + Öffne '%1'... + + + + There was an error opening '%1'... + Fehler beim Öffnen von '%1'... + + + + Value is not a valid URL or filename: %1 + Wert ist keine gültige URL bzw. kein gültiger Dateiname: %1 + + + + %1 rows returned in %2ms + %1 Zeilen in %2ms zurückgegeben + + + + Choose text files + Textdateien auswählen + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + Import vollständig. Ein paar Fremdschlüssel wurden verletzt. Bitten beheben Sie diese vor dem Speichern. + + + + Modify View + Ansicht verändern + + + + Modify Trigger + Trigger verändern + + + + Modify Index + Index verändern + + + + Modify Table + Tabelle verändern + + + + Opened '%1' in read-only mode from recent file list + + + + + Opened '%1' from recent file list + + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (nur lesend) + + + + Open Database or Project + Datenbank oder Projekt öffnen + + + + Attach Database... + Datenbank anhängen... + + + + Import CSV file(s)... + CSV-Datei(en) importieren... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + Auf die Datei anzuwendende Aktion auswählen. <br/>Hinweis: Nur 'Import' kann mehr als eine Datei verarbeiten. + Auf die Dateien anzuwendende Aktion auswählen. <br/>Hinweis: Nur 'Import' kann mehr als eine Datei verarbeiten. + + + + + Do you want to save the changes made to SQL tabs in a new project file? + Sollen die an den SQL-Tabs getätigten Änderungen in einer neuen Projektdatei gespeichert werden? + + + + Do you want to save the changes made to the SQL file %1? + Sollen die getätigten Änderungen in der SQL-Datei %1 gespeichert werden? + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + Es werden aktuell SQL-Statements ausgeführt. Das Schließen des Tabs wird deren Ausführung stoppen, was die Datenbank möglicherweise in einem inkonsistenten Zustand belässt. Soll der Tab wirklich geschlossen werden? + + + + Select SQL file to open + SQL-Datei zum Öffnen auswählen + + + + Select file name + Dateinamen auswählen + + + + Select extension file + Erweiterungsdatei auswählen + + + + Extension successfully loaded. + Erweiterung erfolgreich geladen. + + + + Error loading extension: %1 + Fehler beim Laden der Erweiterung: %1 + + + + Could not find resource file: %1 + Ressourcen-Datei konnte nicht gefunden werden: %1 + + + + + Don't show again + Nicht wieder anzeigen + + + + New version available. + Neue Version verfügbar. + + + + Choose a project file to open + Wählen Sie die zu öffnende Projektdatei + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + Diese Projektdatei verwendet ein altes Dateiformat, da es mit DB-Browser für SQLite Version 3.10 oder niedriger erstellt wurde. Das Laden dieses Dateiformats wird noch vollständig unterstützt, wird empfehlen Ihnen allerdings, alle Ihre Projektdateien in das neue Dateiformat zu überführen, da die Unterstützung für ältere Formate in Zukunft möglicherweise entfernt wird. Sie können Ihre Dateien einfach durch Öffnen und Neuspeichern umwandeln. + + + + Could not open project file for writing. +Reason: %1 + Projekt-Datei konnte nicht schreibend geöffnet werden. +Grund: %1 + + + + Collation needed! Proceed? + Kollation notwendig! Fortführen? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + Eine Tabelle in dieser Datenbank benötigt eine spezielle Kollationsfunktion '%1', welche diese Anwendung ohne weiterem Wissen nicht zur Verfügung stellen kann. +Wenn Sie fortfahren, sollten Sie im Hinterkopf behalten, dass mit Ihrer Datenbank unerwartete Dinge geschehen können. +Erstellen Sie ein Backup! + + + + creating collation + erstelle Kollation + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + Vergeben Sie einen Namen für den SQL-Tab. Verwenden Sie das '&&'-Zeichen, um das folgende Zeichen als Tastaturkürzel zu verwenden. + + + + Please specify the view name + Geben Sie bitte einen Namen für Ansicht an + + + + There is already an object with that name. Please choose a different name. + Es gibt bereits ein Objekt mit diesem Namen. Bitte wählen Sie einen anderen aus. + + + + View successfully created. + Ansicht erfolgreich erstellt. + + + + Error creating view: %1 + Fehler beim Erstellen der Ansicht: %1 + + + + This action will open a new SQL tab for running: + Diese Aktion öffnet einen neuen SQL-Tab zur Ausführung: + + + + Press Help for opening the corresponding SQLite reference page. + Drücken Sie auf 'Hilfe', um die entsprechende SQLite-Referenzseite zu öffnen. + + + + Busy (%1) + Beschäftigt (%1) + + + + NullLineEdit + + + Set to NULL + Auf NULL setzen + + + + Alt+Del + + + + + PlotDock + + + Plot + Diagramm + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>Dieses Pane zeigt die Liste der Spalten der aktuell ausgewählten Tabelle oder des soeben ausgeführtne Queries. Sie können die für die X- und Y-Achse gewünschten Spalten für das Plot-Pane unten auswählen. Die Tabelle zeigt den erkannten Axentyp, der den entstehenden Plot beeinflusst. Für die Y-Achse sind nur numerische Spalten zulässig, während Sie für die X-Achse aus folgenden Optionen auswählen können:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Datum/Zeit</span>: Strings im Format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Datum</span>: Strings im Format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Zeit</span>: Strings im Format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Beschriftung</span>: andere Stringformate. Die Auswahl dieser Spalte als X-Achse erzeugt einen Barplot mit den Spaltenwerten als Beschriftungen der Bars.</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numerisch</span>: Integer- oder Real-Werte</li></ul><p>Ein Doppelklick auf die Y-Zellen ermöglicht Ihnen das Ändern der für den Graph verwendeten Farbe.</p></body></html> + + + + Columns + Spalten + + + + X + X + + + + Y1 + Y1 + + + + Y2 + Y2 + + + + Axis Type + Achsentyp + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + Hier wird ein Plot angezeigt, wenn Sie oben die x- und y-Werte auswählen. + +Klicken Sie auf Punkte, um diese im Plot und in der Tabelle auszuwählen. Strg+Klick zur Auswahl eines Punktebereichs. + +Verwenden Sie das Mausrad zum Zoomen und Ziehen Sie mit der Maus, um den Achsenbereich zu ändern. + +Wählen Sie die Achsen oder Achsenbeschriftungen aus, um nur in diese Richtung zu zoomen oder zu verschieben. + + + + Line type: + Linientyp: + + + + + None + Keine + + + + Line + Linie + + + + StepLeft + Linksschritt + + + + StepRight + Rechtsschritt + + + + StepCenter + Mittelschritt + + + + Impulse + Impuls + + + + Point shape: + Punktform: + + + + Cross + Kreuz + + + + Plus + Plus + + + + Circle + Kreis + + + + Disc + Scheibe + + + + Square + Quadrat + + + + Diamond + Diamant + + + + Star + Stern + + + + Triangle + Dreieck + + + + TriangleInverted + Invertiertes Dreieck + + + + CrossSquare + Quadrat mit Kreuz + + + + PlusSquare + Quadrat mit Plus + + + + CrossCircle + Kreis mit Kreuz + + + + PlusCircle + Kreis mit Plus + + + + Peace + Peace + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>Aktuelles Diagramm speichern...</p><p>Dateiformat durch Endung auswählen (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + Aktuelles Diagramm speichern... + + + + + Load all data and redraw plot + Alle Daten laden und Plot neu zeichnen + + + + + + Row # + Zeile # + + + + Copy + Kopieren + + + + Print... + Drucken... + + + + Show legend + Legende anzeigen + + + + Stacked bars + Gestapelte Bars + + + + Date/Time + Datum/Zeit + + + + Date + Datum + + + + Time + Zeit + + + + + Numeric + Numerisch + + + + Label + Beschriftung + + + + Invalid + Ungültig + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + Alle Daten laden und Plot neu zeichnen. +Warnung: es wurden aufgrund der partiellen Abrufmechanismus noch nicht alle Daten aus der Tabelle abgerufen. + + + + Choose an axis color + Eine Achsenfarbe wählen + + + + Choose a filename to save under + Dateinamen zum Speichern auswählen + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;Alle Dateien(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + Dieser Plot enthält Kurven und der ausgewählte Linienstil kann nur auf nach X sortierte Graphen angewendet werden. Sortieren Sie entweder die Tabelle oder Query nach X oder entfernen Sie die Kurven oder wählen Sie eine der Stile, die von Kurven unterstützt werden: Keiner oder Linie. + + + + Loading all remaining data for this table took %1ms. + Das Laden aller verbleibender Daten dieser Tabelle benötigte %1ms. + + + + PreferencesDialog + + + Preferences + Einstellungen + + + + &General + All&gemeines + + + + Remember last location + Letztes Verzeichnis merken + + + + Always use this location + Immer dieses Verzeichnis verwenden + + + + Remember last location for session only + Letztes Verzeichnis nur innerhalb der Sitzung merken + + + + Lan&guage + &Sprache + + + + Show remote options + Fernzugriffs-Optionen anzeigen + + + + Automatic &updates + Automatische &Updates + + + + &Database + &Datenbank + + + + Database &encoding + Datenbank-&Kodierung + + + + Open databases with foreign keys enabled. + Öffnen von Datenbanken mit Fremdschlüsseln aktiviert. + + + + &Foreign keys + &Fremdschlüssel + + + + + + + + + + + + enabled + aktiviert + + + + Default &location + Voreingestellter &Speicherort + + + + + + ... + ... + + + + Remove line breaks in schema &view + Zeilenumbrüche in der Schema&ansicht entfernen + + + + Prefetch block si&ze + Block&größe für Prefetch + + + + SQ&L to execute after opening database + Nach dem Öffnen einer Datenbank auszuführendes SQ&L + + + + Default field type + Voreingestellter Feldtyp + + + + Data &Browser + Daten&auswahl + + + + Font + Schrift + + + + &Font + Schri&ft + + + + Content + Inhalt + + + + Symbol limit in cell + Symbolbegrenzung in Zelle + + + + NULL + NULL + + + + Regular + Normal + + + + Binary + Binär + + + + Background + Hintergrund + + + + Filters + Filter + + + + Threshold for completion and calculation on selection + Schwellwert für die Vervollständigung und Berechnung bei Auswahl + + + + Show images in cell + Bilder in Zelle anzeigen + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + Diese Option aktivieren, um eine Vorschau von BLOBs mit Bilddaten in den Zellen anzuzeigen. Dies kann allerdings die Performanz der Anwendung beeinflussen. + + + + Escape character + Escape-Zeichen + + + + Delay time (&ms) + Verzögerung (&ms) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + Verzögerung vor der Anwendung eines neuen Filters setzen. Kann auf 0 gesetzt werden, um dies zu deaktivieren. + + + + &SQL + &SQL + + + + Settings name + Einstellungsname + + + + Context + Kontext + + + + Colour + Farbe + + + + Bold + Fett + + + + Italic + Kursiv + + + + Underline + Unterstreichung + + + + Keyword + Schlüsselwort + + + + Function + Funktion + + + + Table + Tabelle + + + + Comment + Kommentar + + + + Identifier + Bezeichner + + + + String + String + + + + Current line + Aktuelle Zeile + + + + SQL &editor font size + SQL-&Editor Schriftgröße + + + + Tab size + Tab-Größe + + + + SQL editor &font + SQL Editor &Schrift + + + + Error indicators + Fehleranzeige + + + + Hori&zontal tiling + Hori&zontale Anordnung + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + Im aktivierten Zustand werden der SQL-Codeeditor und die Ergebnistabelle neben- statt untereinander angezeigt. + + + + Code co&mpletion + &Codevervollständung + + + + Toolbar style + Werkzeugleisten-Stil + + + + + + + + Only display the icon + Nur das Symbol anzeigen + + + + + + + + Only display the text + Nur den Text anzeigen + + + + + + + + The text appears beside the icon + Der Text erscheint neben dem Symbol + + + + + + + + The text appears under the icon + Der Text erscheint unter dem Symbol + + + + + + + + Follow the style + Dem Stil folgen + + + + DB file extensions + DB-Datei-Erweiterungen + + + + Manage + Verwalten + + + + Main Window + Hauptfenster + + + + Database Structure + Datenbankstruktur + + + + Browse Data + Daten durchsuchen + + + + Execute SQL + SQL ausführen + + + + Edit Database Cell + Datenbankzelle bearbeiten + + + + When this value is changed, all the other color preferences are also set to matching colors. + Wenn dieser Wert geändert wird, werden alle anderen Farbeinstellungen auch auf die entsprechenden Farben gesetzt. + + + + Follow the desktop style + Dem Desktop-Stil folgen + + + + Dark style + Dunkler Stil + + + + Application style + Anwendungs-Stil + + + + This sets the font size for all UI elements which do not have their own font size option. + + + + + Font size + + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + Falls aktiviert, werden die Zeilenumbrüche in der Schemaspalte des DB-Strukturtabs, Docks und der gedruckten Ausgabe entfernt. + + + + Database structure font size + + + + + Font si&ze + Schrift&größe + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + Dies ist die maximale Elementanzahl, die für die Aktivierung von ein paar berechnungsintensiven Funktionalitäten erlaubt ist: +Maximale Zeilenanzahl in einer Tabelle für die Wertvervollständig basierend auf den aktuellen Werten in dieser Spalte. +Maximale Indexanzahl einer Auswahl für die Berechnung von Summe und Durchschnitt. +Kann auf 0 gesetzt werden, um diese Funktionalitäten zu deaktivieren. + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + Dies ist die maximale Anzahl an Zeilen in einer Tabelle, die zur Wertvervollständigung basierend auf aktuellen Werten in dieser Spalte erlaubt ist. +Kann auf 0 gesetzt werden, um die Vervollständigung zu deaktivieren. + + + + Field display + Feldanzeige + + + + Displayed &text + Angezeigter &Text + + + + + + + + + Click to set this color + Zur Auswahl der Farbe klicken + + + + Text color + Textfarbe + + + + Background color + Hintergrundfarbe + + + + Preview only (N/A) + Nur Vorschau (N/A) + + + + Foreground + Vordergrund + + + + SQL &results font size + Schriftgröße SQL-&Ergebnisse + + + + &Wrap lines + Zeilen &umbrechen + + + + Never + Nie + + + + At word boundaries + An Wortgrenzen + + + + At character boundaries + An Zeichengrenzen + + + + At whitespace boundaries + An Leerzeichengrenzen + + + + &Quotes for identifiers + &Anführungszeichen für Identifiers + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + Wählen Sie den Zitiermechanismus aus, der von der Anwendung für Identifier im SQL-Code verwendet wird. + + + + "Double quotes" - Standard SQL (recommended) + "Doppelt Anführungszeichen" - Standard-SQL (empfohlen) + + + + `Grave accents` - Traditional MySQL quotes + `Akzente` - Traditionelle MySQL-Anführungszeichen + + + + [Square brackets] - Traditional MS SQL Server quotes + [Eckige Klammern] - Traditionelle MS-SQL-Server-Anführungszeichen + + + + Keywords in &UPPER CASE + Schlüsselwörter in &GROSSSCHREIBUNG + + + + When set, the SQL keywords are completed in UPPER CASE letters. + Falls gesetzt, werden die SQL-Schlüsselwörter in GROßSCHREIBUNG vervollständigt. + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + Falls gesetzt, werden die SQL-Codezeilen, die während der letzten Ausführung Fehler verursacht haben, hervorgehoben und das Ergebnisfenster zeigt den Fehler im Hintergrund an + + + + Close button on tabs + Schließen-Button für Tabs + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + Wenn aktiviert, werden die SQL-Editor-Tabs einen Schließen-Button haben. In allen Fällen können Sie zum Schließen auch das Kontextmenü oder die Tastenkombination verwenden. + + + + &Extensions + &Erweiterungen + + + + Select extensions to load for every database: + Bei jeder Datenbank zu ladende Erweiterungen auswählen: + + + + Add extension + Erweiterung hinzufügen + + + + Remove extension + Erweiterung entfernen + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>Auch wenn der REGEXP-Operator unterstützt wird, implementiert SQLite keinerlei Algorithmus für reguläre<br/>Ausdrücke, sondern leitet diese an die laufende Anwendung weiter. DB Browser für SQLite implementierte diesen<br/>Algorithmus für Sie, um REGEXP ohne Zusätze verwenden zu können. Allerdings gibt es viele mögliche<br/>Implementierungen und Sie möchten unter Umständen eine andere wählen, dann können Sie die<br/>Implementierung der Anwendung deaktivieren und Ihre eigene durch Laden einer Erweiterung verwenden. Ein Neustart der Anwendung ist notwendig.</p></body></html> + + + + Disable Regular Expression extension + Erweiterung für reguläre Ausdrücke deaktivieren + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html><head/><body><p>SQLite bietet eine SQL-Funktion an, um Erweiterungen aus einer Shared-Library-Datei zu laden. Aktivieren Sie dies, falls Sie die <span style=" font-style:italic;">load_extension()</span>-Funktion aus SQL-Code heraus benutzen möchten.</p><p>Aus Sicherheitsgründen ist das Laden von Erweiterungen standardmäßig deaktiviert und muss durch diese Einstellung aktiviert werden. Sie können alternativ immer die gewünschten Erweiterungen über die GUI laden, auch wenn diese Option deaktiviert ist.</p></body></html> + + + + Allow loading extensions from SQL code + Erlaube das Laden von Erweiterungen aus SQL-Code + + + + Remote + Entfernt + + + + CA certificates + CA-Zertifikate + + + + Proxy + Proxy + + + + Configure + Konfigurieren + + + + + Subject CN + Subject CN + + + + Common Name + Common Name + + + + Subject O + Subject O + + + + Organization + Organisation + + + + + Valid from + Gültig ab + + + + + Valid to + Gültig bis + + + + + Serial number + Seriennummer + + + + Your certificates + Ihre Zertifikate + + + + File + Datei + + + + Subject Common Name + Subject Common Name + + + + Issuer CN + CN des Ausstellers + + + + Issuer Common Name + Common Name des Ausstellers + + + + Clone databases into + Datenbank klonen nach + + + + + Choose a directory + Verzeichnis wählen + + + + The language will change after you restart the application. + Die Sprache wird nach einem Neustart der Anwendung geändert. + + + + Select extension file + Erweiterungsdatei wählen + + + + Extensions(*.so *.dylib *.dll);;All files(*) + Erweiterungen(*.so *.dylib *.dll);;Alle Dateien(*) + + + + Import certificate file + Zertifikatsdatei importieren + + + + No certificates found in this file. + In dieser Datei wurden keine Zertifikate gefunden. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + Soll dieses Zertifikat wirklich entfernt werden? Jegliche Zertifikatdaten werden aus den Anwendungseinstellungen gelöscht! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + Möchten Sie wirklich alle gespeicherten Einstellungen löschen? +Alle Ihre Einstellungen gehen dadurch verloren und die Standardwerte werden verwendet. + + + + ProxyDialog + + + Proxy Configuration + Proxy-Konfiguration + + + + Pro&xy Type + Pro&xy-Typ + + + + Host Na&me + Hostna&me + + + + Port + Port + + + + Authentication Re&quired + Anmeldung not&wendig + + + + &User Name + &Benutzername + + + + Password + Passwort + + + + None + Keiner + + + + System settings + Systemeinstellungen + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + Error importing data + Fehler beim Datenimport + + + + from record number %1 + von Zeilennummer %1 + + + + . +%1 + . +%1 + + + + Importing CSV file... + Importiere CSV-Datei... + + + + Cancel + Abbrechen + + + + All files (*) + Alle Dateien (*) + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + SQLite Datenbankdateien (*.db *.sqlite *.sqlite3 *.db3) + + + + Left + Links + + + + Right + Rechts + + + + Center + Zentriert + + + + Justify + Blocksatz + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + SQLite-Datenbankdateien (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + DB Browser für SQLite Projektdateien (*.sqbpro) + + + + SQL Files (*.sql) + SQL-Dateien (*.sql) + + + + All Files (*) + Alle Dateien (*) + + + + Text Files (*.txt) + Text-Dateien (*.txt) + + + + Comma-Separated Values Files (*.csv) + Kommaseparierte Datendateien (*.csv) + + + + Tab-Separated Values Files (*.tsv) + Tabulator-separierte Datendateien (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + Trenner-separierte Datendateien (*.dsv) + + + + Concordance DAT files (*.dat) + Konkordanz DAT-Dateien (*.dat) + + + + JSON Files (*.json *.js) + JSON-Dateien (*.json *.js) + + + + XML Files (*.xml) + XML-Dateien (*.xml) + + + + Binary Files (*.bin *.dat) + Binärdateien (*.bin *.dat) + + + + SVG Files (*.svg) + SVG-Dateien (*.svg) + + + + Hex Dump Files (*.dat *.bin) + Hex-Dump-Dateien (*.dat *.bin) + + + + Extensions (*.so *.dylib *.dll) + Erweiterungen (*.so *.dylib *.dll) + + + + RemoteCommitsModel + + + Commit ID + + + + + Message + + + + + Date + Datum + + + + Author + + + + + Size + Größe + + + + Authored and committed by %1 + + + + + Authored by %1, committed by %2 + + + + + RemoteDatabase + + + Error opening local databases list. +%1 + Fehler beim Öffnen der lokalen Datenbankliste. +%1 + + + + Error creating local databases list. +%1 + Fehler beim Erstellen der lokalen Datenbankliste. +%1 + + + + RemoteDock + + + Remote + Entfernt + + + + Local + Lokal + + + + Identity + Identität + + + + Push currently opened database to server + Aktuell geöffnete Datenbank an den Server übertragen + + + + DBHub.io + + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + <html><head/><body><p>In diesem Fensterbereich können entfernte Datenbanken von der dbhub.io-Webseite zu DB-Browser für SQLite hinzugefügt werden. Zunächst benötigen Sie eine Identität:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Melden Sie sich auf der dbhub.io-Webseite an (unter Verwendung Ihrer GitHub-Daten oder wie gewünscht)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Klicken Sie auf den Button &quot;Generate client certificate&quot;, um ein Zertifikat zu erstellen (das ist Ihre Identität). Speichern Sie die erzeugte Zertifikatdatei auf ihrer lokalen Festplatte.</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Öffnen Sie den Entfernt-Tab in den DB-Browser für SQLite-Einstellungen. Klicken Sie auf den Button, um ein neues Zertifikat hinzuzufügen und wählen Sie die soeben heruntergeladene Zertifikatdatei aus.</li></ol><p>Jetzt zeigt der Entfernt-Fensterbereich Ihre Identität und Sie können entfernte Datenbanken hinzufügen.</p></body></html> + + + + Current Database + + + + + Clone + + + + + User + Benutzer + + + + Database + Datenbank + + + + Branch + Branch + + + + Commits + + + + + Commits for + + + + + Delete Database + + + + + Delete the local clone of this database + + + + + Open in Web Browser + + + + + Open the web page for the current database in your browser + + + + + Clone from Link + + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + + + + + Refresh + Aktualisieren + + + + Reload all data and update the views + + + + + F5 + + + + + Clone Database + + + + + Open Database + + + + + Open the local copy of this database + + + + + Check out Commit + + + + + Download and open this specific commit + + + + + Check out Latest Commit + + + + + Check out the latest commit of the current branch + + + + + Save Revision to File + + + + + Saves the selected revision of the database to another file + + + + + Upload Database + + + + + Upload this database as a new commit + + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html><head/><body><p>Aktuell wird eine eingebaute, nur lesend verwendbare Identität verwendet. Zum Hochladen einer Datenbank muss ein DBHub.io-Konto konfiguriert und verwendet werden.</p><p>Noch kein DBHub.io-Konto vorhanden? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Jetzt ein Konto erstellen</span></a> und das Zertifikat <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">hier</span></a> hochladen, um Datenbanken zu teilen.</p><p>Eine englische Online-Hilfe ist <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">hier</span></a> verfügbar.</p></body></html> + + + + Back + Zurück + + + + Select an identity to connect + + + + + Public + Öffentlich + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + + + + + Invalid URL: The host name does not match the host name of the current identity. + + + + + Invalid URL: No branch name specified. + + + + + Invalid URL: No commit ID specified. + + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + + + + + The database has unsaved changes. Are you sure you want to push it before saving? + + + + + The database you are trying to delete is currently opened. Please close it before deleting. + + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + + + + + RemoteLocalFilesModel + + + Name + Name + + + + Branch + Branch + + + + Last modified + Letzte Änderung + + + + Size + Größe + + + + Commit + Commit + + + + File + Datei + + + + RemoteModel + + + Name + Name + + + + Last modified + Letzte Änderung + + + + Size + Größe + + + + Commit + Commit + + + + Size: + + + + + Last Modified: + + + + + Licence: + + + + + Default Branch: + + + + + RemoteNetwork + + + Choose a location to save the file + + + + + Error opening remote file at %1. +%2 + Fehler beim Öffnen der entfernten Datei unter %1. +%2 + + + + Error: Invalid client certificate specified. + Fehler: Ungültiges Benutzerzertifikat angegeben. + + + + Please enter the passphrase for this client certificate in order to authenticate. + Bitte die Passphrase für diese Benutzerzertifikat eingeben, um die Authentifizierung durchzuführen. + + + + Cancel + Abbrechen + + + + Uploading remote database to +%1 + Entfernte Datenbank wird hochgeladen zu +%1 + + + + Downloading remote database from +%1 + Entfernte Datenbank wird heruntergeladen von +%1 + + + + + Error: The network is not accessible. + Fehler: Netzwerkzugriff nicht möglich. + + + + Error: Cannot open the file for sending. + Fehler: Öffnen der Datei zum Senden nicht möglich. + + + + RemotePushDialog + + + Push database + Datenbank übertragen + + + + Database na&me to push to + Datenbankna&me am Zielort + + + + Commit message + Commit-Nachricht + + + + Database licence + Datenbanklizenz + + + + Public + Öffentlich + + + + Branch + Branch + + + + Force push + Push erzwingen + + + + Username + + + + + Database will be public. Everyone has read access to it. + Datenbank wird öffentlich sein. Jeder hat Lesezugriff darauf. + + + + Database will be private. Only you have access to it. + Datenbank wird privat sein. Nur Sie haben Zugriff darauf. + + + + Use with care. This can cause remote commits to be deleted. + Verwenden Sie dies mit Vorsicht. Dadurch können entfernte Commits gelöscht werden. + + + + RunSql + + + Execution aborted by user + Ausführung durch Benutzer abgebrochen + + + + , %1 rows affected + , %1 Zeilen betroffen + + + + query executed successfully. Took %1ms%2 + Query erfolgreich ausgeführt. Benötigte %1ms%2 + + + + executing query + führe Query aus + + + + SelectItemsPopup + + + A&vailable + &Verfügbar + + + + Sele&cted + &Ausgewählt + + + + SqlExecutionArea + + + Form + Formular + + + + Find previous match [Shift+F3] + Vorherige Übereinstimmung finden [Umschalt+F3] + + + + Find previous match with wrapping + Vorherige Übereinstimmung mit Mapping finden + + + + Shift+F3 + + + + + The found pattern must be a whole word + Das Pattern muss ein ganzes Wort sein + + + + Whole Words + Ganze Wörter + + + + Text pattern to find considering the checks in this frame + Zu findendes Textpattern unter Einbeziehung der Prüfungen in diesem Fenster + + + + Find in editor + Im Editor finden + + + + The found pattern must match in letter case + Das Fundpattern muss in Groß-/Kleinschreibung übereinstimmen + + + + Case Sensitive + Schreibungsabhängig + + + + Find next match [Enter, F3] + Nächste Übereinstimmung finden [Enter, F3] + + + + Find next match with wrapping + Nächste Übereinstimmung mit Umbruch finden + + + + F3 + + + + + Interpret search pattern as a regular expression + Suchpattern als regulären Ausdruck interpretieren + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Falls aktiviert, wird das Suchmuster als regulärer Ausdruck (UNIX-Stil) interpretiert. Siehe <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks (englisch)</a>.</p></body></html> + + + + Regular Expression + Regulärer Ausdruck + + + + + Close Find Bar + Suchbar schließen + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html><head/><body><p>Ergebnisse der zuletzt ausgeführten Statements.</p><p>Dieses Panel kann zusammengeklappt und stattdessen der <span style=" font-style:italic;">SQL-Log</span>-Dock mit der Auswahl <span style=" font-style:italic;">Benutzer</span> verwendet werden.</p></body></html> + + + + Results of the last executed statements + Ergebnisse des zuletzt ausgeführten Statements + + + + This field shows the results and status codes of the last executed statements. + Dieses Feld zeigt die Ergebnisse und Statuscodes der zuletzt ausgeführten Statements. + + + + Couldn't read file: %1. + Datei konnte nicht gelesen werden: %1. + + + + + Couldn't save file: %1. + Datei konnte nicht gespeichert werden: %1. + + + + Your changes will be lost when reloading it! + Beim Neuladen gehen die Änderungen verloren! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + Die Datei "%1" wurde durch ein anderes Programm geändert. Soll es neu geladen werden?%2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) Die abs(X)-Funktion gibt einen absoluten Wert des numerischen Arguments X zurück. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () Die changes()-Funktion gibt die Anzahl der Datenbankzeilen zurück, die mit dem zuletzt abgeschlossenen INSERT-, DELETE- oder UPDATE-Statement geändert, einfügt oder gelöscht worden sind. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) Die char(X1,X2,...,XN)-Funktion gibt eine Zeichenkette zurück, die aus den Zeichen der Unicode-Werte der Ganzzahlen X1 bis XN zusammengesetzt ist. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) Die coalesce()-Funktion gibt eine Kopie des ersten nicht-NULL-Arguments zurück, oder NULL wenn alle Argumente NULL sind + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) Die glob(X,Y)-Funktion ist äquivalent zum Ausdruck "Y GLOB X". + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) Die ifnull()-Funktion gibt eine Kopie des ersten nicht-NULL-Arguments zurück, oder NULL, wenn beide Argumente NULL sind. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) Die instr(X,Y)-Funktion sucht das erste Auftreten von Zeichenkette Y innerhalb der Zeichenkette X und gibt die Anzahl vorhergehender Charakter plus 1 zurück, oder 0, wenn Y in X nicht gefunden werden konnte. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) Die hex()-Funktion interpretiert ihr Argument als BLOB und gibt eine Zeichenkette zurück, die die Hexadezimaldarstellung des Blob-Inhaltes in Großbuchstaben enthält. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () Die last_insert_rowid()-Funktion gibt die ROWID der letzte Zeile zurück, die von der diese Funktion aufrufenden Datenbankverbindung eingefügt wurde. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) Für eine Zeichenkette X gibt die length(X)-Funktion die Anzahl der Zeichen (keine Bytes) von X zurück, die sich for dem ersten NUL-Zeichen befinden. + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X,Y) Die like()-Funktion wird als Implementierung des "Y LIKE X"-Ausdrucks verwendet. + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) Die like()-Funktion wird als Implementierung des "Y LIKE X ESCAPE Z"-Ausdrucks verwendet. + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) Die load_extension(X)-Funktion lädt SQLite-Erweiterungen aus der Shared-Library-Datei namens X. +Die Verwendung dieser Funktion muss in den Einstellungen authorisiert werden. + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X,Y) Die load_extension(X,Y)-Funktion lädt SQLite-Erweiterungen aus der Shared-Library-Datei namens X unter Verwendung des Eintrittspunktes Y. +Die Verwendung dieser Funktion muss in den Einstellungen authorisiert werden. + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) Die lower(X)-Funktion gibt eine Kopie der Zeichenkette X mit allen ASCII-Zeichen in Kleinschreibung zurück. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ltrim(X) entfernt Leerzeichen aus der linken Seite von X. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) Die ltrim(X,Y)-Funktion gibt eine Zeichenkette zurück, die durch Entfernen aller Zeichen innerhalb von Y aus der linken Seite von X gebildet wird. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) Die max()-Funktion mit mehreren Argumenten gibt das Argument mit dem größten Wert zurück, oder NULL, wenn ein Argument NULL ist. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) Die max()-Funktion mit mehreren Argumenten gibt das Argument mit dem kleinsten Wert zurück. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) Die nullif(X,Y)-FUnktion gibt ihr erstes Argument zurück, wenn die Argumente verschieden sind und NULL, wenn die Argumente gleich sind. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) Die printf(FORMAT,...) SQL-Funktion arbeitet wie die sqlite3_mprintf() C-Funktion und die printf()-Funktion aus der C-Standardbibliothek. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) Die quote(X)-Funktion gibt den Text eines SQL-Literals zurück, wobei der Wert des Arguments zum Einfügen in ein SQL-Statement geeignet ist. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () Die random()-Funktion gibt eine pseudo-zufällige Ganzzahl zwischen -9223372036854775808 und +9223372036854775807 zurück. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) Die randomblob(N)-Funktion gibt einen N-Byte Blob aus pseudo-zufälligen Bytes zurück. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) Die replace(X,Y,Z)-Funktion gibt einen String zurück, der durch Ersetzen der Zeichenkette Z bei jedem Auftreten von Zeichenkette Y in Zeichenkette X gebildet wird. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) Die round(X)-Funktion gibt einen Gleitkommawert X auf nulll Nachkommastellen gerundet zurück. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) Die round(X,Y)-Funktion gibt eine Gleitkommazahl X auf Y Nachkommastellen gerundet zurück. + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) rtrim(X) entfernt Leerzeichen aus der rechten Seite von X. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) Die rtrim(X,Y)-Funktion gibt eine Zeichenkette zurück, die durch Entfernen aller Zeichen innerhalb von Y aus der rechten Seite von X gebildet wird. + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) Die soundex(X)-Funktion gibt eine Zeichenkette zurück, die aus der Soundex-Kodierung von Zeichenkette X besteht. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) substr(X,Y) gibt alle Zeichen bis zum Ende der Zeichenkette X zurück, beginnend mit dem Y-ten. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y,Z) Die substr(X,Y)-Funktion gibt einen Teil der Zeichenkette X zurück, die mit dem Y-ten Zeichen beginnt und Z Zeichen lang ist. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () Die changes()-Funktion gibt die Anzahl dergeänderten Datenbankzeilen zurück, die seit dem Öffnen der aktuellen Datenbankverbindung mit INSERT-, DELETE- oder UPDATE-Statement geändert, einfügt oder gelöscht worden sind. + + + + (X) trim(X) removes spaces from both ends of X. + (X) trim(X) entfernt Leerzeichen an beiden Enden von X. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) Die ltrim(X,Y)-Funktion gibt eine Zeichenkette zurück, die durch Entfernen aller Zeichen innerhalb von Y aus der von beiden Seiten von X gebildet wird. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) Die typeof(X)-Funktion gibt einen String zurück, der den Datentyp des Ausdruckes X angibt. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) Die unicode(X)-Funktion gibt einen numerischen Unicode-Wert zurück, der dem ersten Zeichen der Zeichenkette X entspricht. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) Die lower(X)-Funktion gibt eine Kopie der Zeichenkette X mit allen ASCII-Zeichen in Großschreibung zurück. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) Die zeroblob(N)-Funktion gibt einen BLOB aus N Bytes mit 0x00 zurück. + + + + + + + (timestring,modifier,modifier,...) + (Zeitstring,Modifikation,Modifikation,...) + + + + (format,timestring,modifier,modifier,...) + (Format,Zeitstring,Modifikation,Modifikation,...) + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) Die avg()-Funktion gibt den Durchschnittswert alle nicht-NULL X in einer Gruppe zurück. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) Die count(X)-Funktion gibt die Anzahl der nicht-NULL-Elemente von X in einer Gruppe zurück. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) Die group_conact()-Funktion gibt eine Zeichenkette zurück, die eine Verkettung aller nicht-NULL-Werte von X ist. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) Die group_conact()-Funktion gibt eine Zeichenkette zurück, die eine Verkettung aller nicht-NULL-Werte von X ist. Wenn der Parameter Y aktiv ist, wird dieser als Trennzeichen zwischen Instanzen von X behandelt. + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) Die max()-Sammelfunktion gibt den Maximalwert aller Werte in der Gruppe zurück. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) Die min()-Sammelfunktion gibt den Minimalwert aller nicht-NULL-Werte in der Gruppe zurück. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) Die sum()- und total()-Sammelfunktionen geben die Summe aller nicht-NULL-Werte in der Gruppe zurück. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () Die Anzahl der Zeilen in der aktuellen Partition. Zeilen werden beginnend bei 1 in der durch den ORDER-BY-Befehl in der Fensterdefinition nummeriert, ansonsten in willkürlicher Reihenfolge. + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Die row_number() des ersten Peer in jeder Gruppe - der Rang der aktuellen Zeile mit Lücken. Falls es keinen ORDER-BY-Befehl gibt, dann werden alle Zeilen als Peers angesehen und diese Funktion gibt immer 1 zurück. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Die Nummer der Peer-Gruppe der aktuellen Zeile in der Partition - der Rang der aktuellen Reihe ohne Lücken. Partitionen werden mit 1 startend nummeriert in der Reihenfolge, wie sie durch den ORDER-BY-Befehl in der Fensterdefinition festgelegt ist. Falls es keinen ORDER-BY-Befehl gibt, werden alle Zeilen als Peers angesehen und diese Funktion gibt immer 1 zurück. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () Ungeachtet des Namens gibt diese Funktion immer einen Wert zwischen 0.0 und 1.0 identisch zu (Rang - 1)/(Partitionszeilen - 1) zurück, wobei Rang der Wert der eingebauten Fensterfunktion rank() und Partitionszeilen die Gesamtanzahl der Zeilen in der Partition ist. Falls die Partition nur eine Zeile enthält, gibt diese Funktion 0.0 zurück. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () Die kumulative Verteilung. Berechnet als Zeilenanzahl/Partitionszeilen, wobei Zeilenanzahl der durch row_number() zurückgegebene Wert für den letzten Peer in der Gruppe ist und Partitionszeilen die Anzahl der Zeilen in der Partition. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) Das Argument N wird als Integer behandelt. Diese Funktion teilt die Partition in N Gruppen so gleichmäßig wie möglich auf und weist jeder Gruppe einen Integer zwischen 1 und N zu, in der Reihenfolge, die durch den ORDER-BY-Befehl definiert ist, ansonsten in beliebiger Reihenfolge. Falls notwendig tauchen größere Gruppen als erstes auf. Diese Funktion gibt einen Integerwert zurück, der der Gruppe zugewiesen ist, zu der die aktuelle Zeile gehört. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) Gibt das Ergebnis der Evaluation des Ausdrucks expr gegen die vorherige Zeile in der Partition zurück. Falls es keine vorhergehende Zeile gibt (weil die aktuelle Zeile die erste ist), wird NULL zurückgegeben. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr,offset) Falls das Offset-Argument angegeben ist, dann muss dieses ein nicht-negativer Integerwert sein. In diesem Fall ist der Rückgabewert das Ergebnis der Evaluation von expr gegen die Zeile, die innerhalb der Partition offset Zeilen weiter oben liegt. Falls offset 0 ist, wird expr gegen die aktuelle Zeile evaluiert. Falls vor der aktuellen Zeile nicht genügend Zeilen vorhanden sind, wird NULL zurückgegeben. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,offset,default) Falls auch default angegeben ist, dann wird dieser Wert anstatt NULL zurückgegeben, falls die durch offset angegebene Zeile nicht existiert. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) Gibt das Ergebnis der Evaluation des Ausdrucks expr gegen die nächste Zeile in der Partition zurück. Falls es keine nächste Zeile gibt (weil die aktuelle Zeile die letzte ist), wird NULL zurückgegeben. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,offset) Falls das Offset-Argument angegeben ist, dann muss dieses ein nicht-negativer Integerwert sein. In diesem Fall ist der Rückgabewert das Ergebnis der Evaluation von expr gegen die Zeile, die innerhalb der Partition offset Zeilen weiter unten liegt. Falls offset 0 ist, wird expr gegen die aktuelle Zeile evaluiert. Falls nach der aktuellen Zeile nicht genügend Zeilen vorhanden sind, wird NULL zurückgegeben. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) Diese eingebaute Fensterfunktion berechnet das Windowframe für jede Zeile auf die gleiche Art wie ein aggregierte Fensterfunktion. Sie gibt den Wert von expr evaluiert gegen die erste Zeile des Windowframes für jede Zeile zurück. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) Diese eingebaute Fensterfunktion berechnet das Windowframe für jede Zeile auf die gleiche Art wie ein aggregierte Fensterfunktion. Sie gibt den Wert von expr evaluiert gegen die letzte Zeile des Windowframes für jede Zeile zurück. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr,N) Diese eingebaute Fensterfunktion berechnet das Windowframe für jede Zeile auf die gleiche Art wie ein aggregierte Fensterfunktion. Sie gibt den Wert von expr evaluiert gegen die N-te Zeile des Windowframes für zurück. Die Zeilen werden beginnend bei 1 in der durch den ORDER-BY-Befehl definierten Reihenfolge nummeriert, falls dieser vorhanden ist, ansonsten in beliebiger Reihenfolge. Falls es keine N-te Zeile in der Partition gibt, dann wird NULL zurückgegeben. + + + + SqliteTableModel + + + reading rows + lese Zeilen + + + + loading... + lade... + + + + References %1(%2) +Hold %3Shift and click to jump there + Referenzen %1(%2) +Halten Sie %3Umschalt und klicken Sie, um hierher zu springen + + + + Error changing data: +%1 + Fehler beim Ändern der Daten: +%1 + + + + retrieving list of columns + ermittle Liste der Spalten + + + + Fetching data... + Rufe Daten ab... + + + + + Cancel + Abbrechen + + + + TableBrowser + + + Browse Data + Daten durchsuchen + + + + &Table: + &Tabelle: + + + + Select a table to browse data + Anzuzeigende Tabelle auswählen + + + + Use this list to select a table to be displayed in the database view + Diese Liste zur Auswahl der in der Datenbankansicht anzuzeigenden Tabelle verwenden + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + Dies ist die Datenbanktabellen-Ansicht. Sie können die folgenden Aktionen durchführen: + - Mit dem Schreiben beginnen, um die Werte Inline zu bearbeiten. + - Doppelt auf einen Eintrag klicken, um dessen Inhalte im Zelleneditor-Fenster zu bearbeiten. + - Alt+Entf zum Löschen des Zellinhaltes zu NULL. + - Strg+" zur Duplizierung des aktuellen Eintrags. + - Strg+' zum Kopieren des Wertes der darüberliegenden Zelle. + - Standardmäßige Auswahl- und Kopieren/Einfügen-Operationen. + + + + Text pattern to find considering the checks in this frame + Zu findendes Textpattern unter Einbeziehung der Prüfungen in diesem Fenster + + + + Find in table + In Tabelle suchen + + + + Find previous match [Shift+F3] + Vorherige Übereinstimmung finden [Umschalt+F3] + + + + Find previous match with wrapping + Vorherige Übereinstimmung mit Umbruch finden + + + + Shift+F3 + + + + + Find next match [Enter, F3] + Nächste Übereinstimmung finden [Enter, F3] + + + + Find next match with wrapping + Nächste Übereinstimmung mit Umbruch finden + + + + F3 + + + + + The found pattern must match in letter case + Das Suchpattern muss in Groß-/Kleinschreibung übereinstimmen + + + + Case Sensitive + Schreibungsabhängig + + + + The found pattern must be a whole word + Das Pattern muss ein ganzes Wort sein + + + + Whole Cell + Gesamte Zelle + + + + Interpret search pattern as a regular expression + Suchpattern als regulären Ausdruck interpretieren + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Falls aktiviert, wird das Suchmuster als regulärer Ausdruck (UNIX-Stil) interpretiert. Siehe <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks (englisch)</a>.</p></body></html> + + + + Regular Expression + Regulärer Ausdruck + + + + + Close Find Bar + Suchbar schließen + + + + Text to replace with + Ersetzungstext + + + + Replace with + Ersetzen mit + + + + Replace next match + Nächste Übereinstimmung ersetzen + + + + + Replace + Ersetzen + + + + Replace all matches + Alle Übereinstimmungen ersetzen + + + + Replace all + Alle ersetzen + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Zum Anfang scrollen</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Ein Klick auf diesen Button navigiert zum Anfang der oben angezeigten Tabelle.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + Eine Seite nach oben scrollen + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>Ein Klick auf diesen Button navigiert in den Einträgen der Tabellenansicht oben eine Seite nach oben.</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 von 0 + + + + Scroll one page downwards + Eine Seite nach unten scrollen + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>Ein Klick auf diesen Button navigiert in den Einträgen der Tabellenansicht oben eine Seite nach unten.</p></body></html> + + + + > + > + + + + Scroll to the end + Zum Ende scrollen + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + <html><head/><body><p>Ein Klick auf diesen Button navigiert zum Ende der oben angezeigten Tabelle.</p></body></html> + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html></head><body><p>Klicken Sie hier, um zu einer bestimmten Zeile zu springen</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html></head><body><p>Dieser Button kann zum Navigieren zu einer im "Springe zu"-Bereich festgelegten Zeile verwendet werden.</p></body></html> + + + + Go to: + Springe zu: + + + + Enter record number to browse + Zeilennummer zum Suchen auswählen + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Geben Sie eine Zeilennummer in diesem Bereich ein und klicken Sie auf den "Springe zu:"-Button, um die Zeile in der Datenbankansicht anzuzeigen + + + + 1 + 1 + + + + Show rowid column + Rowid-Spalte anzeigen + + + + Toggle the visibility of the rowid column + Sichtbarkeit der Rowid-Spalte umschalten + + + + Unlock view editing + Ansicht zur Bearbeitung entsperren + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + Dies entsperrt die aktuelle Ansicht zur Bearbeitung. Allerdings werden zur Bearbeitung passende Trigger benötigt. + + + + Edit display format + Anzeigeformat bearbeiten + + + + Edit the display format of the data in this column + Anzeigeformat der Daten in dieser Spalte bearbeiten + + + + + New Record + Neue Zeile + + + + + Insert a new record in the current table + Fügt eine neue Zeile zur aktuellen Tabelle hinzu + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>Dieser Button erstellt eine neue Zeile in der Datenbank. Halten sie die Maustaste gedrückt, um ein Popup-Menü mit verschiedenen Optionen zu öffnen:</p><ul><li><span style=" font-weight:600;">Neuer Eintrag</span>: eine neue Zeile mit Standardwerten in die Datenbank einfügen.</li><li><span style=" font-weight:600;">Werte einfügen...</span>: einen Dialog zur Eingabe von Werten öffnen, bevor diese in die Datenbank eingefügt werden. Dies erlaubt die Eingabe von Werten, die den Constraints Genüge tun. Dieser Dialog wird auch geöffnet, falls die <span style=" font-weight:600;">Neuer Eintrag</span>-Option aufgrund dieser Constraints fehlschlägt.</li></ul></body></html> + + + + + Delete Record + Zeile löschen + + + + Delete the current record + Aktuelle Zeile löschen + + + + + This button deletes the record or records currently selected in the table + Dieser Button löscht die Zeile oder Zeilen, die aktuell in der Tabelle ausgewählt sind + + + + + Insert new record using default values in browsed table + Eine neue Zeile mit den Standardwerten in den ausgewählte Tabelle einfügen + + + + Insert Values... + Werte einfügen... + + + + + Open a dialog for inserting values in a new record + Einen Dialog zum Einfügen von Werten in eine neue Zeile öffnen + + + + Export to &CSV + Nach &CSV exportieren + + + + + Export the filtered data to CSV + Die gefilterten Daten als CSV exportieren + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + Dieser Button exportiert die Daten der ausgewählten Tabelle wie aktuell angezeigt (gefiltert, Anzeigeformate und Spaltenreihenfolge) als CSV-Datei. + + + + Save as &view + Als &View speichern + + + + + Save the current filter, sort column and display formats as a view + Den aktuellen Filter, die Spaltenreihenfolge und Anzeigeformate als View speichern + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + Dieser Button speichert die aktuellen Einstellungen der ausgewählten Tabelle (Filter, Anzeigeformate und Spaltenreihenfolge) als SQL-View, welche Sie später durchsuchen oder in SQL-Statements verwenden können. + + + + Save Table As... + Tabelle speichern als... + + + + + Save the table as currently displayed + Tabelle wie aktuell angezeigt speichern + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>Dieses Popup-Menü bietet die folgenden Optionen zur Anwendung auf die aktuell ausgewählte und gefilterte Tabelle:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">CSV exportieren: diese Option exportiert die Daten der ausgewählten Tabelle wie aktuell angezeigt (gefiltert, Anzeigeformat und Spaltenreihenfolge) in eine CSV-Datei.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Als Ansicht speichern: diese Option speichert die aktuelle Einstellung der ausgewählten Tabelle (Filter, Anzeigeformat und Spaltenreihenfolge) als eine SQL-View, die Sie später durchsuchen oder in SQL-Statements verwenden können.</li></ul></body></html> + + + + Hide column(s) + Spalte(n) verbergen + + + + Hide selected column(s) + Ausgewählte Spalte(n) verbergen + + + + Show all columns + Alle Spalten anzeigen + + + + Show all columns that were hidden + Alle versteckten Spalten anzeigen + + + + + Set encoding + Kodierung setzen + + + + Change the encoding of the text in the table cells + Kodierung des Textes in den Tabellenzellen ändern + + + + Set encoding for all tables + Kodierung für alle Tabellen setzen + + + + Change the default encoding assumed for all tables in the database + Voreingestellte Kodierung für alle Tabellen in der Datenbank ändern + + + + Clear Filters + Filter löschen + + + + Clear all filters + Alle Filter löschen + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + Dieser Button löscht alle gesetzten Filter in den Header-Eingabefeldern der aktuell angezeigten Tabelle. + + + + Clear Sorting + Sortierung löschen + + + + Reset the order of rows to the default + Die Zeilenreihenfolge auf den Standardzustand zurücksetzen + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + Dieser Button setzt die angegebene Spaltensortierung für die aktuell angezeigte Tabelle zurück und verwendet die Standardreihenfolge. + + + + Print + Drucken + + + + Print currently browsed table data + Aktuell angezeigte Tabellendaten drucken + + + + Print currently browsed table data. Print selection if more than one cell is selected. + Die aktuell angezeigten Tabellendaten drucken. Druckauswahl, falls mehr als eine Zelle ausgewählt ist. + + + + Ctrl+P + + + + + Refresh + Aktualisieren + + + + Refresh the data in the selected table + Die Daten in der ausgewählten Tabelle aktualisieren + + + + This button refreshes the data in the currently selected table. + Dieser Button aktualisiert die Daten der aktuellen Tabellenansicht. + + + + F5 + + + + + Find in cells + In Zellen suchen + + + + Open the find tool bar which allows you to search for values in the table view below. + Die Such-Toolbar öffnen, welche das Suchen nach Werten in der Tabellenansicht unten erlaubt. + + + + + Bold + Fett + + + + Ctrl+B + + + + + + Italic + Kursiv + + + + + Underline + Unterstreichung + + + + Ctrl+U + + + + + + Align Right + Rechts ausrichten + + + + + Align Left + Links ausrichten + + + + + Center Horizontally + Horizontal zentrieren + + + + + Justify + Blocksatz + + + + + Edit Conditional Formats... + Bedingte Formatierungen bearbeiten... + + + + Edit conditional formats for the current column + Bedingte Formatierungen der aktuellen Spalte bearbeiten + + + + Clear Format + Formatierung löschen + + + + Clear All Formats + Alle Formatierungen löschen + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + Jegliche Zellenformatierung für die ausgewählten Zellen und alle bedingten Formatierungen für die ausgewählten Spalten löschen + + + + + Font Color + Schriftfarbe + + + + + Background Color + Hintergrundfarbe + + + + Toggle Format Toolbar + Formatierungs-Toolbar umschalten + + + + Show/hide format toolbar + Formatierungs-Toolbar anzeigen/verstecken + + + + + This button shows or hides the formatting toolbar of the Data Browser + Dieser Button zeigt oder versteckt die Formatierungs-Toolbar im Datenbrowser + + + + Select column + Spalte auswählen + + + + Ctrl+Space + + + + + Replace text in cells + Text in Zellen ersetzen + + + + Filter in any column + In allen Spalten filtern + + + + Ctrl+R + + + + + %n row(s) + + %n row + %n rows + + + + + , %n column(s) + + , %n Spalte + , %n Spalten + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . Summe: %1; Durchschnitt: %2; Minimum: %3; Maximum: %4 + + + + Conditional formats for "%1" + Bedingte Formatierung for "%1" + + + + determining row count... + bestimme Zeilenanzahl... + + + + %1 - %2 of >= %3 + %1 - %2 von >= %3 + + + + %1 - %2 of %3 + %1 - %2 von %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + Bitte einen Pseudo-Primärschlüssel eingeben, um die Bearbeitung dieser Ansicht zu ermöglichen. Dies sollte der Name der eindeutigen Spalte dieser Ansicht sein. + + + + Delete Records + Einträge löschen + + + + Duplicate records + Einträge duplizieren + + + + Duplicate record + Eintrag duplizieren + + + + Ctrl+" + + + + + Adjust rows to contents + Zeilen an Inhalte anpassen + + + + Error deleting record: +%1 + Fehler beim Löschen des Eintrags: +%1 + + + + Please select a record first + Bitte zuerst einen Eintrag auswählen + + + + There is no filter set for this table. View will not be created. + Es gibt keinen Filtersatz für diese Tabelle. Die Ansicht wird nicht erstellt. + + + + Please choose a new encoding for all tables. + Bitte wählen Sie eine neue Kodierung für alle Tabellen. + + + + Please choose a new encoding for this table. + Bitte wählen Sie eine neue Kodierung für diese Tabelle. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Lassen Sie das Feld leer, um die Datenbank-Kodierung zu verwenden. + + + + This encoding is either not valid or not supported. + Diese Kodierung ist entweder nicht gültig oder nicht unterstützt. + + + + %1 replacement(s) made. + %1 Ersetzung(en) durchgeführt. + + + + VacuumDialog + + + Compact Database + Datenbank komprimieren + + + + Warning: Compacting the database will commit all of your changes. + Warnung: Das Verdichten der Datenbank wird alle Ihre Änderungen übermitteln. + + + + Please select the databases to co&mpact: + Bitte wählen Sie die zu ver&dichtenden Datenbanken aus: + + + diff --git a/ConfigFiles/translations/sqlb_en_GB.qm b/ConfigFiles/translations/sqlb_en_GB.qm new file mode 100644 index 0000000..e1bf23d Binary files /dev/null and b/ConfigFiles/translations/sqlb_en_GB.qm differ diff --git a/ConfigFiles/translations/sqlb_en_GB.ts b/ConfigFiles/translations/sqlb_en_GB.ts new file mode 100644 index 0000000..40ddcbe --- /dev/null +++ b/ConfigFiles/translations/sqlb_en_GB.ts @@ -0,0 +1,6927 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + + + + + Version + + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + + + + + AddRecordDialog + + + Add New Record + + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + + + + + Name + + + + + Type + + + + + Value + + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + + + + + Auto-increment + + + + + + Unique constraint + + + + + + Check constraint: %1 + + + + + + Foreign key: %1 + + + + + + Default value: %1 + + + + + + Error adding record. Message from database engine: + +%1 + + + + + Are you sure you want to restore all the entered values to their defaults? + + + + + Application + + + Possible command line arguments: + + + + + Usage: %1 [options] [<database>|<project>] + + + + + + -h, --help Show command line options + + + + + -q, --quit Exit application after running scripts + + + + + -s, --sql <file> Execute this SQL file after opening the DB + + + + + -t, --table <table> Browse this table after opening the DB + + + + + -R, --read-only Open database in read-only mode + + + + + -o, --option <group>/<setting>=<value> + + + + + Run application with this setting temporarily set to value + + + + + -O, --save-option <group>/<setting>=<value> + + + + + Run application saving this value for this setting + + + + + -v, --version Display the current version + + + + + <database> Open this SQLite database + + + + + <project> Open this project file (*.sqbpro) + + + + + The -s/--sql option requires an argument + + + + + The file %1 does not exist + + + + + The -t/--table option requires an argument + + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + + + + + Invalid option/non-existant file: %1 + + + + + SQLite Version + + + + + SQLCipher Version %1 (based on SQLite %2) + + + + + DB Browser for SQLite Version %1. + + + + + Built for %1, running on %2 + + + + + Qt Version %1 + + + + + CipherDialog + + + SQLCipher encryption + + + + + &Password + + + + + &Reenter password + + + + + Encr&yption settings + + + + + SQLCipher &3 defaults + + + + + SQLCipher &4 defaults + + + + + Custo&m + + + + + Page si&ze + + + + + &KDF iterations + + + + + HMAC algorithm + + + + + KDF algorithm + + + + + Plaintext Header Size + + + + + Passphrase + + + + + Raw key + + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + + + + + ColumnDisplayFormatDialog + + + Choose display format + + + + + Display format + + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + + + + + Default + + + + + Decimal number + + + + + Exponent notation + + + + + Hex blob + + + + + Hex number + + + + + Apple NSDate to date + + + + + Java epoch (milliseconds) to date + + + + + .NET DateTime.Ticks to date + + + + + Julian day to date + + + + + Unix epoch to local time + + + + + Date as dd/mm/yyyy + + + + + Lower case + + + + + Custom display format must contain a function call applied to %1 + + + + + Error in custom display format. Message from database engine: + +%1 + + + + + Custom display format must return only one column but it returned %1. + + + + + Octal number + + + + + Round number + + + + + Unix epoch to date + + + + + Upper case + + + + + Windows DATE to date + + + + + Custom + + + + + CondFormatManager + + + Conditional Format Manager + + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + + + + + Add new conditional format + + + + + &Add + + + + + Remove selected conditional format + + + + + &Remove + + + + + Move selected conditional format up + + + + + Move &up + + + + + Move selected conditional format down + + + + + Move &down + + + + + Foreground + + + + + Text color + Text colour + + + + Background + + + + + Background color + Background colour + + + + Font + + + + + Size + + + + + Bold + + + + + Italic + + + + + Underline + + + + + Alignment + + + + + Condition + + + + + + Click to select color + + + + + Are you sure you want to clear all the conditional formats of this field? + + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + + + + + Invalid file format + + + + + Do you really want to close this temporary database? All data will be lost. + + + + + Do you want to save the changes made to the database file %1? + + + + + Database didn't close correctly, probably still busy + + + + + The database is currently busy: + + + + + Do you want to abort that other operation? + + + + + Exporting database to SQL file... + + + + + + Cancel + + + + + + No database file opened + + + + + Executing SQL... + + + + + Action cancelled. + + + + + + Error in statement #%1: %2. +Aborting execution%3. + + + + + + and rolling back + + + + + didn't receive any output from %1 + + + + + could not execute command: %1 + + + + + Cannot delete this object + + + + + Cannot set data on this object + + + + + + A table with the name '%1' already exists in schema '%2'. + + + + + No table with name '%1' exists in schema '%2'. + + + + + + Cannot find column %1. + + + + + Creating savepoint failed. DB says: %1 + + + + + Renaming the column failed. DB says: +%1 + + + + + + Releasing savepoint failed. DB says: %1 + + + + + Creating new table failed. DB says: %1 + + + + + Copying data to new table failed. DB says: +%1 + + + + + Deleting old table failed. DB says: %1 + + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + + + + + could not get list of databases: %1 + + + + + Error loading extension: %1 + + + + + could not get column information + + + + + This database has already been attached. Its schema name is '%1'. + + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + + + + + could not get list of db objects: %1 + + + + + Error setting pragma %1 to %2: %3 + + + + + File not found. + + + + + DbStructureModel + + + Name + + + + + Object + + + + + Type + + + + + Schema + + + + + Database + + + + + Browsables + + + + + All + + + + + Temporary + + + + + Tables (%1) + + + + + Indices (%1) + + + + + Views (%1) + + + + + Triggers (%1) + + + + + EditDialog + + + Edit database cell + + + + + Mode: + + + + + + Image + + + + + Set as &NULL + + + + + Apply data to cell + + + + + This button saves the changes performed in the cell editor to the database cell. + + + + + Apply + + + + + Text + + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + + + + + RTL Text + + + + + Binary + + + + + JSON + + + + + XML + + + + + + Automatically adjust the editor mode to the loaded data type + + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + + + + + Auto-switch + + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + + + + + Open preview dialog for printing the data currently stored in the cell + + + + + Auto-format: pretty print on loading, compact on saving. + + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + + + + + Word Wrap + + + + + Wrap lines on word boundaries + + + + + + Open in default application or browser + + + + + Open in application + + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + + + + + Save file reference... + + + + + Save reference to file + + + + + + Open in external application + + + + + Autoformat + + + + + &Export... + + + + + + &Import... + + + + + + Import from file + + + + + + Opens a file dialog used to import any kind of data to this database cell. + + + + + Export to file + + + + + Opens a file dialog used to export the contents of this database cell to a file. + + + + + Erases the contents of the cell + + + + + This area displays information about the data present in this database cell + + + + + Type of data currently in cell + + + + + Size of data currently in table + + + + + + Print... + + + + + Open preview dialog for printing displayed image + + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + + + + + Copy Hex and ASCII + + + + + Copy selected hexadecimal and ASCII columns to the clipboard + + + + + Ctrl+Shift+C + + + + + Choose a filename to export data + + + + + Type of data currently in cell: %1 Image + + + + + %1x%2 pixel(s) + + + + + Type of data currently in cell: NULL + + + + + + Type of data currently in cell: Text / Numeric + + + + + + Image data can't be viewed in this mode. + + + + + + Try switching to Image or Binary mode. + + + + + + Binary data can't be viewed in this mode. + + + + + + Try switching to Binary mode. + + + + + + Image files (%1) + + + + + Binary files (*.bin) + + + + + Choose a file to import + + + + + %1 Image + + + + + Invalid data for this mode + + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + + + + + + + %n character(s) + + %n character + %n characters + + + + + Type of data currently in cell: Valid JSON + + + + + Type of data currently in cell: Binary + + + + + Couldn't save file: %1. + + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + + + + + + %n byte(s) + + %n byte + %n bytes + + + + + EditIndexDialog + + + &Name + + + + + Order + + + + + &Table + + + + + Edit Index Schema + + + + + &Unique + + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + + + + + Partial inde&x clause + + + + + Colu&mns + + + + + Table column + + + + + Type + + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + + + + + Index column + + + + + Deleting the old index failed: +%1 + + + + + Creating the index failed: +%1 + + + + + EditTableDialog + + + Edit table definition + + + + + Table + + + + + Advanced + + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + + + + + Without Rowid + + + + + Database sche&ma + + + + + Fields + + + + + Add + + + + + Remove + + + + + Move to top + + + + + Move up + + + + + Move down + + + + + Move to bottom + + + + + + Name + + + + + + Type + + + + + NN + + + + + Not null + + + + + PK + + + + + Primary key + + + + + AI + + + + + Autoincrement + + + + + U + + + + + + + Unique + + + + + Default + + + + + Default value + + + + + + + Check + + + + + Check constraint + + + + + Collation + + + + + + + Foreign Key + + + + + Constraints + + + + + Add constraint + + + + + Remove constraint + + + + + Columns + + + + + SQL + + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + + + + + + Primary Key + + + + + Add a primary key constraint + + + + + Add a foreign key constraint + + + + + Add a unique constraint + + + + + Add a check constraint + + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + + + + + Error creating table. Message from database engine: +%1 + + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + + + + + Column '%1' has duplicate data. + + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + + + + + ExportDataDialog + + + Export data as CSV + + + + + Tab&le(s) + + + + + Colu&mn names in first line + + + + + Fie&ld separator + + + + + , + + + + + ; + + + + + Tab + + + + + | + + + + + + + Other + + + + + &Quote character + + + + + " + + + + + ' + + + + + New line characters + + + + + Windows: CR+LF (\r\n) + + + + + Unix: LF (\n) + + + + + Pretty print + + + + + + Could not open output file: %1 + + + + + + Choose a filename to export data + + + + + Export data as JSON + + + + + exporting CSV + + + + + exporting JSON + + + + + Please select at least 1 table. + + + + + Choose a directory + + + + + Export completed. + + + + + ExportSqlDialog + + + Export SQL... + + + + + Tab&le(s) + + + + + Select All + + + + + Deselect All + + + + + &Options + + + + + Keep column names in INSERT INTO + + + + + Multiple rows (VALUES) per INSERT statement + + + + + Export everything + + + + + Export data only + + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + + + + + Export schema only + + + + + Please select at least one table. + + + + + Choose a filename to export + + + + + Export completed. + + + + + Export cancelled or failed. + + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + + + + + Find and Replace... + + + + + Print... + + + + + ExtendedTableWidget + + + Use as Exact Filter + + + + + Containing + + + + + Not containing + + + + + Not equal to + + + + + Greater than + + + + + Less than + + + + + Greater or equal + + + + + Less or equal + + + + + Between this and... + + + + + Regular expression + + + + + Edit Conditional Formats... + + + + + Set to NULL + + + + + Copy + + + + + Copy with Headers + + + + + Copy as SQL + + + + + Paste + + + + + Print... + + + + + Use in Filter Expression + + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + + + + + FileExtensionManager + + + File Extension Manager + + + + + &Up + + + + + &Down + + + + + &Add + + + + + &Remove + + + + + + Description + + + + + Extensions + + + + + *.extension + + + + + FilterLineEdit + + + Filter + + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + + + + + Clear All Conditional Formats + + + + + Use for Conditional Format + + + + + Edit Conditional Formats... + + + + + Set Filter Expression + + + + + What's This? + + + + + Is NULL + + + + + Is not NULL + + + + + Is empty + + + + + Is not empty + + + + + Not containing... + + + + + Equal to... + + + + + Not equal to... + + + + + Greater than... + + + + + Less than... + + + + + Greater or equal... + + + + + Less or equal... + + + + + In range... + + + + + Regular expression... + + + + + FindReplaceDialog + + + Find and Replace + + + + + Fi&nd text: + + + + + Re&place with: + + + + + Match &exact case + + + + + Match &only whole words + + + + + When enabled, the search continues from the other end when it reaches one end of the page + + + + + &Wrap around + + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + + + + + Search &backwards + + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + + + + + &Selection only + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Use regular e&xpressions + + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + + + + + &Find Next + + + + + F3 + + + + + &Replace + + + + + Highlight all the occurrences of the text in the page + + + + + F&ind All + + + + + Replace all the occurrences of the text in the page + + + + + Replace &All + + + + + The searched text was not found + + + + + The searched text was not found. + + + + + The searched text was found one time. + + + + + The searched text was found %1 times. + + + + + The searched text was replaced one time. + + + + + The searched text was replaced %1 times. + + + + + ForeignKeyEditor + + + &Reset + + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + + + + + ImportCsvDialog + + + Import CSV file + + + + + Table na&me + + + + + &Column names in first line + + + + + Field &separator + + + + + , + + + + + ; + + + + + + Tab + + + + + | + + + + + Other + + + + + &Quote character + + + + + + Other (printable) + + + + + + Other (code) + + + + + " + + + + + ' + + + + + &Encoding + + + + + UTF-8 + + + + + UTF-16 + + + + + ISO-8859-1 + + + + + Trim fields? + + + + + Separate tables + + + + + Advanced + + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + + + + + Ignore default &values + + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + + + + + Fail on missing values + + + + + Disable data type detection + + + + + Disable the automatic data type detection when creating a new table. + + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + + + + + Abort import + + + + + Ignore row + + + + + Replace existing row + + + + + Conflict strategy + + + + + + Deselect All + + + + + Match Similar + + + + + Select All + + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + + + + + There is already a table named '%1'. Do you want to import the data into it? + + + + + Creating restore point failed: %1 + + + + + Creating the table failed: %1 + + + + + importing CSV + + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + + + + + Inserting row failed: %1 + + + + + MainWindow + + + DB Browser for SQLite + + + + + toolBar1 + + + + + Opens the SQLCipher FAQ in a browser window + + + + + Export one or more table(s) to a JSON file + + + + + &File + + + + + &Import + + + + + &Export + + + + + &Edit + + + + + &View + + + + + &Help + + + + + DB Toolbar + + + + + Edit Database &Cell + + + + + DB Sche&ma + + + + + &Remote + + + + + + Execute current line + + + + + This button executes the SQL statement present in the current editor line + + + + + Shift+F5 + + + + + Sa&ve Project + + + + + Open an existing database file in read only mode + + + + + User + + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + + + + + Un/comment block of SQL code + + + + + Un/comment block + + + + + Comment or uncomment current line or selected block of code + + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + + + + + Ctrl+/ + + + + + Stop SQL execution + + + + + Stop execution + + + + + Stop the currently running SQL script + + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + + + + + &Tools + + + + + Application + + + + + Error Log + + + + + This button clears the contents of the SQL logs + + + + + &Clear + + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + + + + + + Project Toolbar + + + + + Extra DB toolbar + + + + + + + Close the current database file + + + + + &New Database... + + + + + + Create a new database file + + + + + This option is used to create a new database file. + + + + + Ctrl+N + + + + + + &Open Database... + + + + + + + + + Open an existing database file + + + + + + + This option is used to open an existing database file. + + + + + Ctrl+O + + + + + &Close Database + + + + + This button closes the connection to the currently open database file + + + + + + Ctrl+W + + + + + + Revert database to last saved state + + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + + + + + + Write changes to the database file + + + + + This option is used to save changes to the database file. + + + + + Ctrl+S + + + + + Compact &Database... + + + + + Compact the database file, removing space wasted by deleted records + + + + + + Compact the database file, removing space wasted by deleted records. + + + + + E&xit + + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + + + + + Export a database to a .sql dump text file. + + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + + + + + Export a database table as a comma separated text file. + + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + + + + + + Delete Table + + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + + + + + &Preferences... + + + + + + Open the preferences window. + + + + + &DB Toolbar + + + + + Shows or hides the Database toolbar. + + + + + Shift+F1 + + + + + Open SQL file(s) + + + + + This button opens files containing SQL statements and loads them in new editor tabs + + + + + Execute line + + + + + &Wiki + + + + + F1 + + + + + Bug &Report... + + + + + Feature Re&quest... + + + + + Web&site + + + + + &Donate on Patreon... + + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + + + + + This button lets you open a DB Browser for SQLite project file + + + + + Ctrl+Shift+O + + + + + &Save Project As... + + + + + + + Save the project in a file selected in a dialog + + + + + Save A&ll + + + + + + + Save DB file, project file and opened SQL files + + + + + Ctrl+Shift+S + + + + + Browse Table + + + + + &Attach Database... + + + + + + Add another database file to the current database connection + + + + + This button lets you add another database file to the current database connection + + + + + &Set Encryption... + + + + + SQLCipher &FAQ + + + + + Table(&s) to JSON... + + + + + Open Data&base Read Only... + + + + + Save results + + + + + Save the results view + + + + + This button lets you save the results of the last executed query + + + + + + Find text in SQL editor + + + + + Find + + + + + This button opens the search bar of the editor + + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + + + + + Find or replace + + + + + This button opens the find/replace dialog for the current editor tab + + + + + Ctrl+H + + + + + Export to &CSV + + + + + Save as &view + + + + + Save as view + + + + + Shows or hides the Project toolbar. + + + + + Extra DB Toolbar + + + + + New In-&Memory Database + + + + + Drag && Drop Qualified Names + + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + + + + + Drag && Drop Enquoted Names + + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + + + + + &Integrity Check + + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + + + + + &Foreign-Key Check + + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + + + + + &Quick Integrity Check + + + + + Run a quick integrity check over the open DB + + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + + + + + &Optimize + + + + + Attempt to optimize the database + + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + + + + + + Print + + + + + Print text from current SQL editor tab + + + + + Open a dialog for printing the text in the current SQL editor tab + + + + + Print the structure of the opened database + + + + + Open a dialog for printing the structure of the opened database + + + + + &Recently opened + + + + + Open &tab + + + + + Ctrl+T + + + + + SQL &Log + + + + + Show S&QL submitted by + + + + + &Plot + + + + + Ctrl+F4 + + + + + &Revert Changes + + + + + &Write Changes + + + + + &Database from SQL file... + + + + + &Table from CSV file... + + + + + &Database to SQL file... + + + + + &Table(s) as CSV file... + + + + + &Create Table... + + + + + &Delete Table... + + + + + &Modify Table... + + + + + Create &Index... + + + + + W&hat's This? + + + + + &About + + + + + This button opens a new tab for the SQL editor + + + + + &Execute SQL + + + + + Execute all/selected SQL + + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + + + + + + + Save SQL file + + + + + &Load Extension... + + + + + Ctrl+E + + + + + Export as CSV file + + + + + Export table as comma separated values file + + + + + + Save the current session to a file + + + + + Open &Project... + + + + + + Load a working session from a file + + + + + + Save SQL file as + + + + + This button saves the content of the current SQL editor tab to a file + + + + + &Browse Table + + + + + Copy Create statement + + + + + Copy the CREATE statement of the item to the clipboard + + + + + Ctrl+Return + + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Encrypted + + + + + Read only + + + + + Database file is read only. Editing the database is disabled. + + + + + Database encoding + + + + + Database is encrypted using SQLCipher + + + + + + Choose a database file + + + + + + + Choose a filename to save under + + + + + Error checking foreign keys after table modification. The changes will be reverted. + + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + + + + + + At line %1: + + + + + Result: %2 + + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + + + + + Choose a file to import + + + + + Text files(*.sql *.txt);;All files(*) + + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + + + + + Window Layout + + + + + Simplify Window Layout + + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + + + + + Dock Windows at Left Side + + + + + Dock Windows at Top + + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + + + + + Do you want to save the changes made to the project file '%1'? + + + + + File %1 already exists. Please choose a different name. + + + + + Error importing data: %1 + + + + + Import completed. + + + + + Delete View + + + + + Modify View + + + + + Delete Trigger + + + + + Modify Trigger + + + + + Delete Index + + + + + Modify Index + + + + + Modify Table + + + + + Do you want to save the changes made to SQL tabs in a new project file? + + + + + Do you want to save the changes made to the SQL file %1? + + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + + + + + Could not find resource file: %1 + + + + + Choose a project file to open + + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + + + + + Could not open project file for writing. +Reason: %1 + + + + + Busy (%1) + + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + + + + + Reset Window Layout + + + + + Alt+0 + + + + + The database is currenctly busy. + + + + + Click here to interrupt the currently running query. + + + + + Could not open database file. +Reason: %1 + + + + + In-Memory database + + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + + + + + Are you sure you want to delete the view '%1'? + + + + + Are you sure you want to delete the trigger '%1'? + + + + + Are you sure you want to delete the index '%1'? + + + + + Error: could not delete the table. + + + + + Error: could not delete the view. + + + + + Error: could not delete the trigger. + + + + + Error: could not delete the index. + + + + + Message from database engine: +%1 + + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + + + + + Edit View %1 + + + + + Edit Trigger %1 + + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + + + + + -- EXECUTING SELECTION IN '%1' +-- + + + + + -- EXECUTING LINE IN '%1' +-- + + + + + -- EXECUTING ALL IN '%1' +-- + + + + + Result: %1 + + + + + %1 rows returned in %2ms + + + + + Choose text files + + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + + + + + Opened '%1' in read-only mode from recent file list + + + + + Opened '%1' from recent file list + + + + + &%1 %2%3 + + + + + (read only) + + + + + Open Database or Project + + + + + Attach Database... + + + + + Import CSV file(s)... + + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + + + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + + + + + Select SQL file to open + + + + + This action will open a new SQL tab with the following statements for you to edit and run: + + + + + Rename Tab + + + + + Duplicate Tab + + + + + Close Tab + + + + + Opening '%1'... + + + + + There was an error opening '%1'... + + + + + Value is not a valid URL or filename: %1 + + + + + Select file name + + + + + Select extension file + + + + + Extension successfully loaded. + + + + + Error loading extension: %1 + + + + + + Don't show again + + + + + New version available. + + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + + + + + Project saved to file '%1' + + + + + Collation needed! Proceed? + + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + + + + + creating collation + + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + + + + + Please specify the view name + + + + + There is already an object with that name. Please choose a different name. + + + + + View successfully created. + + + + + Error creating view: %1 + + + + + This action will open a new SQL tab for running: + + + + + Press Help for opening the corresponding SQLite reference page. + + + + + DB Browser for SQLite project file (*.sqbpro) + + + + + Execution finished with errors. + + + + + Execution finished without errors. + + + + + NullLineEdit + + + Set to NULL + + + + + Alt+Del + + + + + PlotDock + + + Plot + + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used colour for that graph.</p></body></html> + + + + Columns + + + + + X + + + + + Y1 + + + + + Y2 + + + + + Axis Type + + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + + + + + Line type: + + + + + + None + + + + + Line + + + + + StepLeft + + + + + StepRight + + + + + StepCenter + + + + + Impulse + + + + + Point shape: + + + + + Cross + + + + + Plus + + + + + Circle + + + + + Disc + + + + + Square + + + + + Diamond + + + + + Star + + + + + Triangle + + + + + TriangleInverted + + + + + CrossSquare + + + + + PlusSquare + + + + + CrossCircle + + + + + PlusCircle + + + + + Peace + + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + + + + + Save current plot... + + + + + + Load all data and redraw plot + + + + + + + Row # + + + + + Copy + + + + + Print... + + + + + Show legend + + + + + Stacked bars + + + + + Date/Time + + + + + Date + + + + + Time + + + + + + Numeric + + + + + Label + + + + + Invalid + + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + + + + + Choose an axis color + Choose an axis colour + + + + Choose a filename to save under + + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + + + + + Loading all remaining data for this table took %1ms. + + + + + PreferencesDialog + + + Preferences + + + + + &General + + + + + Remember last location + + + + + Always use this location + + + + + Remember last location for session only + + + + + + + ... + + + + + Default &location + + + + + Lan&guage + + + + + Automatic &updates + + + + + + + + + + + + + enabled + + + + + Show remote options + + + + + &Database + + + + + Database &encoding + + + + + Open databases with foreign keys enabled. + + + + + &Foreign keys + + + + + SQ&L to execute after opening database + + + + + Data &Browser + + + + + Remove line breaks in schema &view + + + + + Prefetch block si&ze + + + + + Default field type + + + + + Font + + + + + &Font + + + + + Content + + + + + Symbol limit in cell + + + + + NULL + + + + + Regular + + + + + Binary + + + + + Background + + + + + Filters + + + + + Threshold for completion and calculation on selection + + + + + Escape character + + + + + Delay time (&ms) + + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + + + + + &SQL + + + + + Settings name + + + + + Context + + + + + Colour + + + + + Bold + + + + + Italic + + + + + Underline + + + + + Keyword + + + + + Function + + + + + Table + + + + + Comment + + + + + Identifier + + + + + String + + + + + Current line + + + + + SQL &editor font size + + + + + Tab size + + + + + SQL editor &font + + + + + Error indicators + + + + + Hori&zontal tiling + + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + + + + + Code co&mpletion + + + + + Toolbar style + + + + + + + + + Only display the icon + + + + + + + + + Only display the text + + + + + + + + + The text appears beside the icon + + + + + + + + + The text appears under the icon + + + + + + + + + Follow the style + + + + + DB file extensions + + + + + Manage + + + + + Main Window + + + + + Database Structure + + + + + Browse Data + + + + + Execute SQL + + + + + Edit Database Cell + + + + + When this value is changed, all the other color preferences are also set to matching colors. + + + + + Follow the desktop style + + + + + Dark style + + + + + Application style + + + + + This sets the font size for all UI elements which do not have their own font size option. + + + + + Font size + + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + + + + + Database structure font size + + + + + Font si&ze + + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + + + + + Show images in cell + + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + + + + + Field display + + + + + Displayed &text + + + + + + + + + + Click to set this color + + + + + Text color + Text colour + + + + Background color + Background colour + + + + Preview only (N/A) + + + + + Foreground + + + + + SQL &results font size + + + + + &Wrap lines + + + + + Never + + + + + At word boundaries + + + + + At character boundaries + + + + + At whitespace boundaries + + + + + &Quotes for identifiers + + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + + + + + "Double quotes" - Standard SQL (recommended) + + + + + `Grave accents` - Traditional MySQL quotes + + + + + [Square brackets] - Traditional MS SQL Server quotes + + + + + Keywords in &UPPER CASE + + + + + When set, the SQL keywords are completed in UPPER CASE letters. + + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + + + + + Close button on tabs + + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + + + + + &Extensions + + + + + Select extensions to load for every database: + + + + + Add extension + + + + + Remove extension + + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + + + + + Disable Regular Expression extension + + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + + + + + Allow loading extensions from SQL code + + + + + Remote + + + + + CA certificates + + + + + Proxy + + + + + Configure + + + + + + Subject CN + + + + + Common Name + + + + + Subject O + + + + + Organization + + + + + + Valid from + + + + + + Valid to + + + + + + Serial number + + + + + Your certificates + + + + + File + + + + + Subject Common Name + + + + + Issuer CN + + + + + Issuer Common Name + + + + + Clone databases into + + + + + + Choose a directory + + + + + The language will change after you restart the application. + + + + + Select extension file + + + + + Extensions(*.so *.dylib *.dll);;All files(*) + + + + + Import certificate file + + + + + No certificates found in this file. + + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + + + + + ProxyDialog + + + Proxy Configuration + + + + + Pro&xy Type + + + + + Host Na&me + + + + + Port + + + + + Authentication Re&quired + + + + + &User Name + + + + + Password + + + + + None + + + + + System settings + + + + + HTTP + + + + + Socks v5 + + + + + QObject + + + Error importing data + + + + + from record number %1 + + + + + . +%1 + + + + + Importing CSV file... + + + + + Cancel + + + + + All files (*) + + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + + + + + Left + + + + + Right + + + + + Center + + + + + Justify + + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + + + + + DB Browser for SQLite Project Files (*.sqbpro) + + + + + SQL Files (*.sql) + + + + + All Files (*) + + + + + Text Files (*.txt) + + + + + Comma-Separated Values Files (*.csv) + + + + + Tab-Separated Values Files (*.tsv) + + + + + Delimiter-Separated Values Files (*.dsv) + + + + + Concordance DAT files (*.dat) + + + + + JSON Files (*.json *.js) + + + + + XML Files (*.xml) + + + + + Binary Files (*.bin *.dat) + + + + + SVG Files (*.svg) + + + + + Hex Dump Files (*.dat *.bin) + + + + + Extensions (*.so *.dylib *.dll) + + + + + RemoteCommitsModel + + + Commit ID + + + + + Message + + + + + Date + + + + + Author + + + + + Size + + + + + Authored and committed by %1 + + + + + Authored by %1, committed by %2 + + + + + RemoteDatabase + + + Error opening local databases list. +%1 + + + + + Error creating local databases list. +%1 + + + + + RemoteDock + + + Remote + + + + + Identity + + + + + Push currently opened database to server + + + + + DBHub.io + + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + + + + + Local + + + + + Current Database + + + + + Clone + + + + + User + + + + + Database + + + + + Branch + + + + + Commits + + + + + Commits for + + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + + + + + Back + + + + + Delete Database + + + + + Delete the local clone of this database + + + + + Open in Web Browser + + + + + Open the web page for the current database in your browser + + + + + Clone from Link + + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + + + + + Refresh + + + + + Reload all data and update the views + + + + + F5 + + + + + Clone Database + + + + + Open Database + + + + + Open the local copy of this database + + + + + Check out Commit + + + + + Download and open this specific commit + + + + + Check out Latest Commit + + + + + Check out the latest commit of the current branch + + + + + Save Revision to File + + + + + Saves the selected revision of the database to another file + + + + + Upload Database + + + + + Upload this database as a new commit + + + + + Select an identity to connect + + + + + Public + + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + + + + + Invalid URL: The host name does not match the host name of the current identity. + + + + + Invalid URL: No branch name specified. + + + + + Invalid URL: No commit ID specified. + + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + + + + + The database has unsaved changes. Are you sure you want to push it before saving? + + + + + The database you are trying to delete is currently opened. Please close it before deleting. + + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + + + + + RemoteLocalFilesModel + + + Name + + + + + Branch + + + + + Last modified + + + + + Size + + + + + Commit + + + + + File + + + + + RemoteModel + + + Name + + + + + Commit + + + + + Last modified + + + + + Size + + + + + Size: + + + + + Last Modified: + + + + + Licence: + + + + + Default Branch: + + + + + RemoteNetwork + + + Choose a location to save the file + + + + + Error opening remote file at %1. +%2 + + + + + Error: Invalid client certificate specified. + + + + + Please enter the passphrase for this client certificate in order to authenticate. + + + + + Cancel + + + + + Uploading remote database to +%1 + + + + + Downloading remote database from +%1 + + + + + + Error: The network is not accessible. + + + + + Error: Cannot open the file for sending. + + + + + RemotePushDialog + + + Push database + + + + + Database na&me to push to + + + + + Commit message + + + + + Database licence + + + + + Public + + + + + Branch + + + + + Force push + + + + + Username + + + + + Database will be public. Everyone has read access to it. + + + + + Database will be private. Only you have access to it. + + + + + Use with care. This can cause remote commits to be deleted. + + + + + RunSql + + + Execution aborted by user + + + + + , %1 rows affected + + + + + query executed successfully. Took %1ms%2 + + + + + executing query + + + + + SelectItemsPopup + + + A&vailable + + + + + Sele&cted + + + + + SqlExecutionArea + + + Form + + + + + Find previous match [Shift+F3] + + + + + Find previous match with wrapping + + + + + Shift+F3 + + + + + The found pattern must be a whole word + + + + + Whole Words + + + + + Text pattern to find considering the checks in this frame + + + + + Find in editor + + + + + The found pattern must match in letter case + + + + + Case Sensitive + + + + + Find next match [Enter, F3] + + + + + Find next match with wrapping + + + + + F3 + + + + + Interpret search pattern as a regular expression + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Regular Expression + + + + + + Close Find Bar + + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + + + + + Results of the last executed statements + + + + + This field shows the results and status codes of the last executed statements. + + + + + Couldn't read file: %1. + + + + + + Couldn't save file: %1. + + + + + Your changes will be lost when reloading it! + + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + + + + + (X) ltrim(X) removes spaces from the left side of X. + + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + + + + + (X) rtrim(X) removes spaces from the right side of X. + + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + + + + + (X) trim(X) removes spaces from both ends of X. + + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + + + + + + + + (timestring,modifier,modifier,...) + + + + + (format,timestring,modifier,modifier,...) + + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + + + + + SqliteTableModel + + + reading rows + + + + + loading... + + + + + References %1(%2) +Hold %3Shift and click to jump there + + + + + Error changing data: +%1 + + + + + retrieving list of columns + + + + + Fetching data... + + + + + + Cancel + + + + + TableBrowser + + + Browse Data + + + + + &Table: + + + + + Select a table to browse data + + + + + Use this list to select a table to be displayed in the database view + + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + + + + + Text pattern to find considering the checks in this frame + + + + + Find in table + + + + + Find previous match [Shift+F3] + + + + + Find previous match with wrapping + + + + + Shift+F3 + + + + + Find next match [Enter, F3] + + + + + Find next match with wrapping + + + + + F3 + + + + + The found pattern must match in letter case + + + + + Case Sensitive + + + + + The found pattern must be a whole word + + + + + Whole Cell + + + + + Interpret search pattern as a regular expression + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Regular Expression + + + + + + Close Find Bar + + + + + Text to replace with + + + + + Replace with + + + + + Replace next match + + + + + + Replace + + + + + Replace all matches + + + + + Replace all + + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + + + + + |< + + + + + Scroll one page upwards + + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + + + + + < + + + + + 0 - 0 of 0 + + + + + Scroll one page downwards + + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + + + + + > + + + + + Scroll to the end + + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + + + + + >| + + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + + + + + Go to: + + + + + Enter record number to browse + + + + + Type a record number in this area and click the Go to: button to display the record in the database view + + + + + 1 + + + + + Show rowid column + + + + + Toggle the visibility of the rowid column + + + + + Unlock view editing + + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + + + + + Edit display format + + + + + Edit the display format of the data in this column + + + + + + New Record + + + + + + Insert a new record in the current table + + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + + + + + + Delete Record + + + + + Delete the current record + + + + + + This button deletes the record or records currently selected in the table + + + + + + Insert new record using default values in browsed table + + + + + Insert Values... + + + + + + Open a dialog for inserting values in a new record + + + + + Export to &CSV + + + + + + Export the filtered data to CSV + + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + + + + + Save as &view + + + + + + Save the current filter, sort column and display formats as a view + + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + + + + + Save Table As... + + + + + + Save the table as currently displayed + + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + + + + + Hide column(s) + + + + + Hide selected column(s) + + + + + Show all columns + + + + + Show all columns that were hidden + + + + + + Set encoding + + + + + Change the encoding of the text in the table cells + + + + + Set encoding for all tables + + + + + Change the default encoding assumed for all tables in the database + + + + + Clear Filters + + + + + Clear all filters + + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + + + + + Clear Sorting + + + + + Reset the order of rows to the default + + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + + + + + Print + + + + + Print currently browsed table data + + + + + Print currently browsed table data. Print selection if more than one cell is selected. + + + + + Ctrl+P + + + + + Refresh + + + + + Refresh the data in the selected table + + + + + This button refreshes the data in the currently selected table. + + + + + F5 + + + + + Find in cells + + + + + Open the find tool bar which allows you to search for values in the table view below. + + + + + + Bold + + + + + Ctrl+B + + + + + + Italic + + + + + + Underline + + + + + Ctrl+U + + + + + + Align Right + + + + + + Align Left + + + + + + Center Horizontally + + + + + + Justify + + + + + + Edit Conditional Formats... + + + + + Edit conditional formats for the current column + + + + + Clear Format + + + + + Clear All Formats + + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + + + + + + Font Color + + + + + + Background Color + + + + + Toggle Format Toolbar + + + + + Show/hide format toolbar + + + + + + This button shows or hides the formatting toolbar of the Data Browser + + + + + Select column + + + + + Ctrl+Space + + + + + Replace text in cells + + + + + Filter in any column + + + + + Ctrl+R + + + + + %n row(s) + + %n row + %n rows + + + + + , %n column(s) + + , %n column + , %n columns + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + + + + + Conditional formats for "%1" + + + + + determining row count... + + + + + %1 - %2 of >= %3 + + + + + %1 - %2 of %3 + + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + + + + + Delete Records + + + + + Duplicate records + + + + + Duplicate record + + + + + Ctrl+" + + + + + Adjust rows to contents + + + + + Error deleting record: +%1 + + + + + Please select a record first + + + + + There is no filter set for this table. View will not be created. + + + + + Please choose a new encoding for all tables. + + + + + Please choose a new encoding for this table. + + + + + %1 +Leave the field empty for using the database encoding. + + + + + This encoding is either not valid or not supported. + + + + + %1 replacement(s) made. + + + + + VacuumDialog + + + Compact Database + + + + + Warning: Compacting the database will commit all of your changes. + + + + + Please select the databases to co&mpact: + + + + diff --git a/ConfigFiles/translations/sqlb_es_ES.qm b/ConfigFiles/translations/sqlb_es_ES.qm new file mode 100644 index 0000000..cf849f0 Binary files /dev/null and b/ConfigFiles/translations/sqlb_es_ES.qm differ diff --git a/ConfigFiles/translations/sqlb_es_ES.ts b/ConfigFiles/translations/sqlb_es_ES.ts new file mode 100644 index 0000000..00d716f --- /dev/null +++ b/ConfigFiles/translations/sqlb_es_ES.ts @@ -0,0 +1,7034 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + Acerca de «DB Browser for SQLite» + + + + Version + Versión + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>«DB Browser for SQLite» es una herramienta visual, libre y de fuente abierta usada para crear, diseñar y editar archivos de bases de datos SQLite.</p><p>Está licenciada dualmente con la Mozilla Public License Versión 2, y con la GNU General Public License Versión 3 o posterior. Puede modificarla o redistribuirla bajo las condiciones de estas licencias.</p><p>Vea <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> y <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> para más detalles.</p><p>Para más información sobre este programa visite nuestra página web: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">Esta aplicación utiliza GPL/LGPL Qt Toolkit de </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>Vea </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> para los términos de licencia e información.</span></p><p><span style=" font-size:small;">Además utiliza el conjunto de iconos Silk de Mark James licenciado bajo la licencia Creative Commons Attribution 2.5 y 3.0.<br/>Vea </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> para los detalles.</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + Añadir nuevo registro + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + Introduzca valores para el nuevo registro teniendo en cuenta las restricciones. Los campos en negrita son obligatorios. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + En la columna Valor puede especificar el valor del campo identificado en la columna Nombre. La columna Tipo indica el tipo de campo. Los valores por defecto se muestran en la misma tipografía que los valores NULL. + + + + Name + Nombre + + + + Type + Tipo + + + + Value + Valor + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + Valores a insertar. Los valores mostrados por defecto son insertados automáticamente a menos que se cambien. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + Cuando se editan los valores en el cuadro superior, aquí se muestra la consulta SQL para insertar este nuevo registro. Puede editarla antes de guardar. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Guardar</span> enviará a la base de datos la sentencia SQL mostrada para insertar el nuevo registro.</p><p><span style=" font-weight:600;">Restituir valores por Defecto</span> restituirá los valores iniciales en la columna <span style=" font-weight:600;">Valor</span></p><p><span style=" font-weight:600;">Cancelar</span> cierra este diálogo sin ejecutar la consulta.</p></body></html> + + + + Auto-increment + + Auto-incremento + + + + + Unique constraint + + Restricción UNIQUE + + + + + Check constraint: %1 + + Restricción CHECK: %1 + + + + + Foreign key: %1 + + Clave foránea: %1 + + + + + Default value: %1 + + Valor por defecto: %1 + + + + + Error adding record. Message from database engine: + +%1 + Error añadiendo registro. Mensaje de la base de datos: + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + ¿Está seguro de que quiere restaurar todos los valores introducidos a sus valores por defecto? + + + + Application + + + Possible command line arguments: + Argumentos de línea de comandos disponibles: + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + Las opciones -o/--option y -O/--save-option requieren un argumento de la forma grupo/ajuste=valor + + + + Usage: %1 [options] [<database>|<project>] + + Uso: %1 [opciones] [<base de datos>|<proyecto>] + + + + + -h, --help Show command line options + -h, --help Mostrar opciones de línea de comandos + + + + -q, --quit Exit application after running scripts + -q, --quit Salir de la aplicación tras ejecutar los scripts + + + + -s, --sql <file> Execute this SQL file after opening the DB + -s, --sql <archivo> Ejecuta este archivo de SQL tras abrir la base de datos + + + + -t, --table <table> Browse this table after opening the DB + -t, --table <tabla> Mostrar esta tabla en la hoja de datos tras abrir la base de datos + + + + -R, --read-only Open database in read-only mode + -R, --read-only Abrir base de datos en modo de solo-lectura + + + + -o, --option <group>/<setting>=<value> + -o, --option <grupo>/<ajuste>=<valor> + + + + Run application with this setting temporarily set to value + Ejecutar la aplicación con este ajuste establecido temporalmente a este valor + + + + -O, --save-option <group>/<setting>=<value> + -O, --save-option <grupo>/<ajuste>=<valor> + + + + Run application saving this value for this setting + Ejecutar la aplicación guardando este valor para este ajuste + + + + -v, --version Display the current version + -v, --version Mostrar la versión actual + + + + <database> Open this SQLite database + <base de datos> Abrir esta base de datos SQLite + + + + <project> Open this project file (*.sqbpro) + <proyecto> Abrir este archivo de proyecto (*.sqbpro) + + + + The -s/--sql option requires an argument + La opción -s/--sql necesita un argumento + + + + The file %1 does not exist + El archivo %1 no existe + + + + The -t/--table option requires an argument + La opción -t/--table necesita un argumento + + + + SQLite Version + Versión de SQLite + + + + SQLCipher Version %1 (based on SQLite %2) + Versión de SQLCipher %1 (basado en SQLite %2) + + + + DB Browser for SQLite Version %1. + «DB Browser for SQLite» Versión %1. + + + + Built for %1, running on %2 + Compilado para %1, ejecutándose en %2 + + + + Qt Version %1 + Versión de Qt %1 + + + + Invalid option/non-existant file: %1 + Opción inválida o archivo inexistente: %1 + + + + CipherDialog + + + SQLCipher encryption + Cifrado con SQLCipher + + + + &Password + &Clave + + + + &Reenter password + &Reintroducir clave + + + + Encr&yption settings + Ajustes de &cifrado + + + + SQLCipher &3 defaults + Predeterminados de SQLCipher &3 + + + + SQLCipher &4 defaults + Predeterminados de SQLCipher &4 + + + + Custo&m + &Personalizado + + + + Page si&ze + &Tamaño de página + + + + &KDF iterations + Iteraciones &KDF + + + + HMAC algorithm + Algoritmo HMAC + + + + KDF algorithm + Algoritmo KDF + + + + Plaintext Header Size + Tamaño de la cabecera del texto en claro + + + + Passphrase + Frase de contraseña + + + + Raw key + Clave en bruto + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + Por favor, elija una clave para cifrar la base de datos. +Tenga en cuenta que: +- Si modifica cualquiera de los otros ajustes opcionales necesitará + reintroducirlos también cada vez que abra la base de datos. +- Puede dejar los campos de clave en blanco para no usar cifrado. +- El proceso de cifrado puede llevar algún tiempo. +- ¡Debería hacer una copia de respaldo de la base de datos! +- Los cambios no guardados son aplicados antes de modificar el cifrado. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + Por favor, introduzca la clave a usar en el cifrado de la base de datos. +Si se modificaron cualquiera de los otros ajustes para este archivo de base de datos, también tendrá que proporcionar esta información. + + + + ColumnDisplayFormatDialog + + + Choose display format + Elija el formato de presentación + + + + Display format + Formato de presentación + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + Elija el formato para la columna «%1» el cual se aplicará a cada valor antes de mostrarlo. + + + + Default + Por defecto + + + + Decimal number + Número decimal + + + + Exponent notation + Notación exponencial + + + + Hex blob + Secuencia hexadecimal + + + + Hex number + Número hexadecimal + + + + Apple NSDate to date + Fecha de Apple NSDate a fecha + + + + Java epoch (milliseconds) to date + Tiempo Java (milisegundos) a fecha + + + + .NET DateTime.Ticks to date + DateTime.Ticks de .NET a fecha + + + + Julian day to date + Fecha juliana a fecha + + + + Unix epoch to local time + Tiempo Unix a hora local + + + + Date as dd/mm/yyyy + Fecha dd/mm/aaaa + + + + Lower case + Minúsculas + + + + Custom display format must contain a function call applied to %1 + El formato de presentación a medida tiene que contener una llamada de función aplicada a %1 + + + + Error in custom display format. Message from database engine: + +%1 + Error en el formato de presentación a medida. Mensaje del motor de la base de datos: + +%1 + + + + Custom display format must return only one column but it returned %1. + El formato de presentación a medida debe devolver sólo una columna pero ha devuelto %1. + + + + Octal number + Número octal + + + + Round number + Número redondeado + + + + Unix epoch to date + Tiempo Unix a fecha + + + + Upper case + Mayúsculas + + + + Windows DATE to date + Fecha Windows a fecha + + + + Custom + A medida + + + + CondFormatManager + + + Conditional Format Manager + Gestor de Formato Condicional + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + Este diálogo permite crear y editar formatos condicionales. Cada estilo de celda será seleccionado por la primera condición que se cumpla para los datos de esa celda. Los formatos condicionales se pueden mover arriba y abajo, teniendo precedencia aquellos en líneas superiores sobre los inferiores. La sintaxis es la misma que para los filtros y se aplica una condición vacía a todos los valores. + + + + Add new conditional format + Añadir un nuevo formato condicional + + + + &Add + &Añadir + + + + Remove selected conditional format + Elimina el formato condicional seleccionado + + + + &Remove + &Eliminar + + + + Move selected conditional format up + Mueve arriba el formato condicional seleccionado + + + + Move &up + Mueve a&rriba + + + + Move selected conditional format down + Mueve abajo el formato condicional seleccionado + + + + Move &down + Mueve a&bajo + + + + Foreground + Texto + + + + Text color + Color del texto + + + + Background + Fondo + + + + Background color + Color del fondo + + + + Font + Tipo de letra + + + + Size + Tamaño + + + + Bold + Negrita + + + + Italic + Cursiva + + + + Underline + Subrayado + + + + Alignment + Justificado + + + + Condition + Condición + + + + + Click to select color + Haga clic para seleccionar el color + + + + Are you sure you want to clear all the conditional formats of this field? + ¿Está seguro de que quiere borrar todos los formatos condicionales de este campo? + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + Por favor, especifique el nombre con el que acceder a la base de datos anexada + + + + Invalid file format + Formato de archivo inválido + + + + Do you want to save the changes made to the database file %1? + ¿Guardar los cambios hechos al archivo de base de datos «%1»? + + + + Exporting database to SQL file... + Exportando base de datos a un archivo SQL... + + + + + Cancel + Cancelar + + + + Executing SQL... + Ejecutando SQL... + + + + Action cancelled. + Acción cancelada. + + + + This database has already been attached. Its schema name is '%1'. + Esta base de datos ya ha sido anexada. Su nombre de esquema es «%1». + + + + Do you really want to close this temporary database? All data will be lost. + ¿Está seguro de que quiere cerrar esta base de datos temporal? Todos los datos se perderán. + + + + Database didn't close correctly, probably still busy + La base de datos no se ha cerrado correctamente, probablemente todavía está ocupada + + + + The database is currently busy: + La base de datos está actualmente ocupada: + + + + Do you want to abort that other operation? + ¿Desea abortar la otra operación? + + + + + No database file opened + No hay una base de datos abierta + + + + + Error in statement #%1: %2. +Aborting execution%3. + Error en la sentencia #%1: %2. +Abortando ejecución%3. + + + + + and rolling back + y deshaciendo cambios + + + + didn't receive any output from %1 + no se recibió ninguna salida de «%1» + + + + could not execute command: %1 + no se pudo ejecutar el comando: «%1» + + + + Cannot delete this object + No se puede borrar este objeto + + + + Cannot set data on this object + No se pueden poner datos en este objeto + + + + + A table with the name '%1' already exists in schema '%2'. + Una tabla con el nombre «%1» ya existe en el esquema «%2». + + + + No table with name '%1' exists in schema '%2'. + No existe una tabla con el nombre «%1» en el esquema «%2». + + + + + Cannot find column %1. + No se puede encontrar la columna %1. + + + + Creating savepoint failed. DB says: %1 + Creación del punto de guardado fallido. La base de datos dice: %1 + + + + Renaming the column failed. DB says: +%1 + Renombrado de la columna fallido. La base de datos dice: +%1 + + + + + Releasing savepoint failed. DB says: %1 + Liberación del punto de guardado fallido. La base de datos dice: %1 + + + + Creating new table failed. DB says: %1 + Creación de la nueva tabla fallida. La base de datos dice: %1 + + + + Copying data to new table failed. DB says: +%1 + Copia de datos a la nueva table fallida. La base de datos dice: +%1 + + + + Deleting old table failed. DB says: %1 + Borrado de tabla fallido. La base de datos dice: %1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + Error renombrando la tabla «%1» a «%2». +Mensaje de la base de datos: +%3 + + + + could not get list of db objects: %1 + No se pudo obtener la lista de objetos de la base de datos: %1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + La restitución de algunos de los objetos asociados con esta tabla ha fallado. Lo más probable es que esto suceda porque los nombres de algunas columnas han cambiado. Esta es la sentencia SQL que puede que quiera corregir y ejecutar manualmente: + + + + + + could not get list of databases: %1 + no se pudo obtener lista de bases de datos: %1 + + + + Error loading extension: %1 + Error cargando la extensión: %1 + + + + could not get column information + No se pudo obtener información de la columna + + + + Error setting pragma %1 to %2: %3 + Error definiendo pragma %1 como %2: %3 + + + + File not found. + Archivo no encontrado. + + + + DbStructureModel + + + Name + Nombre + + + + Object + Objeto + + + + Type + Tipo + + + + Schema + Esquema + + + + Database + Base de datos + + + + Browsables + Navegables + + + + All + Todos + + + + Temporary + Temporal + + + + Tables (%1) + Tablas (%1) + + + + Indices (%1) + Índices (%1) + + + + Views (%1) + Vistas (%1) + + + + Triggers (%1) + Disparadores (%1) + + + + EditDialog + + + Edit database cell + Editar celda de la base de datos + + + + Mode: + Modo: + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + Esta es la lista de modos admitidos en el editor de celdas. Elija un modo para visualizar o editar los datos de la celda actual. + + + + RTL Text + Texto RTL + + + + + Image + Imagen + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + Ajustar automáticamente el modo de edición al tipo de datos cargados + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + Esta casilla activa o desactiva el cambio automático del modo de edición. Cuando se selecciona una nueva celda o se importan nuevos datos y la selección automática está activada, el modo de edición se ajusta al tipo de datos detectados. El modo de edición para la celda se puede cambiar manualmente. Si prefiere mantener el modo de edición seleccionado manualmente mientras se mueve por las celdas, desmarque la casilla. + + + + Auto-switch + Auto-selección + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + Los modos de edición de texto permiten editar texto plano, y también JSON o XML con resaltado de sintaxis, formato automático y validación previa a guardar. + +Los errores se indican con un subrayado ondulado en rojo. + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + Este editor Qt se usa para scripts de derecha-a-izquierda, que no están soportados por el editor de Texto por defecto. Al detectar la presencia de caracteres de derecha-a-izquierda este modo de edición se activa automáticamente. + + + + Open preview dialog for printing the data currently stored in the cell + Abrir diálogo de previsualización para imprimir los datos actualmente almacenados en la celda + + + + Auto-format: pretty print on loading, compact on saving. + Auto-formato: dar formato al cargar, compactar al guardar. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + Si se habilita, la opción de auto-formato da formato a los datos al cargarlos, rompiendo y sangrando las líneas de texto para una legibilidad máxima. Al guardar los datos, esta opción los compacta, eliminando fines de línea y espacio en blanco innecesario. + + + + Word Wrap + Ajuste del Texto + + + + Wrap lines on word boundaries + Ajustar las líneas en palabras completas + + + + + Open in default application or browser + Abrir en la aplicacion por defecto o navegador + + + + Open in application + Abrir en una aplicacion + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + El valor es interpretado como un nombre de archivo o URL y abierto en la aplicación por defecto del sistema o el navegador de internet. + + + + Save file reference... + Guardar referencia de archivo... + + + + Save reference to file + Guardar referencia a archivo + + + + + Open in external application + Abrir en una aplicación externa + + + + Autoformat + Auto-formato + + + + &Export... + &Exportar... + + + + + &Import... + &Importar... + + + + + Import from file + Importar desde archivo + + + + + Opens a file dialog used to import any kind of data to this database cell. + Abre un diálogo para elegir el archivo para importar cualquier tipo de datos a esta celda. + + + + Export to file + Exportar a archivo + + + + Opens a file dialog used to export the contents of this database cell to a file. + Abre un diálogo para elegir el archivo al que exportar el contenido de esta celda de la base de datos. + + + + + Print... + Imprimir... + + + + Open preview dialog for printing displayed image + Abre un diálogo de previsualización para imprimir la imagen mostrada + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + Abre un diálogo de previsualización para imprimir el texto mostrado + + + + Copy Hex and ASCII + Copiar hex. y ASCII + + + + Copy selected hexadecimal and ASCII columns to the clipboard + Copia las columnas seleccionadas en hexadecimal y ASCII al portapapeles + + + + Ctrl+Shift+C + + + + + Set as &NULL + Borrar a &NULL + + + + Apply data to cell + Aplicar los datos a la celda + + + + This button saves the changes performed in the cell editor to the database cell. + Este botón guarda los cambios realizados en el editor a la celda de la base de datos. + + + + Apply + Aplicar + + + + Text + Texto + + + + Binary + Binario + + + + Erases the contents of the cell + Borra el contenido de la celda + + + + This area displays information about the data present in this database cell + Esta zona muestra información acerca de los datos presentes en esta celda de la base de datos + + + + Type of data currently in cell + Tipo de datos actualmente en la celda + + + + Size of data currently in table + Tamaño de los datos actualmente en la tabla + + + + Choose a filename to export data + Seleccione un nombre de archivo para exportar los datos + + + + + Image data can't be viewed in this mode. + Datos de imagen no se puede visualizar en este modo. + + + + + Try switching to Image or Binary mode. + Intente cambiando al modo «Imagen» o «Binario». + + + + + Binary data can't be viewed in this mode. + Datos binarios no se puede visualizar en este modo. + + + + + Try switching to Binary mode. + Intente cambiando al modo «Binario». + + + + + Image files (%1) + Archivos de imagen (%1) + + + + Binary files (*.bin) + Archivos binarios (*.bin) + + + + Choose a file to import + Seleccione el archivo a importar + + + + %1 Image + %1 Imagen + + + + Invalid data for this mode + Datos inválidos para este modo + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + La celda contiene datos de tipo %1 inválidos. Razón: «%2». ¿Realmente desea aplicarlos a la celda? + + + + Type of data currently in cell: %1 Image + El tipo de datos en la celda es: Imagen %1 + + + + %1x%2 pixel(s) + %1×%2 píxel(s) + + + + Type of data currently in cell: NULL + El tipo de datos en la celda es: NULL + + + + Type of data currently in cell: Valid JSON + Tipo de datos actualmente en la celda: JSON válido + + + + Couldn't save file: %1. + No se pudo guardar el archivo: %1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + Los datos se han guardado en un archivo temporal y se ha abierto con la aplicación por defecto. Ahora puede editar ese archivo y cuado termine puede aplicar los nuevos datos guardados a la celda o cancelar los cambios. + + + + + Type of data currently in cell: Text / Numeric + Tipo de datos actualmente en la celda: Texto / Numérico + + + + + + %n character(s) + + %n carácter + %n caracteres + + + + + Type of data currently in cell: Binary + Tipo de datos actualmente en la celda: Binario + + + + + %n byte(s) + + %n byte + %n bytes + + + + + EditIndexDialog + + + &Name + &Nombre + + + + Order + Orden + + + + &Table + &Tabla + + + + Edit Index Schema + Editar índice del esquema + + + + &Unique + &Único + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + Para restringir el índice exclusivamente a una parte de la tabla hay que especificar aquí una cláusula WHERE que seleccione la parte de la tabla que será indexada + + + + Partial inde&x clause + Cláusula para inde&xado parcial + + + + Colu&mns + Colu&mnas + + + + Table column + Columna de la tabla + + + + Type + Tipo + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + Añade una nueva columna computada al índice. Las columnas computadas contienen una expresión SQL en lugar de nombres de columna. + + + + Index column + Columna de índice + + + + Deleting the old index failed: +%1 + Borrado del índice previo fallido: +%1 + + + + Creating the index failed: +%1 + Creación de índice fallida: +%1 + + + + EditTableDialog + + + Edit table definition + Editar la definición de la tabla + + + + Table + Tabla + + + + Advanced + Avanzado + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + Hacer de esta una tabla «SIN rowid». Para activar este flag es necesario un campo de tipo ENTERO con la clave primaria activada y el indicador de autoincremento desactivado. + + + + Without Rowid + Sin Rowid + + + + Fields + Campos + + + + Database sche&ma + Esque&ma de la base de datos + + + + Add + Añadir + + + + Remove + Eliminar + + + + Move to top + Mover al principio + + + + Move up + Mover hacia arriba + + + + Move down + Mover hacia abajo + + + + Move to bottom + Mover al final + + + + + Name + Nombre + + + + + Type + Tipo + + + + NN + NN + + + + Not null + No nulo + + + + PK + PK + + + + Primary key + Clave primaria + + + + AI + AI + + + + Autoincrement + Autoincremento + + + + U + U + + + + + + Unique + Único + + + + Default + Por defecto + + + + Default value + Valor por defecto + + + + + + Check + Check + + + + Check constraint + Restricción de «check» + + + + Collation + Comparación + + + + + + Foreign Key + Clave foránea + + + + Constraints + Restricciones + + + + Add constraint + Añadir restricción + + + + Remove constraint + Eliminar restricción + + + + Columns + Columnas + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Aviso: </span>algo ocurre con la definición de esta tabla que nuestro intérprete no entiende completamente. Modificar y guardar esta tabla podría traer problemas.</p></body></html> + + + + + Primary Key + Clave Primaria + + + + Add a primary key constraint + Añadir una restricción de clave primaria + + + + Add a foreign key constraint + Añadir una restricción de clave foránea + + + + Add a unique constraint + Añadir una restricción de único" + + + + Add a check constraint + Añadir una restricción de «check» + + + + Error creating table. Message from database engine: +%1 + Error creando la tabla. Mensaje de la base de datos: +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Ya hay un campo con este nombre. Por favor, renómbrelo antes o elija un nombre diferente para este campo. + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + Sólo puede existir una clave primaria en cada tabla. Por favor, modifique la clave primaria existente. + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + Esta columna está referenciada en una clave foránea en la tabla %1 y por tanto no se le puede cambiar el nombre. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + Hay al menos una línea con este campo NULO. Esto hace imposible activar este flag. Por favor, modifique antes los datos de la tabla. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + Hay al menos una línea con un valor no entero en este campo. Esto hace imposible activar el flag AI. Por favor, modifique antes los datos de la tabla. + + + + Column '%1' has duplicate data. + + La columna «%1» tiene datos duplicados. + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + Como en otros textos, pasamos los términos estándar de SQL a mayúsculas para evitar traducirlos, lo que podría ser más confuso para el usuario experto y no tener beneficio para el inexperto. + Esto imposibilita la habilitación de la restricción UNIQUE. Por favor, elimine primero los datos duplicados, lo cual permitirá habilitar la restricción UNIQUE. + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + ¿Está seguro de que quiere borrar este campo «%1»? +Todos los datos actualmente almacenados en este campo se perderán. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + Por favor añada un campo que cumpla las siguientes condiciones antes de activar el indicador «sin rowid»: + - Indicador de clave primaria activado + - Indicador de autoincremento desactivado + + + + ExportDataDialog + + + Export data as CSV + Exportar datos como CSV + + + + Tab&le(s) + Tab&la(s) + + + + Colu&mn names in first line + Nombres de las &columnas en la primera línea + + + + Fie&ld separator + &Separador de campos + + + + , + , + + + + ; + ; + + + + Tab + Tab + + + + | + | + + + + + + Other + Otro + + + + &Quote character + &Entrecomillado + + + + " + " + + + + ' + ' + + + + New line characters + Caracteres de nueva línea + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + Impresión formateada + + + + + Could not open output file: %1 + No se puede abrir el archivo de salida: %1 + + + + + Choose a filename to export data + Seleccione un nombre de archivo para exportar los datos + + + + Export data as JSON + Exportar datos como JSON + + + + exporting CSV + exportando CSV + + + + exporting JSON + exportando JSON + + + + Please select at least 1 table. + Por favor, seleccione al menos 1 tabla. + + + + Choose a directory + Seleccione una carpeta + + + + Export completed. + Exportación completada. + + + + ExportSqlDialog + + + Export SQL... + Exportar SQL... + + + + Tab&le(s) + Tab&la(s) + + + + Select All + Seleccionar Todo + + + + Deselect All + Deseleccionar Todo + + + + &Options + &Opciones + + + + Keep column names in INSERT INTO + Mantener el nombre de la columna en INSERT INTO + + + + Multiple rows (VALUES) per INSERT statement + Múltiples líneas (VALUES) en cada sentencia INSERT + + + + Export everything + Exportar todo + + + + Export data only + Exportar solo los datos + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + Mantener esquema previo (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Sobrescribir esquema previo (DROP TABLE, después CREATE TABLE) + + + + Export schema only + Exportar solo el esquema + + + + Please select at least one table. + Por favor, seleccione al menos una tabla. + + + + Choose a filename to export + Seleccione un nombre de archivo al que exportar + + + + Export completed. + Exportación completada. + + + + Export cancelled or failed. + Exportación cancelada o fallida. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + Buscar... + + + + Find and Replace... + Buscar y reemplazar... + + + + Print... + Imprimir... + + + + ExtendedTableWidget + + + Use as Exact Filter + Usar como filtro exacto + + + + Containing + Conteniendo + + + + Not containing + Que no contenga + + + + Not equal to + No igual a + + + + Greater than + Mayor que + + + + Less than + Menor que + + + + Greater or equal + Mayor o igual + + + + Less or equal + Menor o igual + + + + Between this and... + Entre esto y... + + + + Regular expression + Expresión regular + + + + Edit Conditional Formats... + Editar formatos condicionales... + + + + Set to NULL + Poner a NULL + + + + Copy + Copiar + + + + Copy with Headers + Copiar con cabeceras + + + + Copy as SQL + Copiar como SQL + + + + Paste + Pegar + + + + Print... + Imprimir... + + + + Use in Filter Expression + Usar en expresión de filtro + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>No se han cargado todos los datos. <b>¿Quiere cargar todos los datos antes de seleccionar todas las filas?</b><p><p>Responder <b>No</b> significa que no se cargarán mas datos y la selección no se se realizará.<br/>Responder <b>Sí</b> puede tardar un tiempo mientras los datos se cargan pero la selección se realizará en su totalidad.</p>Precaución: Cargar todos los datos puede necesitar una gran cantidad de memoria para tablas grandes. + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + No se puede ajustar la selección a NULL. La columna %1 tiene una restricción NOT NULL. + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + El contenido del portapapeles es mayor que el rango seleccionado. +¿Quiere insertarlo de todos modos? + + + + FileExtensionManager + + + File Extension Manager + Gestor de extensiones de archivos + + + + &Up + &Subir + + + + &Down + &Bajar + + + + &Add + &Añadir + + + + &Remove + &Eliminar + + + + + Description + Descripción + + + + Extensions + Extensiones + + + + *.extension + *.extensión + + + + FilterLineEdit + + + Filter + Filtro + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + Estos campos de texto permiten realizar filtros rápidos sobre la tabla actualmente seleccionada. +Por defecto, las filas que contengan el texto introducido se muestran. +Los siguientes operadores también se admiten: +% Comodín +> Mayor que +< Menor que +>= Igual o mayor que +<= Igual o menor que += Igual a: correspondencia exacta +<> Distinto: correspondencia inversa exacta +x~y Rango: valores entre x e y + + + + Clear All Conditional Formats + Eliminar todos los formatos condicionales + + + + Use for Conditional Format + Usar para formato condicional + + + + Edit Conditional Formats... + Editar formatos condicionales... + + + + Set Filter Expression + Establecer expresión de filtro + + + + What's This? + ¿Qué es esto? + + + + Is NULL + Es nulo + + + + Is not NULL + No es nulo + + + + Is empty + Es vacío + + + + Is not empty + No es vacío + + + + Not containing... + No contiene... + + + + Equal to... + Igual a... + + + + Not equal to... + No igual a... + + + + Greater than... + Mayor que... + + + + Less than... + Menor que... + + + + Greater or equal... + Mayor o igual... + + + + Less or equal... + Menor o igual... + + + + In range... + En el rango... + + + + Regular expression... + Expresión regular... + + + + FindReplaceDialog + + + Find and Replace + Buscar y reemplazar + + + + Fi&nd text: + &Buscar texto: + + + + Re&place with: + &Reemplazar con: + + + + Match &exact case + Distinguir &mayús. y minús. + + + + Match &only whole words + &Solo palabras completas + + + + When enabled, the search continues from the other end when it reaches one end of the page + Si se habilita, la búsqueda continua desde el otro extremo cuando llega a un extremo de la página + + + + &Wrap around + &Dar la vuelta + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + Si se marca, la búsqueda va hacia atrás desde la posición del cursor. De lo contrario va hacia adelante + + + + Search &backwards + Buscar hacia &atrás + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>Si se marca, el patrón de búsqueda se limita a buscar sólo en la selección.</p></body></html> + + + + &Selection only + En la &selección + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Si se marca, el patrón de búsqueda se interpreta como una expresión regular UNIX. Véase <a href="https://es.wikipedia.org/wiki/Expresi%C3%B3n_regular">«Expresión regular» en Wikipedia</a>.</p></body></html> + + + + Use regular e&xpressions + Usar e&xpresiones regulares + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + Encontrar la siguiente ocurrencia desde la posición del cursor y en la dirección definida por «Buscar hacia atrás» + + + + &Find Next + Buscar &siguiente + + + + F3 + + + + + &Replace + R&eemplazar + + + + Highlight all the occurrences of the text in the page + Resaltar todas las ocurrencias del texto en la página + + + + F&ind All + Encontrar &todo + + + + Replace all the occurrences of the text in the page + Reemplazar todas las ocurrencias del texto en la página + + + + Replace &All + Reem&plazar todo + + + + The searched text was not found + El texto buscado no fue encontrado + + + + The searched text was not found. + El texto buscado no fue encontrado. + + + + The searched text was found one time. + El texto buscado fue encontrado una vez. + + + + The searched text was found %1 times. + El texto buscado fue encontrado %1 veces. + + + + The searched text was replaced one time. + El texto buscado fue reemplazado una vez. + + + + The searched text was replaced %1 times. + El texto buscado fue reemplazado %1 veces. + + + + ForeignKeyEditor + + + &Reset + &Reiniciar + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + Cláusulas de clave foránea (ON UPDATE, ON DELETE etc.) + + + + ImportCsvDialog + + + Import CSV file + Importar archivo CSV + + + + Table na&me + &Nombre de la tabla + + + + &Column names in first line + Nombres de &columna en la primera línea + + + + Field &separator + &Separador de campos + + + + , + , + + + + ; + ; + + + + + Tab + Tab + + + + | + | + + + + Other + Otro + + + + &Quote character + &Entrecomillado + + + + + Other (printable) + Otro (imprimible) + + + + + Other (code) + Otro (código) + + + + " + " + + + + ' + ' + + + + &Encoding + &Codificación + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + ¿Recortar campos? + + + + Separate tables + Tablas separadas + + + + Advanced + Avanzado + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + Cuando se importe un valor vacío desde el archivo CSV a una tabla existente con un valor por defecto para la columna, ese valor por defecto es insertado. Active esta opción si, por el contrario, desea insertar un valor vacío para esta columna. + + + + Ignore default &values + Ignorar &valores por defecto + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + Active esta opción para para la importación cuando se intente importar un valor vacío a una columna NOT NULL sin un valor por defecto. + + + + Fail on missing values + Fallar cuando falten valores + + + + Disable data type detection + Deshabilitar detección de tipo + + + + Disable the automatic data type detection when creating a new table. + Deshabilitar la detección automática de tipo cuando se esté creando una nueva tabla. + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + Cuando se importa a una tabla existente con una clave primaria, restricciones de único o un índice de único, existe la posibilidad de que se genere un conflicto. Esta opción le permite elegir la estrategia en esos casos: Por defecto la importación se aborta y se deshacen los cambios pero también puede elegir ignorar y no importar las filas conflictivas o reemplazar las filas existentes en la tabla. + + + + Abort import + Abortar importación + + + + Ignore row + Ignorar fila + + + + Replace existing row + Reemplazar la fila existente + + + + Conflict strategy + Estrategia para conflictos + + + + + Deselect All + Deseleccionar Todo + + + + Match Similar + Emparejar Similares + + + + Select All + Seleccionar Todo + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + Ya existe una tabla con nombre «%1» y una importación a una tabla existente solo es posible si el número de columnas coincide. + + + + There is already a table named '%1'. Do you want to import the data into it? + Ya existe una tabla con nombre «%1». ¿Desea importar los datos cargándolos en ella? + + + + Creating restore point failed: %1 + Creación del punto de restauración fallido: %1 + + + + Creating the table failed: %1 + Creación de la tabla fallido: %1 + + + + importing CSV + importando CSV + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + Importar el archivo «%1» tardó %2ms. De ellos, %3ms se gastaron en la función fila. + + + + Inserting row failed: %1 + Inserción de línea fallido: %1 + + + + MainWindow + + + DB Browser for SQLite + DB Browser for SQLite + + + + toolBar1 + toolBar1 + + + + This button clears the contents of the SQL logs + Este botón limpia el contenido del historial SQL + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + Este panel le permite examinar el histórico de todos los comandos SQL ordenados por la aplicación o por usted mismo + + + + + Project Toolbar + Barra de herramientas de proyectos + + + + Extra DB toolbar + Barra de herramientas extra + + + + + + Close the current database file + Cierra el archivo de base de datos actual + + + + This button closes the connection to the currently open database file + Este botón cierra la conexión con el archivo de base de datos actualmente abierto + + + + Ctrl+F4 + + + + + Compact &Database... + Compactar base de &datos... + + + + &About + &Acerca de + + + + This button opens a new tab for the SQL editor + Este botón abre una nueva pestaña para el editor SQL + + + + Execute all/selected SQL + Ejecuta todo el SQL (o la selección) + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + Este botón ejecuta las sentencias SQL actualmente seleccionadas. Si no hay ningún texto seleccionado, se ejecutan todas las sentencias. + + + + &Load Extension... + &Cargar extensión... + + + + Execute line + Ejecutar línea + + + + This button executes the SQL statement present in the current editor line + Este botón ejecuta la sentencia SQL presente en la línea actual del editor + + + + &Wiki + &Wiki + + + + F1 + + + + + Bug &Report... + &Informar de fallos... + + + + Feature Re&quest... + Solicitud de &mejoras... + + + + Web&site + &Sitio web + + + + &Donate on Patreon... + &Donar en Patreon... + + + + Open &Project... + Abrir &proyecto... + + + + &Attach Database... + Ane&xar base de datos... + + + + + Add another database file to the current database connection + Añade un archivo de base de datos adicional a la conexión actual + + + + This button lets you add another database file to the current database connection + Este botón le permite añadir otro archivo de base de datos a la conexión de base de datos actual + + + + &Set Encryption... + &Establecer cifrado... + + + + This button saves the content of the current SQL editor tab to a file + Este botón guarda el contenido de la pestaña actual del editor SQL a un archivo + + + + SQLCipher &FAQ + SQLCipher &FAQ + + + + Find + Buscar + + + + Find or replace + Buscar o reemplazar + + + + Ctrl+H + + + + + Open SQL file(s) + Abrir archivo(s) SQL + + + + This button opens files containing SQL statements and loads them in new editor tabs + Este botón abre archivos que contengan sentencias SQL y los carga en pestañas nuevas del editor + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + Este botón le permite guardar todos los ajustes asociados a la base de datos abierta a un archivo de proyecto de «DB Browser for SQLite» + + + + This button lets you open a DB Browser for SQLite project file + Este botón le permite abrir un archivo de proyecto «DB Browser for SQLite» + + + + New In-&Memory Database + Nueva base de datos en &memoria + + + + Drag && Drop Qualified Names + Arrastrar y soltar nombres calificados + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + Usa nombres calificados (p.ej. "Tabla"."Campo") al arrastrar los objetos y soltarlos en el editor + + + + Drag && Drop Enquoted Names + Arrastrar y soltar nombres entrecomillados + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + Usa identificadores escapados (p.ej. "Tabla1") al arrastrar los objetos y soltarlos en el editor + + + + &Integrity Check + Comprobar &integridad + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + Ejecuta el pragma integrity_check en la base de datos abierta y devuelve los resultados en la pestaña Ejecutar SQL. Este pragma realiza una comprobación de integridad de toda la base de datos. + + + + &Foreign-Key Check + Comprobar clave &foránea + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + Ejecuta el pragma foreign_key_check con la base de datos abierta y devuelve los resultados en la pestaña Ejecutar SQL. + + + + &Quick Integrity Check + Comprobar integridad &rápido + + + + Run a quick integrity check over the open DB + Ejecuta una comprobación de integridad rápida en la base de datos abierta + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + Ejecuta el pragma quick_check en la base de datos abierta y devuelve los resultados en la pestaña Executar SQL. Este comando hace la mayoría de comprobaciones de PRAGMA integrity_check pero se ejecuta mucho más rápido. + + + + &Optimize + &Optimizar + + + + Attempt to optimize the database + Intenta optimizar la base de datos + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + Ejecuta el pragma optimize en la base de datos abierta. Este pragma realiza optimizaciones que pueden mejorar el rendimiento de consultas futuras. + + + + + Print + Imprimir + + + + Print text from current SQL editor tab + Imprime el texto de la pestaña actual del editor SQL + + + + Open a dialog for printing the text in the current SQL editor tab + Abre un diálogo para imprimir el texto de la pestaña actual del editor SQL + + + + Print the structure of the opened database + Imprime la estructura de la base de datos abierta + + + + Open a dialog for printing the structure of the opened database + Abre un diálogo para imprimir la estructura de la base de datos abierta + + + + Un/comment block of SQL code + Des/comentar bloque de código SQL + + + + Un/comment block + Des/comentar bloque de código + + + + Comment or uncomment current line or selected block of code + Comenta o descomenta la línea actual o el bloque de código seleccionado + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + Comenta o descomenta las líneas seleccionadas o la línea actual cuando no hay selección. El estado de todo el bloque es intercambiado en función de la primera línea. + + + + Ctrl+/ + + + + + Stop SQL execution + Detener ejecución de SQL + + + + Stop execution + Detener ejecución + + + + Stop the currently running SQL script + Detener el script SQL que está ejecutándose + + + + &Save Project As... + &Guardar proyecto como... + + + + + + Save the project in a file selected in a dialog + Guarda el proyecto en un archivo seleccionado en una ventana de diálogo + + + + Save A&ll + Guardar &todo + + + + + + Save DB file, project file and opened SQL files + Guarda los archivos de la base de datos, el proyecto y los archivos SQL abiertos + + + + Ctrl+Shift+S + + + + + Browse Table + Navegar Tabla + + + + Shows or hides the Project toolbar. + Muestra u oculta la barra de herramientas de proyecto. + + + + Extra DB Toolbar + Barra de herramientas extra + + + + Export one or more table(s) to a JSON file + Exportar una o más tablas a un archivo JSON + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + Esta es la estructura de la base de datos abierta. +Puede arrastrar sentencias SQL desde una fila de objeto y soltarlas en otras aplicaciones o en otra instancia de «DB Browser for SQLite». + + + + + Table(&s) to JSON... + Tabla(&s) a JSON... + + + + Open Data&base Read Only... + Abrir &base de datos como solo lectura... + + + + Ctrl+Shift+O + + + + + Save results + Guardar resultados + + + + Save the results view + Guarda la vista de resultados + + + + This button lets you save the results of the last executed query + Este botón le permite guardar los resultados de la última consulta ejecutada + + + + + Find text in SQL editor + Buscar texto en el editor SQL + + + + This button opens the search bar of the editor + Este botón abre la barra de búsqueda del editor + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + Buscar o reemplazar texto en el editor SQL + + + + This button opens the find/replace dialog for the current editor tab + Este botón abre el diálogo de buscar/reemplazar para la pestaña actual del editor + + + + Export to &CSV + Exportar a &CSV + + + + Save as &view + Guardar como &vista + + + + Save as view + Guardar como vista + + + + Open an existing database file in read only mode + Abre una base de datos existente en modo de solo lectura + + + + &File + &Archivo + + + + &Import + &Importar + + + + &Export + E&xportar + + + + &Edit + &Editar + + + + &View + &Ver + + + + &Help + Ay&uda + + + + &Tools + &Herramientas + + + + DB Toolbar + DB Toolbar + + + + Edit Database &Cell + Editar &celda + + + + Error Log + Registro de errores + + + + DB Sche&ma + Esque&ma + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + Esta es la estructura de la base de datos abierta. +Puede arrastrar múltiples objetos de la columna Nombre, soltarlos en el editor SQL y ajustar sus propiedades usando el menú contextual. Esto le ayudará a componer sentencias SQL. +Puede arrastrar sentencias SQL desde la columna Esquema y soltarlas en el editor SQL o en otras aplicaciones. + + + + + &Remote + &Remoto + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + Ejecutar SQL + + + + + Execute current line + Ejecuta la línea actual + + + + Shift+F5 + + + + + Sa&ve Project + &Guardar proyecto + + + + User + Usuario + + + + Application + Aplicación + + + + &Clear + &Limpiar + + + + &New Database... + &Nueva base de datos... + + + + + Create a new database file + Crea un nuevo archivo de base de datos + + + + This option is used to create a new database file. + Esta opción se usa para crear un nuevo archivo de base de datos. + + + + Ctrl+N + + + + + + &Open Database... + &Abrir base de datos... + + + + + + + + Open an existing database file + Abre un archivo de base de datos + + + + + + This option is used to open an existing database file. + Esta opción se usa para abrir un archivo de base de datos. + + + + Ctrl+O + + + + + &Close Database + &Cerrar base de datos + + + + + Ctrl+W + + + + + Opens the SQLCipher FAQ in a browser window + Abre la FAQ de SQLCipher en una ventana del navegador + + + + + Revert database to last saved state + Deshace los cambios al último estado guardado + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + Esta opción se usa para deshacer los cambios en la base de datos actual al último estado guardado. Todos los cambios hechos desde la última vez que se guardó se perderán. + + + + + Write changes to the database file + Escribe los cambios al archivo de la base de datos + + + + This option is used to save changes to the database file. + Esta opción se usa para guardar los cambios en el archivo de la base de datos. + + + + Ctrl+S + + + + + Compact the database file, removing space wasted by deleted records + Compacta el archivo de la base de datos eliminando el espacio malgastado por los registros borrados + + + + + Compact the database file, removing space wasted by deleted records. + Compacta el archivo de la base de datos, eliminando el espacio malgastado por los registros borrados. + + + + E&xit + &Salir + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + Importa datos de un archivo de texto con un volcado .sql en una base de datos nueva o existente. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + Esta opción se usa para importar datos de un archivo de texto con un volcado .sql en una base de datos nueva o existente. Los archivos de volcado SQL se pueden crear en la mayoría de los motores de base de datos, incluyendo MySQL y PostgreSQL. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Abre un asistente que le permite importar datos desde un archivo de texto con valores separado por comas a una tabla de una base de datos. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + Abre un asistente que le permite importar datos desde un archivo de texto con valores separado por comas a una tabla de una base de datos. Los archivos CSV se pueden crear en la mayoría de las aplicaciones de bases de datos y hojas de cálculo. + + + + Export a database to a .sql dump text file. + Exporta la base de datos como un volcado .sql a un archivo de texto. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + Esta opción le permite exportar la base de datos como un volcado .sql a un archivo de texto. Los archivos de volcado SQL contienen todos los datos necesarios para recrear la base de datos en la mayoría de los motores de base de datos, incluyendo MySQL y PostgreSQL. + + + + Export a database table as a comma separated text file. + Exporta la base de datos como un archivo de texto con valores separados por comas. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + Exporta la base de datos como un archivo de texto con valores separados por comas, listo para ser importado en otra base de datos o aplicaciones de hoja de cálculo. + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + Abre el asistente para Crear una Tabla, donde se puede definir el nombre y los campos de una nueva tabla en la base de datos + + + + + Delete Table + Borrar tabla + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + Abre el asistente para «Borrar tabla», donde se puede seleccionar una tabla de la base de datos para borrar. + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + Abre el asistente «Modificar tabla», donde se puede renombrar una tabla existente de la base de datos. También se pueden añadir o borrar campos de la tabla, así como modificar los nombres de los campos y sus tipos. + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + Abre el asistente «Crear índice», donde se puede definir un nuevo índice de una tabla existente de la base de datos. + + + + &Preferences... + &Preferencias... + + + + + Open the preferences window. + Abrir la ventana de preferencias. + + + + &DB Toolbar + &Barra de herramientas + + + + Shows or hides the Database toolbar. + Muestra u oculta la barra de herramientas de la base de datos. + + + + Shift+F1 + + + + + &Recently opened + Archivos &recientes + + + + Open &tab + Abrir &pestaña + + + + Ctrl+T + + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Estructura + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Hoja de datos + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Editar pragmas + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + Aviso: este pragma no es legible y este valor se ha supuesto. Escribir el pragma puede sobreescribir un LIKE redefinido que proporcione una extensión de SQLite. + + + + SQL &Log + Historial de &SQL + + + + Show S&QL submitted by + Mostrar S&QL ejecutado por + + + + &Plot + &Gráfica + + + + &Revert Changes + &Deshacer cambios + + + + &Write Changes + &Guardar cambios + + + + &Database from SQL file... + Base de datos de &archivo SQL... + + + + &Table from CSV file... + &Tabla de archivo CSV... + + + + &Database to SQL file... + &Base de datos a archivo SQL... + + + + &Table(s) as CSV file... + &Tabla(s) a archivo CSV... + + + + &Create Table... + &Crear tabla... + + + + &Delete Table... + &Borrar tabla... + + + + &Modify Table... + &Modificar tabla... + + + + Create &Index... + Crear &índice... + + + + W&hat's This? + ¿&Qué es esto? + + + + &Execute SQL + &Ejecutar SQL + + + + + + Save SQL file + Guardar archivo SQL + + + + Ctrl+E + + + + + Export as CSV file + Exportar como archivo CSV + + + + Export table as comma separated values file + Exportar tabla como archivo de valores separados por comas + + + + + Save the current session to a file + Guarda la sesión actual en un archivo + + + + + Load a working session from a file + Carga una sesión de trabajo de un archivo + + + + + Save SQL file as + Guardar archivo SQL como + + + + &Browse Table + &Mostrar datos + + + + Copy Create statement + Copiar sentencia CREATE + + + + Copy the CREATE statement of the item to the clipboard + Copia la sentencia CREATE del ítem al portapapeles + + + + Ctrl+Return + + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Encrypted + Cifrado + + + + Read only + Solo lectura + + + + Database file is read only. Editing the database is disabled. + El archivo de la base de datos es de solo lectura. La edición de la base de datos está desactivada. + + + + Database encoding + Codificación de la base de datos + + + + Database is encrypted using SQLCipher + La base de datos está cifrada usando SQLCipher + + + + + Choose a database file + Seleccione un archivo de base de datos + + + + + + Choose a filename to save under + Seleccione un nombre de archivo en el que guardar + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + Error mientras se guardaba el archivo de la base de datos. Esto significa que no todos lo cambios hechos a la base de datos se han guardado. Antes tiene que solucionar el siguiente error. +%1 + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + ¿Está seguro de que quiere deshacer todos los cambios hechos al archivo de la base de datos «%1» desde la última vez que se guardó? + + + + Choose a file to import + Seleccione el archivo a importar + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (sólo lectura) + + + + Open Database or Project + Abrir base de datos o proyecto + + + + Attach Database... + Ane&xar base de datos... + + + + Import CSV file(s)... + Importar archivo(s) CSV... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + Seleccione la acción a aplicar al archivo. + Seleccione la acción a aplicar a los archivos <br/>Nota: sólo 'Importar' procesará más de un archivo. + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + ¿Quiere guardar los cambios hechos a las pestañas SQL en el archivo de proyecto «%1»? + + + + Text files(*.sql *.txt);;All files(*) + Archivos de texto(*.sql *.txt);;Todos los archivos(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + ¿Quiere crear un nuevo archivo de base de datos donde poner los datos importados? +Si responde no se intentarán importar los datos del archivo SQL en la base de datos actual. + + + + Do you want to save the changes made to the project file '%1'? + ¿Quiere guardar los cambios hechos al archivo de proyecto «%1»? + + + + Edit View %1 + Editar vista %1 + + + + Edit Trigger %1 + Editar disparador %1 + + + + Result: %1 + Resultado: %1 + + + + File %1 already exists. Please choose a different name. + El archivo %1 ya existe. Por favor elija un nombre diferente. + + + + Error importing data: %1 + Error importando datos: %1 + + + + Import completed. + Importación completada. + + + + Delete View + Borrar vista + + + + Modify View + Modificar vista + + + + Delete Trigger + Borrar disparador + + + + Modify Trigger + Modificar disparador + + + + Delete Index + Borrar índice + + + + Modify Index + Modificar índice + + + + Modify Table + Modificar tabla + + + + Opened '%1' in read-only mode from recent file list + Se ha abierto «%1» en modo de sólo lectura desde la lista de archivos recientes + + + + Opened '%1' from recent file list + Se ha abierto «%1» desde la lista de archivos recientes + + + + This action will open a new SQL tab with the following statements for you to edit and run: + Esta acción abrirá una nueva pestaña SQL con las siguientes sentencias para que usted las pueda modificar y ejecutar: + + + + Rename Tab + Renombrar Pestaña + + + + Duplicate Tab + Duplicar Pestaña + + + + Close Tab + Cerrar Pestaña + + + + Opening '%1'... + Abriendo «%1»... + + + + There was an error opening '%1'... + Hubo un error abriendo «%1»... + + + + Value is not a valid URL or filename: %1 + Valor no es un nombre de archivo o URL válido: %1 + + + + Do you want to save the changes made to SQL tabs in a new project file? + ¿Quiere guardar los cambios hechos a las pestañas SQL en un nuevo archivo de proyecto? + + + + Do you want to save the changes made to the SQL file %1? + ¿Quiere guardar los cambios hechos al archivo SQL %1? + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + Las sentencias en esta pestaña todavía se están ejecutando. Al cerrar la pestaña detendrá la ejecución. Esto puede dejar la base de datos en un estado inconsistente. ¿Está seguro de que quiere cerrar la pestaña? + + + + Could not find resource file: %1 + No se pudo encontrar el archivo de recursos: %1 + + + + Choose a project file to open + Seleccione un archivo de proyecto para abrir + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + Este archivo de proyecto está usando un formato antiguo porque fue creado usando una versión 3.10 o inferior de «DB Browser for SQLite». La carga de este archivo aún está completamente soportada pero le recomendamos convertir todos sus archivos de proyecto al nuevo formato porque el soporte de formatos antiguos podría ser descartado en algún momento futuro. Puede convertir sus archivos simplemente abriéndolos y guardándolos de nuevo. + + + + Could not open project file for writing. +Reason: %1 + No se pudo abrir el archivo de proyecto para escritura. +Motivo: %1 + + + + Collation needed! Proceed? + ¡Es necesaria una función de comparación! ¿Proceder? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + Una tabla en esta base de datos necesita una función de comparación especial «%1» que esta aplicación no puede proporcionar sin más información. +Si decide continuar, está avisado de que la base de datos se puede dañar. +¡Cree una copia de respaldo! + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + Al definir los valores de PRAGMA se consolidará la transacción actual. +¿Está seguro? + + + + Window Layout + Disposición de la ventana + + + + Reset Window Layout + Reiniciar disposición + + + + Alt+0 + + + + + Simplify Window Layout + Simplificar disposición + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + Acoplar ventanas en la parte inferior + + + + Dock Windows at Left Side + Acoplar ventanas en la parte izquierda + + + + Dock Windows at Top + Acoplar ventanas en la parte superior + + + + The database is currenctly busy. + La base de datos está ocupada + + + + Click here to interrupt the currently running query. + Haga clic aquí para interrumpir la consulta que se está ejecutando + + + + Could not open database file. +Reason: %1 + No se pudo abrir el archivo de base de datos. +Razón: %1 + + + + In-Memory database + Base de datos en memoria + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + Todavía se están ejecutando sentencias SQL. Al cerrar la base de datos se detendrá la ejecución. Esto puede dejar la base de datos en un estado inconsistente. ¿Está seguro de que quiere cerrar la base de datos? + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + ¿Está seguro de que quiere borrar la tabla «%1»? +Se perderán todos los datos asociados con la tabla. + + + + Are you sure you want to delete the view '%1'? + ¿Está seguro de que quiere borrar la vista «%1»? + + + + Are you sure you want to delete the trigger '%1'? + ¿Está seguro de que quiere borrar el disparador «%1»? + + + + Are you sure you want to delete the index '%1'? + ¿Está seguro de que quiere borrar el índice «%1»? + + + + Error: could not delete the table. + Error: no se pudo borrar la tabla. + + + + Error: could not delete the view. + Error: no se pudo borrar la vista. + + + + Error: could not delete the trigger. + Error: no se pudo borrar el disparador. + + + + Error: could not delete the index. + Error: no se pudo borrar el índice. + + + + Message from database engine: +%1 + Mensaje de la base de datos: +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + Para editar la tabla es necesario guardar antes todos los cambios pendientes. +¿Está seguro de que quiere guardar la base de datos? + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + Ya se están ejecutando sentencias SQL. ¿Quiere detenerlas para en su lugar ejecutar las sentencias actuales?. Esto puede dejar la base de datos en un estado inconsistente. + + + + -- EXECUTING SELECTION IN '%1' +-- + -- EJECUTANDO SELECCIÓN DE «%1» +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- EJECUTANDO LÍNEA DE «%1» +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- EJECUTANDO TODO «%1» +-- + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + Establecer valores PRAGMA o realizar una limpieza consolidará la transacción actual. +¿Está seguro? + + + + Busy (%1) + Ocupado (%1) + + + + %1 rows returned in %2ms + %1 filas devueltas en %2ms + + + + Choose text files + Elija archivos de texto + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + Importación completada. Algunas restricciones de las claves foráneas se han infringido. Por favor arréglelas antes de guardar. + + + + Select SQL file to open + Seleccione el archivo SQL a abrir + + + + Select file name + Seleccione el nombre del archivo + + + + Select extension file + Seleccione el archivo de extensión + + + + Extension successfully loaded. + Extensiones cargadas con éxito. + + + + Error loading extension: %1 + Error cargando la extensión: %1 + + + + + Don't show again + No volver a mostrar + + + + New version available. + Hay una nueva versión disponible. + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Hay disponible una nueva versión de «DB Browser for SQLite» (%1.%2.%3).<br/><br/>Por favor, descárguela de <a href='%4'>%4</a>. + + + + Project saved to file '%1' + Proyecto guardado en el archivo «%1» + + + + creating collation + creando comparación + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + Establezca el nuevo nombre para la pestaña SQL. Use el carácter «&&» para permitir usar el carácter siguiente como un atajo de teclado. + + + + Please specify the view name + Por favor, especifique el nombre de la vista + + + + There is already an object with that name. Please choose a different name. + Ya hay un objeto con ese nombre. Por favor, elija un nombre diferente. + + + + View successfully created. + Vista creada con éxito. + + + + Error creating view: %1 + Error creando la vista: %1 + + + + This action will open a new SQL tab for running: + Esta acción abrirá una nueva pestaña SQL para ejecutar: + + + + Press Help for opening the corresponding SQLite reference page. + Pulse Ayuda para abrir la página correspondiente de la referencia de SQLite. + + + + DB Browser for SQLite project file (*.sqbpro) + Archivo de proyecto de «DB Browser for SQLite» (*.sqbpro) + + + + Error checking foreign keys after table modification. The changes will be reverted. + Error comprobando las claves foráneas tras la modificación de la tabla. Los cambios se desharán. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + Esta tabla no ha pasado la comprobación de claves foráneas.<br/>Debería ejecutar 'Herramientas | Comprobar Claves foráneas' y arreglar los problemas mostrados. + + + + + At line %1: + En la línea %1: + + + + Result: %2 + Resultado: %2 + + + + Execution finished with errors. + Ejecución terminada con errores. + + + + Execution finished without errors. + Ejecución terminada sin errores. + + + + NullLineEdit + + + Set to NULL + Poner a NULL + + + + Alt+Del + + + + + PlotDock + + + Plot + Gráfica + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>Esta tabla muestra la lista de columnas de la tabla actualmente visualizada o de la consulta recién ejecutada. Puede seleccionar las columnas que desea usar como ejes X o Y en el gráfico del panel inferior. La tabla muestra el tipo de eje detectado, el cual afectará al gráfico resultante. Para los ejes Y solo se pueden seleccionar columnas numéricas, pero para el eje X se pueden seleccionar :</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Fecha/Hora</span>: texto con formato &quot;aaaa-MM-dd hh:mm:ss&quot; o &quot;aaaa-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Fecha</span>: texto con formato &quot;aaaa-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: texto con formato &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Etiqueta</span>: texto con otros formatos. Seleccionado esta columna como eje X se dibuja un gráfico de barras con los valores de la columna usados como etiquetas de las barras.</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numérico</span>: valores reales o enteros</li></ul><p>Haciendo doble clic sobre las celdas Y se puede cambiar el color usado para la gráfica correspondiente.</p></body></html> + + + + Columns + Columnas + + + + X + X + + + + Y1 + + + + + Y2 + + + + + Axis Type + Tipo de eje + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + Aquí se dibuja un gráfico cuando se seleccionan los valores de X e Y en la parte superior. + +Con un clic sobre los puntos se seleccionan en el gráfico y en la tabla. Con Ctrl+Clic se pueden seleccionar rangos de puntos. + +Use la rueda del ratón para aumentar y disminuir el gráfico y arrastre con el ratón para cambiar el rango del eje. + +Seleccione los ejes o sus etiquetas para arrastrar y aumentar/disminuir solo en esa orientación. + + + + Line type: + Tipo de línea: + + + + + None + Ninguno + + + + Line + Línea + + + + StepLeft + EscalónIzquierda + + + + StepRight + EscalónDerecha + + + + StepCenter + EscalónCentrado + + + + Impulse + Impulso + + + + Point shape: + Forma de punto: + + + + Cross + Aspa es más específico que cruz. El signo más también es una cruz (una cruz griega). + Aspa + + + + Plus + Más + + + + Circle + Circunferencia + + + + Disc + Círculo + + + + Square + Cuadrado + + + + Diamond + Diamante + + + + Star + Estrella + + + + Triangle + Triángulo + + + + TriangleInverted + TriánguloInvertido + + + + CrossSquare + AspaCuadrado + + + + PlusSquare + MásCuadrado + + + + CrossCircle + AspaCircunferencia + + + + PlusCircle + MásCircunferencia + + + + Peace + Paz + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>Guarda la gráfica actual...</p><p>El formato del archivo es elegido por la extensión (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + Guarda la gráfica actual... + + + + + Load all data and redraw plot + Cargar todos los datos y redibujar el gráfico + + + + + + Row # + Nº de línea + + + + Copy + Copiar + + + + Print... + Imprimir... + + + + Show legend + Mostrar leyenda + + + + Stacked bars + Barras apiladas + + + + Date/Time + Fecha/hora + + + + Date + Fecha + + + + Time + Tiempo + + + + + Numeric + Numérico + + + + Label + Etiqueta + + + + Invalid + Inválido + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + Cargar todos los datos y redibujar el gráfico. +Aviso: aún no se han cargado todos los datos desde la tabla debido al mecanismo de lectura parcial. + + + + Choose an axis color + Elija un color para el eje + + + + Choose a filename to save under + Seleccione un nombre de archivo en el que guardar + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;Todos los archivos(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + Existen lazos en este gráfico y el estilo de línea seleccionado solo se puede aplicar a gráficos ordenados por X. Debe ordenar la tabla o consulta por X para eliminar los lazos o seleccionar uno de los estilos soportados por los lazos: Ninguno o Línea. + + + + Loading all remaining data for this table took %1ms. + Cargar todos los datos restantes para esta tabla tardó %1ms. + + + + PreferencesDialog + + + Preferences + Preferencias + + + + &General + &General + + + + Remember last location + Recordar la última posición + + + + Always use this location + Usar siempre esta posición + + + + Remember last location for session only + Recordar la última posición solamente para esta sesión + + + + + + ... + ... + + + + Default &location + &Posición por defecto + + + + Lan&guage + &Idioma + + + + Automatic &updates + &Actualizaciones automáticas + + + + + + + + + + + + enabled + activado + + + + Show remote options + Mostrar opciones del remoto + + + + &Database + &Base de datos + + + + Database &encoding + Co&dificación de la base de datos + + + + Open databases with foreign keys enabled. + Abrir base de datos con claves foráneas activadas. + + + + &Foreign keys + Claves &foráneas + + + + Data &Browser + &Hoja de datos + + + + Remove line breaks in schema &view + Elimina los saltos de línea en la &vista del esquema + + + + Prefetch block si&ze + &Tamaño del bloque de precarga + + + + SQ&L to execute after opening database + SQ&L a ejecutar tras abrir la base de datos + + + + Default field type + Tipo de campo por defecto + + + + Font + Tipo de letra + + + + &Font + &Tipo de letra + + + + Content + Contenido + + + + Symbol limit in cell + Límite de símbolos en la celda + + + + NULL + NULL + + + + Regular + Normal + + + + Binary + Binario + + + + Background + Fondo + + + + Filters + Filtros + + + + Toolbar style + Estilo de barra de herramientas + + + + + + + + Only display the icon + Solo mostrar el icono + + + + + + + + Only display the text + Solo mostrar el texto + + + + + + + + The text appears beside the icon + El texto aparece junto al icono + + + + + + + + The text appears under the icon + El texto aparece bajo el icono + + + + + + + + Follow the style + Seguir el estilo predefinido + + + + DB file extensions + Extensiones de archivos de BB.DD. + + + + Manage + Gestionar + + + + Main Window + Ventana principal + + + + Database Structure + Estructura + + + + Browse Data + Hoja de datos + + + + Execute SQL + Ejecutar SQL + + + + Edit Database Cell + Editar celda + + + + When this value is changed, all the other color preferences are also set to matching colors. + Cuando se cambia este valor, también se ajustan con colores a juego todas las otras prefencias de color. + + + + Follow the desktop style + Usa el estilo del escritorio + + + + Dark style + Estilo oscuro + + + + Application style + Estilo de la aplicación + + + + This sets the font size for all UI elements which do not have their own font size option. + Esto establece el tamaño de tipografía para todos los elementos de la interfaz de usuario que no tienen su propia opción. + + + + Font size + Tamaño de fuente + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + Cuando está activado, se omiten los saltos de línea en la columna Esquema, tanto en la pestaña Estructura en pantalla, como al imprimir. + + + + Database structure font size + Tamaño de fuente de la estructura de base de datos + + + + Font si&ze + &Tamaño de fuente + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + Este es el máximo número ocurrencias permitidos para que algunas funcionalidades computacionalmente costosas sean activadas: +Máximo número de filas en una tabla para activar el autocompletado basado en los valores actuales en la columna. +Máximo número de índices en una selección para calcular la suma y la media. +Pueden ajustarse a 0 parar desactivar las funcionalidades. + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + Este el el número máximo de filas en una tabla para activar el autocompletado basado en los valores actuales en la columna. +Se puede poner a 0 para desactivar el autocompletado. + + + + Close button on tabs + Botón de cerrar en pestañas + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + Si se habilita, las pestañas del editor SQL tendrán un botón para cerrarlas. En cualquier caso, usted siempre podrá usar el menú contextual o el atajo de teclado para cerrarlas. + + + + Proxy + Proxy + + + + Configure + Configurar + + + + Field display + Estilo de las celdas + + + + Displayed &text + &Texto presentado + + + + + + + + + Click to set this color + Haga clic para ajustar este color + + + + Text color + Color del texto + + + + Background color + Color del fondo + + + + Preview only (N/A) + Solo vista previa (N/A) + + + + Escape character + Carácter de escape + + + + Delay time (&ms) + Tiempo de retardo (&ms) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + Define el tiempo de espera antes de que se aplique un nuevo valor de filtro. Se puede poner a 0 para desactivar la espera. + + + + &SQL + &SQL + + + + Settings name + Nombre de los ajustes + + + + Context + Contexto + + + + Colour + Color + + + + Bold + Negrita + + + + Italic + Cursiva + + + + Underline + Subrayado + + + + Keyword + Palabra clave + + + + Function + Función + + + + Table + Tabla + + + + Comment + Comentario + + + + Identifier + Identificador + + + + String + Cadena + + + + Current line + Línea actual + + + + SQL &editor font size + Tamaño de letra del &editor SQL + + + + Tab size + Tamaño del tabulador + + + + &Wrap lines + Ajuste de líneas + + + + Never + Nunca + + + + At word boundaries + En los límites de palabra + + + + At character boundaries + En los límites de caracteres + + + + At whitespace boundaries + En los límites de espacios en blanco + + + + &Quotes for identifiers + &Comillas para identificadores + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + Elija el mecanismo de entrecomillado usado por la aplicación para los identificadores en el código SQL. + + + + "Double quotes" - Standard SQL (recommended) + "Dobles comillas" - SQL estándar (recomendado) + + + + `Grave accents` - Traditional MySQL quotes + `Acentos graves` - Entrecomillado tradicional de MySQL + + + + [Square brackets] - Traditional MS SQL Server quotes + [Corchetes] - Entrecomillado tradicional de MS SQL Server + + + + Keywords in &UPPER CASE + Palabras claves en &MAYÚSCULAS + + + + When set, the SQL keywords are completed in UPPER CASE letters. + Si se activa, las palabras claves de SQL se completan en letras MAYÚSCULAS. + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + Si se activa, las líneas de código SQL que causaron errores durante la última ejecución se destacan y el marco de resultados indica el error mediante el color del fondo + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html><head/><body><p>SQLite proporciona una función SQL para cargar extensiones desde un archivo de biblioteca compartida. Active esta opción si desea usar la función <span style=" font-style:italic;">load_extension()</span> desde código SQL.</p><p>Por razónes de seguridad, la carga de extensiones está desactivada por defecto y debe ser habilitada usando esta configuración. Siempre puede cargar extensiones a través de la interfaz de usuario, incluso aunque esta opción esté deshabilitada.</p></body></html> + + + + Allow loading extensions from SQL code + Permitir cargar extensiones desde código SQL + + + + Remote + Remoto + + + + CA certificates + Certificados CA + + + + + Subject CN + Sujeto CN + + + + Common Name + Nombre común + + + + Subject O + Sujeto O + + + + Organization + Organización + + + + + Valid from + Válido desde + + + + + Valid to + Válido hasta + + + + + Serial number + Número de serie + + + + Your certificates + Sus certificados + + + + File + Archivo + + + + Subject Common Name + Nombre común del sujeto + + + + Issuer CN + Emisor CN + + + + Issuer Common Name + Nombre común del emisor + + + + Clone databases into + Clonar las bases de datos en + + + + SQL editor &font + &Tipo de letra del editor SQL + + + + Error indicators + Indicadores de error + + + + Hori&zontal tiling + Mosaico hori&zontal + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + Si se activa, el editor de código SQL y la vista de la tabla de resultados se muestran de lado a lado en lugar de una sobre la otra. + + + + Code co&mpletion + Co&mpletar código + + + + Threshold for completion and calculation on selection + Umbral para cálculos al seleccionar y completación + + + + Show images in cell + Mostrar imágenes en la celda + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + Active esta opción para mostrar una previsualización de los BLOBs que contengan datos de imagen en las celdas. Tenga en cuenta que esto puede afectar el desempeño del navegador de la hoja de datos. + + + + Foreground + Texto + + + + SQL &results font size + Tamaño de letra de resultados + + + + &Extensions + E&xtensiones + + + + Select extensions to load for every database: + Seleccione extensiones a cargar para cada base de datos: + + + + Add extension + Añadir extensión + + + + Remove extension + Eliminar extensión + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + +<html><head/><body><p> +Aunque SQLite admite el operador REGEXP, no implementa en sí ningún algoritmo de expresiones<br/> +regulares sino que llama a los de la aplicación en ejecución. «DB Browser for SQLite» implementa este<br/> +método para permitirle usar REGEXP de fábrica. Sin embargo, como hay múltiples posibles<br/> +implementaciones y puede querer usar otra, puede desactivar este método y cargar el suyo propio<br/> +usando una extensión. Necesitará reiniciar la aplicación.</p> +</body></html> + + + + Disable Regular Expression extension + Desactivar extensión de expresiones regulares + + + + + Choose a directory + Seleccione una carpeta + + + + The language will change after you restart the application. + El idioma cambiará al reiniciar la aplicación. + + + + Select extension file + Seleccione archivo de extensión + + + + Extensions(*.so *.dylib *.dll);;All files(*) + Extensiones (*.so *.dll);;Todos los archivos (*) + + + + Import certificate file + Importar archivo de certificado + + + + No certificates found in this file. + No hay certificados en este archivo. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + ¿Está seguro de que quiere eliminar este certificado? ¡Todos los datos del certificado se borrarán de los ajustes de la aplicación! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + ¿Está seguro de que desea borrar todos los ajustes guardadas? +Todas sus preferencias se perderán y se usarán valores predeterminados. + + + + ProxyDialog + + + Proxy Configuration + Configuración del proxy + + + + Pro&xy Type + Tipo de pro&xy + + + + Host Na&me + No&mbre del host + + + + Port + Puerto + + + + Authentication Re&quired + Autentificación re&querida + + + + &User Name + Nombre de &usuario + + + + Password + Contraseña + + + + None + Ninguno + + + + System settings + Ajustes del sistema + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + Error importing data + Error importando datos + + + + from record number %1 + del registro número %1 + + + + . +%1 + . +%1 + + + + Importing CSV file... + Importando archivo CSV... + + + + Cancel + Cancelar + + + + All files (*) + Todos los archivos (*) + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + Archivos de BB.DD. SQLite (*.db *.sqlite *.sqlite3 *.db3) + + + + Left + Izquierda + + + + Right + Derecha + + + + Center + Centrado + + + + Justify + Justificado + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + Archivos de BB.DD. SQLite (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + Archivos de proyecto de DB Browser for SQLite (*.sqbpro) + + + + SQL Files (*.sql) + Archivos SQL (*.sql) + + + + All Files (*) + Todos los archivos (*) + + + + Text Files (*.txt) + Archivos de texto (*.txt) + + + + Comma-Separated Values Files (*.csv) + Archivos de valores separados por comas (*.csv) + + + + Tab-Separated Values Files (*.tsv) + Archivos de valores separados por tabuladores (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + Archivos de Valores Separados por Delimitador (*.dsv) + + + + Concordance DAT files (*.dat) + Archivos DAT de Concordance (*.dat) + + + + JSON Files (*.json *.js) + Archivos JSON (*.json *.js) + + + + XML Files (*.xml) + Archivos XML (*.xml) + + + + Binary Files (*.bin *.dat) + Archivos binarios (*.bin *.dat) + + + + SVG Files (*.svg) + Archivos SVG (*.svg) + + + + Hex Dump Files (*.dat *.bin) + Archivos de volcado Hex (*.dat *.bin) + + + + Extensions (*.so *.dylib *.dll) + Extensiones (*.so *.dylib *.dll) + + + + RemoteCommitsModel + + + Commit ID + ID versión + + + + Message + Mensaje + + + + Date + Fecha + + + + Author + Autor + + + + Size + Tamaño + + + + Authored and committed by %1 + Escrito y registrado por %1 + + + + Authored by %1, committed by %2 + Escrito por %1, registrado por %2 + + + + RemoteDatabase + + + Error opening local databases list. +%1 + Error abriendo la lista de bases de datos locales. +%1 + + + + Error creating local databases list. +%1 + Error creando la lista de bases de datos locales. +%1 + + + + RemoteDock + + + Remote + Remoto + + + + Local + Local + + + + Identity + Identidad + + + + Push currently opened database to server + Volcar la base de datos actualmente abierta al servidor + + + + DBHub.io + + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + <html><head/><body><p>En este panel, las BB.DD. remotas del sitio web dbhub.io se pueden añadir a «DB Browser for SQLite». En primer lugar necesita una identidad:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Ingrese en el sitio web dbhub.io (use sus credenciales de GitHub o las que desee)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Haga clic en el botón de crear un certificado de cliente (esa es su identidad). Eso le proporcionará un archivo de certificado (guárdelo en su disco local).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Vaya a la pestaña «Remoto» de las preferencias de «DB Browser for SQLite». Haga clic en el botón para añadir el nuevo certificado a la aplicación y elija el archivo de certificado recién descargado.</li></ol><p>Ahora el panel «Remoto» le mostrará su identidad y podrá añadir BB.DD. remotas.</p></body></html> + + + + Current Database + Base de datos actual + + + + Clone + Clonar + + + + User + Usuario + + + + Database + Base de datos + + + + Branch + Rama + + + + Commits + Versiones + + + + Commits for + Versiones para + + + + Delete Database + Borrar base de datos + + + + Delete the local clone of this database + Borrar el clon local de la base de datos + + + + Open in Web Browser + Abrir en el navegador web + + + + Open the web page for the current database in your browser + Abrir la página web de la base de datos actual en su navegador + + + + Clone from Link + Clonar desde enlace + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + Use esto para descargar una base de datos remota y editarla localmente usando una URL provista por la página web de la base de datos. + + + + Refresh + Refrescar + + + + Reload all data and update the views + Recargar todos los datos y actualizar las vistas + + + + F5 + + + + + Clone Database + Clonar base de datos + + + + Open Database + Abrir base de datos + + + + Open the local copy of this database + Abrir la copia local de esta base de datos + + + + Check out Commit + Obtener versión + + + + Download and open this specific commit + Descargar y abrir esta versión específica + + + + Check out Latest Commit + Obtener la última versión + + + + Check out the latest commit of the current branch + Obtener la última versión de la rama actual + + + + Save Revision to File + Guardar versión en un archivo + + + + Saves the selected revision of the database to another file + Guarda la versión seleccionada de la base de datos a otro archivo + + + + Upload Database + Cargar base de datos + + + + Upload this database as a new commit + Cargar en el servidor esta base de datos como una nueva versión + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html><head/><body><p>Está usando una identidad integrada de sólo lectura. Para subir su base de datos necesita configurar y usar su cuenta DBHub.io.</p><p>¿Todavía no tiene una cuenta en DBHub.io? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Cree una ahora</span></a> e importe su certificado <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">aquí</span></a> para compartir sus bases de datos.</p><p>Tiene ayuda en línea <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">aquí</span></a>.</p></body></html> + + + + Back + Retroceder + + + + Select an identity to connect + Seleccione una identidad para conectar + + + + Public + Pública + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + Esto descarga una base de datos desde un servidor remoto para edición local. +Por favor, introduzca la URL desde la que clonar. Puede obtener esta URL +haciendo clic en el botón «Clonar base de datos en DB4S» de la página web +de la base de datos. + + + + Invalid URL: The host name does not match the host name of the current identity. + URL inválida: El nombre de 'host' no encaja con el de la identidad actual. + + + + Invalid URL: No branch name specified. + URL inválida: No se ha especificado el nombre de rama. + + + + Invalid URL: No commit ID specified. + URL inválida: No se ha especificado el ID de versión. + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + Ha realizado cambios en el clon local de la base de datos. Al obtener esta versión sobreescribiría los cambios locales. +¿Está seguro de querer proceder? + + + + The database has unsaved changes. Are you sure you want to push it before saving? + La base de datos tiene cambios sin guardar. ¿Está seguro de enviarlos sin guardar? + + + + The database you are trying to delete is currently opened. Please close it before deleting. + La base de datos que pretende borrar está actualmente abierta. Por favor, ciérrela antes de borrarla. + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + Esto borra la versión local de esta base de datos con todos los cambios que aún no ha registrado. ¿Está seguro de querer borrarla? + + + + RemoteLocalFilesModel + + + Name + Nombre + + + + Branch + Rama + + + + Last modified + Última modificación + + + + Size + Tamaño + + + + Commit + Versión + + + + File + Archivo + + + + RemoteModel + + + Name + Nombre + + + + Last modified + Última modificación + + + + Size + Tamaño + + + + Commit + Versión + + + + Size: + Tamaño: + + + + Last Modified: + Última modificación: + + + + Licence: + Licencia: + + + + Default Branch: + Rama por defecto: + + + + RemoteNetwork + + + Choose a location to save the file + Seleccione una localización para guardar el archivo + + + + Error opening remote file at %1. +%2 + Error abriendo el archivo remoto en %1. +%2 + + + + Error: Invalid client certificate specified. + Error: El certificado del cliente es inválido. + + + + Please enter the passphrase for this client certificate in order to authenticate. + Por favor, introduzca la frase de contraseña de este certificado de cliente para autenticarse. + + + + Cancel + Cancelar + + + + Uploading remote database to +%1 + Subiendo base de datos remota a +%1 + + + + Downloading remote database from +%1 + Descargando base de datos remota desde +%1 + + + + + Error: The network is not accessible. + Error: La red no está accesible. + + + + Error: Cannot open the file for sending. + Error: No se puede abrir el archivo para enviar. + + + + RemotePushDialog + + + Push database + Remitir base de datos + + + + Database na&me to push to + No&mbre de la base de datos de destino + + + + Commit message + Mensaje de versión + + + + Database licence + Licencia de la base de datos + + + + Public + Pública + + + + Branch + Rama + + + + Force push + Forzar remisión + + + + Username + Nombre de usuario + + + + Database will be public. Everyone has read access to it. + La base de datos será pública. Todo el mundo podrá leerla. + + + + Database will be private. Only you have access to it. + La base de datos será privada. Sólo usted tendrá acceso. + + + + Use with care. This can cause remote commits to be deleted. + Usar con cuidado. Esto puede provocar borrados de versiones remotas. + + + + RunSql + + + Execution aborted by user + Ejecución abortada por el usuario + + + + , %1 rows affected + , %1 filas afectadas + + + + query executed successfully. Took %1ms%2 + consulta ejecutada con éxito. Tardó %1ms%2 + + + + executing query + ejecutando consulta + + + + SelectItemsPopup + + + A&vailable + &Disponible + + + + Sele&cted + &Seleccionado + + + + SqlExecutionArea + + + Form + Formulario + + + + Find previous match [Shift+F3] + Buscar la siguiente ocurrencia [Shift+F3] + + + + Find previous match with wrapping + Buscar la siguiente ocurrencia + + + + Shift+F3 + + + + + The found pattern must be a whole word + El patrón de búsqueda debe ser una palabra completa + + + + Whole Words + Palabras completas + + + + Text pattern to find considering the checks in this frame + El patrón de texto buscado considerando las opciones de este marco + + + + Find in editor + Buscar en el editor + + + + The found pattern must match in letter case + El patrón de búsqueda debe coincidir en mayúsculas y minúsculas + + + + Case Sensitive + Distinguir mayús./minús. + + + + Find next match [Enter, F3] + Buscar la siguiente ocurrencia [Enter, F3] + + + + Find next match with wrapping + Encontrar la siguiente ocurrencia volviendo al principio si es necesario + + + + F3 + + + + + Interpret search pattern as a regular expression + Interpretar el patrón de búsqueda como una expresión regular + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Si se activa, el patrón de búsqueda se interpreta como una expresión regular UNIX. Véase <a href="https://es.wikipedia.org/wiki/Expresi%C3%B3n_regular">«Expresión regular» en Wikipedia</a>.</p></body></html> + + + + Regular Expression + Expresión regular + + + + + Close Find Bar + Cerrar la barra de búsqueda + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html><head/><body><p>Resultados de las útimas sentencias ejecutadas.</p><p>Puede que prefiera colapsar este panel y en su lugar usar el <span style=" font-style:italic;">Registro SQL</span> con selección de <span style=" font-style:italic;">Usuario</span>.</p></body></html> + + + + Results of the last executed statements + Resultados de las últimas sentencias ejecutadas + + + + This field shows the results and status codes of the last executed statements. + Este campo muestra los resultados y códigos de estado de las últimas sentencias ejecutadas. + + + + Couldn't read file: %1. + No se pudo leer el archivo: %1. + + + + + Couldn't save file: %1. + No se pudo guardar el archivo: %1. + + + + Your changes will be lost when reloading it! + ¡Los cambios se perderán al recargarlo! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + El archivo "%1" ha sido modificado por otro programa. ¿Quiere recargarlo?%2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) La función abs(X) devuelve el valor absoluto del argumento numérico X. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () La función changes() devuelve el número de líneas de la base de datos que se modificaron, insertaron o borraron por la consulta INSERT, DELETE, o UPDATE más reciente. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) La función char(X1,X2,...,XN) devuelve una cadena compuesta por caracteres que tienen el valor numérico del código de punto unicode los enteros X1 hasta XN, respectivamente. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) La función coalesce() devuelve una copia de su primer argumento no nulo, o NULL si todos los argumentos son NULL + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) La función glob(X,Y) es equivalente a la expresión "Y GLOB X". + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) La función ifnull() devuelve una copia de su primer argumento no nulo, o NULL si ambos argumentos son NULL. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) La función instr(X,Y) busca la primera coincidencia de la cadena Y en la cadena X y devuelve el número de caracteres precedentes más 1, ó 0 si Y no se encuentra en X. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) La función hex() interpreta su argumento como un BLOB y devuelve una cadena que es el equivalente codificado en hexadecimal en mayúsculas del contenido del BLOB. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () La función last_insert_rowid() devuelve el ROWID del la última línea insertada desde la conexión de la base de datos que invocó la función. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) La función length(X) devuelve el número de caracteres (no bytes) en X anteriores al primer carácter NUL. + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + X,Y) La función like() se usa para implementar la expresión "Y LIKE X". + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) La función like() se usa para implementar la expresión "Y LIKE X ESCAPE Z". + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) La función load_extension(X) carga extensiones SQLite del archivo de la biblioteca compartida llamada X usando el punto de entrada Y. +El uso de esta función tiene que ser autorizado desde las Preferencias. + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X,Y) La función load_extension(X,Y) carga extensiones SQLite del archivo de la biblioteca compartida llamado X usando el punto de entrada Y. +El uso de esta función tiene que ser autorizado desde las Preferencias. + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) La función lower(X) devuelve una copia de la cadena X con todos los caracteres ASCII convertidos a minúsculas. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) La función ltrim(X) quita los espacios a la izquierda de X. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) La función ltrim(X,Y) devuelve una cadena formada quitando todos los caracteres que aparecen en Y de la izquierda de X. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) La función multi-argumento max() devuelve el argumento con el valor máximo, o NULL si cualquier argumento es NULL. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) La función multi-argumento max() devuelve el argumento con el valor mínimo. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) La función nullif(X,Y) devuelve su primer argumento si los argumentos son diferentes y NULL si los argumentos son el mismo. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) La función SQL printf(FORMAT,...) funciona como la función de lenguaje C sqlite3_mprintf() y la función printf() de la biblioteca C estándar. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) La función quote(X) devuelve el texto de un literal SQL, que es el valor de su argumento, apropiado para la inclusión en una sentencia SQL. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () La función random() devuelve un entero pseudo-aleatorio entre -9223372036854775808 y +9223372036854775807. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) La función randomblob(N) devuelve un BLOB de N bytes que contiene bytes pseudo-aleatorios. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) La función replace(X,Y,Z) devuelve una cadena formada substituyendo en la cadena Z cada coincidencia con la subcadena Y por la subcadena X. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) La función round(X) devuelve un valor en coma flotante X redondeado a cero dígitos a la derecha de la coma decimal. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) La función round(X,Y) devuelve un valor en coma flotante X redondeado a Y dígitos a la derecha de la coma decimal. + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) La función rtrim(X) quita los espacios a la derecha de X. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) La función rtrim(X,Y) devuelve una cadena formada quitando todos los caracteres que aparecen en Y de la derecha de X. + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) La función soundex(X) devuelve una cadena que es la codificación soundex de la cadena X. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) La función substr(X,Y) devuelve una subcadena con todos los caracteres de la cadena X desde el Y-ésimo hasta el último. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y) La función substr(X,Y) devuelve una subcadena de la cadena X desde el Y-ésimo y que es Z caracteres de largo. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () La función total_changes() devuelve el número de cambios en las líneas causadas por sentencias INSERT, UPDATE o DELETE desde que la conexión con la base de datos actual se abrió. + + + + (X) trim(X) removes spaces from both ends of X. + (X) La función trim(X) quita los espacios de ambos lados de X. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) La función trim(X,Y) devuelve una cadena formada quitando todos los caracteres que aparecen en Y de ambos lados de X. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) La función typeof(X) devuelve una cadena que indica el tipo de datos de la expresión X. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) La función unicode(X) devuelve el valor numérico del código de punto unicode correspondiente al primer carácter de la cadena X. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) La función upper(X) devuelve una copia de la cadena X con todos los caracteres ASCII convertidos a mayúsculas. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) La función zeroblob(N) devuelve un BLOB consistente en N bytes de 0x00. + + + + + + + (timestring,modifier,modifier,...) + (timestring,modificador,modificador,...) + + + + (format,timestring,modifier,modifier,...) + (formato,timestring,modificador,modificador,...) + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) La función avg() devuelve el valor medio de todos los valores no nulos del grupo X. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) La función count(X) devuelve el conteo del número de veces que X no es nulo en un grupo. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) La función group_concat() devuelve una cadena que es la concatenación de todos los valores no nulos X. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) La función group_concat() devuelve una cadena que es la concatenación de todos los valores no nulos X, usando el parámetro Y como separador entre las instancias de X. + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) La función agregada max() devuelve el máximo valor de entre todos los valores en el grupo. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) La función agregada min() devuelve el mínimo valor no NULO de entre todos los valores en el grupo. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) Las funciones agregadas sum() y total() devuelven la suma de todos los valores no NULOS en el grupo. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () El número de fila dentro de la partición actual. Las filas se numeran empezando por 1 en el orden definido por la cláusula ORDER BY en la ventana de definición, o sino en un orden arbitrario. + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () El row_number() del primer par (igual) en cada grupo - el rango de la fila actual con huecos. Si no hay una cláusula ORDER BY, entonces todas las filas son consideradas pares y esta función siempre devuelve 1. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () El número del grupo de pares de la fila actual dentro de su partición - el rango de la fila actual sin huecos. Las particiones se numeran empezando por 1 en el orden definido por la cláusula ORDER BY en la ventana de definición. Si no hay una cláusula ORDER BY, entonces todas las filas son consideradas pares y esta función siempre devuelve 1. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () A pesar del nombre, esta función siempre devuelve un valor entre 0.0 y 1.0 igual a (rank - 1)/(partition-rows - 1), donde rank es el valor devuelto por la función de ventana incorporada rank() y partition-rows es el número total de filas en la partición. Si la partición contiene sólo una fila, esta función devuelve 0.0. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () La distribución acumulada. Calculada como row-number/partition-rows, donde row-number es el valor devuelto por row_number() para el último par (igual) en el grupo y partition-rows el número de filas en la partición. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) El argumento N es tratado como un entero. Esta función divide la partición en N grupos tan equitativamente como sea posible y asigna un entero entre 1 y N a cada grupo, en el orden definido por la cláusula ORDER BY, o sino en un orden arbitrario. Si es necesario, los grupos mayores aparecen primero. Esta función devuelve un valor entero asignado al grupo del que la fila actual es parte. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) Devuelve el resultado de evaluar la expresión expr con la fila anterior en la partición. Si no hay fila anterior (porque la fila actual es la primera) devuelve NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr,offset) Si se proporciona un offset, éste debe ser un entero no negativo. En este caso el valor devuelto es el resultado de evaluar expr con la fila offset veces anterior a la fila actual dentro de la partición. Si offset es 0, entonces expr se evalua con la fila actual. Si no hay fila offset veces anterior devuelve NULL. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,offset,default) Si también se proporciona un default, entonces éste es devuelto en lugar de NULL si no existe la fila identificada por offet. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) Devuelve el resultado de evaluar la expresión expr con la siguiente fila en la partición. Si no hay fila siguiente (porque la fila actual es la última) devuelve NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,offset) Si se proporciona un offset, éste debe ser un entero no negativo. En este caso el valor devuelto es el resultado de evaluar expr con la fila offset veces posterior a la fila actual dentro de la partición. Si offset es 0, entonces expr se evalua con la fila actual. Si no hay fila offset veces siguiente devuelve NULL. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) Esta función de ventana incorporada calcula el marco de la ventana para cada fila de la misma forma que una función agregada de ventana. Devuelve el valor de expr evaluada con la primera fila en el marco de la ventana para cada fila. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) Esta función de ventana incorporada calcula el marco de la ventana para cada fila de la misma forma que una función agregada de ventana. Devuelve el valor de expr evaluada con la última fila en el marco de la ventana para cada fila. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr,N) Esta función de ventana incorporada calcula el marco de la ventana para cada fila de la misma forma que una función agregada de ventana. Devuelve el valor de expr evaluada con la fila N del marco de la ventana. Las columnas se numeran dentro del marco de la ventana empezando por 1 en el orden definico por la cláusula ORDER BY, o sino en orden arbitrario. Si no hay fila N-ava en la partición, entonces devuelve NULL. + + + + SqliteTableModel + + + reading rows + leyendo filas + + + + loading... + cargando... + + + + References %1(%2) +Hold %3Shift and click to jump there + Referencia %1(%2) +Mantenga pulsado %3Mayús. y haga clic para ir ahí + + + + Error changing data: +%1 + Error modificando datos: +%1 + + + + retrieving list of columns + obteniendo lista de columnas + + + + Fetching data... + Obteniendo datos... + + + + + Cancel + Cancelar + + + + TableBrowser + + + Browse Data + Hoja de datos + + + + &Table: + &Tabla: + + + + Select a table to browse data + Seleccione una tabla para ver sus datos + + + + Use this list to select a table to be displayed in the database view + Use esta lista para seleccionar la tabla a mostrar en la vista de la base de datos + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + Este es el visor de la tabla de la base de datos. Puede realizar lo siguiente: + - Escribir y editar valores. + - Doble-clic en cualquier registro para editar su contenido en la ventana del editor de celdas. + - Alt+Supr para borrar el contenido de la celda a NULL. + - Ctrl+" para duplicar el registro actual. + - Ctrl+' para copiar el valor de la celda de arriba. + - Las operaciones de copiar y pegar usuales. + + + + Text pattern to find considering the checks in this frame + El patrón de texto a buscar según las opciones seleccionadas en este marco + + + + Find in table + Buscar en la tabla + + + + Find previous match [Shift+F3] + Buscar la anterior ocurrencia [Mayús.+F3] + + + + Find previous match with wrapping + Buscar la anterior ocurrencia volviendo al final si es necesario + + + + Shift+F3 + + + + + Find next match [Enter, F3] + Buscar la siguiente ocurrencia [Intro, F3] + + + + Find next match with wrapping + Buscar la siguiente ocurrencia volviendo al principio si es necesario + + + + F3 + + + + + The found pattern must match in letter case + El patrón de búsqueda tiene que coincidir en mayúsculas y minúsculas + + + + Case Sensitive + Distinguir mayús./minús. + + + + The found pattern must be a whole word + El patrón de búsqueda tiene que ser una palabra completa + + + + Whole Cell + Toda la celda + + + + Interpret search pattern as a regular expression + Interpretar el patrón de búsqueda como una expresión regular + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Si se marca, el patrón de búsqueda se interpreta como una expresión regular UNIX. Véase <a href="https://es.wikipedia.org/wiki/Expresi%C3%B3n_regular">«Expresión regular» en Wikipedia</a>.</p></body></html> + + + + Regular Expression + Expresión regular + + + + + Close Find Bar + Cerrar la barra de búsqueda + + + + Text to replace with + Texto con el que reemplazar + + + + Replace with + Reemplazar con + + + + Replace next match + Reemplazar la siguiente coincidencia + + + + + Replace + Reemplazar + + + + Replace all matches + Reemplazar todas las coincidencias + + + + Replace all + Reemplazar todo + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Desplazarse hasta el principio</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Pulsando este botón se mueve hasta el principio en la vista de tabla de arriba.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + Retroceder una página + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>Pulsando este botón se retrocede una página de registros en la vista de tabla de arriba.</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 de 0 + + + + Scroll one page downwards + Avanzar una página + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>Pulsando este botón se avanza una página de registros en la vista de tabla de arriba.</p></body></html> + + + + > + > + + + + Scroll to the end + Desplazarse hasta el final + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + <html><head/><body><p>Pulsando este botón se mueve al final de la vista de tabla de arriba.</p></body></html> + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>Pulse aquí para saltar al registro especificado</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>Este botón se usa para moverse al número de registro especificado en la casilla Ir a.</p></body></html> + + + + Go to: + Ir a: + + + + Enter record number to browse + Introduzca el número de registro al que navegar + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Escriba un número de registro en esta casilla y haga clic en el botón «Ir a:» para mostrar el registro en la vista de la base de datos + + + + 1 + 1 + + + + Show rowid column + Mostrar la columna rowid + + + + Toggle the visibility of the rowid column + Cambia la visibilidad de la columna rowid + + + + Unlock view editing + Desbloquear edición de vistas + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + Esto desbloquea la vista actual para edición. Aunque para la edición se necesitarán los disparadores adecuados. + + + + Edit display format + Editar el formato de presentación + + + + Edit the display format of the data in this column + Editar el formato de presentación de los datos en esta columna + + + + + New Record + Nuevo registro + + + + + Insert a new record in the current table + Inserta un nuevo registro en la tabla actual + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>Este botón crea un nuevo registro en la base de datos. Mantenga pulsado el botón del ratón para abrir un menú emergente con varias opciones:</p><ul><li><span style=" font-weight:600;">Nuevo Registro</span>: inserta en la base de datos un nuevo registro con valores por defecto.</li><li><span style=" font-weight:600;">Introduce Valores...</span>: abre un diálogo para introducir valores antes de insertarlos en la base de datos. Esto permite introducir valores que cumplan con las restricciones. Este diálogo también se abre si la opción de <span style=" font-weight:600;">Nuevo Registro</span> falla debido a esas restricciones.</li></ul></body></html> + + + + + Delete Record + Borrar registro + + + + Delete the current record + Borra el registro actual + + + + + This button deletes the record or records currently selected in the table + Este botón borra el registro seleccionado (o los registros seleccionados) actualmente en la base de datos + + + + + Insert new record using default values in browsed table + Inserta un nuevo registro usando valores por defecto en la tabla visualizada + + + + Insert Values... + Introducir valores... + + + + + Open a dialog for inserting values in a new record + Abre un diálogo para introducir valores en un nuevo registro + + + + Export to &CSV + Exportar a &CSV + + + + + Export the filtered data to CSV + Exportar los datos filtrados a CSV + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + Este botón exporta los datos de la tabla mostrada tal como se presentan (después de filtros, formatos de presentación y columna de orden) como un archivo CSV. + + + + Save as &view + Guardar como &vista + + + + + Save the current filter, sort column and display formats as a view + Guardar el filtro actual, la columna de orden y los formatos de presentación como una vista + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + Este botón guarda los ajustes actuales de la tabla visualizada (filtros, formatos de presentación y la columna de orden) como una vista SQL que más tarde puede visualizar o usar en sentencias SQL. + + + + Save Table As... + Guardar Tabla Como... + + + + + Save the table as currently displayed + Guarda la tabla tal como se presenta + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>Este menú contextual provee las siguientes opciones que se aplican a la tabla actualmente visualizada y filtrada:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Exportar a CSV: esta opción exporta los datas de la tabla tal cual se presentan actualmente (después de filtros, formatos de presentación y columna de orden) a un archivo CSV.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Guardar como vista: esta opción guarda la configuración actual de la tabla visualizada (filtros, formatos de presentación y columna de orden) como una vista SQL que luego puede visualizar o usar en sentencias SQL.</li></ul></body></html> + + + + Hide column(s) + Ocultar columna(s) + + + + Hide selected column(s) + Ocultar columna(s) seleccionada(s) + + + + Show all columns + Mostrar todas las columnas + + + + Show all columns that were hidden + Mostrar todas las columnas que están ocultas + + + + + Set encoding + Definir codificación + + + + Change the encoding of the text in the table cells + Cambia la codificación del texto de las celdas de la tabla + + + + Set encoding for all tables + Definir la codificación para todas las tablas + + + + Change the default encoding assumed for all tables in the database + Cambia la codificación por defecto para todas las tablas en la base de datos + + + + Clear Filters + Borrar Filtros + + + + Clear all filters + Borra todos los filtros + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + Este botón elimina todos los filtros establecidos en la cabecera para la tabla mostrada actualmente. + + + + Clear Sorting + Eliminar ordenación + + + + Reset the order of rows to the default + Reinicia el orden de las filas al orden por defecto + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + Este botón elimina la ordenación de las columnas especificadas para la tabla mostrada actualmente y vuelve al orden por defecto. + + + + Print + Imprimir + + + + Print currently browsed table data + Imprime los datos de la tabla mostrada actualmente + + + + Print currently browsed table data. Print selection if more than one cell is selected. + Imprime los datos de la tabla mostrada actualmente. Imprime la selección si se ha seleccionado más de una celda. + + + + Ctrl+P + + + + + Refresh + Refrescar + + + + Refresh the data in the selected table + Refresca los datos en la tabla seleccionada + + + + This button refreshes the data in the currently selected table. + Este botón refresca los datos de la tabla seleccionada actualmente. + + + + F5 + + + + + Find in cells + Buscar en celdas + + + + Open the find tool bar which allows you to search for values in the table view below. + Abre la barra de búsqueda que permite buscar valores en la vista de la tabla de abajo. + + + + + Bold + Negrita + + + + Ctrl+B + + + + + + Italic + Cursiva + + + + + Underline + Subrayado + + + + Ctrl+U + + + + + + Align Right + Alineado derecha + + + + + Align Left + Alineado izquierda + + + + + Center Horizontally + Centrado horizontal + + + + + Justify + Justificar + + + + + Edit Conditional Formats... + Editar formatos condicionales... + + + + Edit conditional formats for the current column + Edita formatos condicionales para la columna actual + + + + Clear Format + Eliminar formato + + + + Clear All Formats + Eliminar todos los formatos + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + Elimina todo el formato de las celdas seleccionadas y los formatos condicionales de las columnas seleccionadas + + + + + Font Color + Color del texto + + + + + Background Color + Color del fondo + + + + Toggle Format Toolbar + Conmutar barra de formato + + + + Show/hide format toolbar + Mostrar/ocultar la barra de formato + + + + + This button shows or hides the formatting toolbar of the Data Browser + Este botón muestra u oculta la barra de formato de la Hoja de Datos + + + + Select column + Seleccionar columna + + + + Ctrl+Space + + + + + Replace text in cells + Reemplazar texto en las celdas + + + + Filter in any column + Filtrar en cualquier columna + + + + Ctrl+R + + + + + %n row(s) + + %n fila + %n filas + + + + + , %n column(s) + + , %n columna + , %n columnas + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . Suma: %1; Media: %2; Mín: %3; Máx: %4 + + + + Conditional formats for "%1" + Formatos condicionales para "%1" + + + + determining row count... + determinando nº de filas... + + + + %1 - %2 of >= %3 + %1 - %2 de >= %3 + + + + %1 - %2 of %3 + %1 - %2 de %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + Introduzca una clave pseudo-primaria para activar la edición en esta vista. Esta debería ser el nombre de una columna única en la vista. + + + + Delete Records + Borrar registros + + + + Duplicate records + Duplicar registros + + + + Duplicate record + Duplicar registro + + + + Ctrl+" + + + + + Adjust rows to contents + Ajustar las filas al contenido + + + + Error deleting record: +%1 + Error borrando registro: +%1 + + + + Please select a record first + Por favor, antes seleccione un registro + + + + There is no filter set for this table. View will not be created. + No existe un filtro para esta tabla. La vista no será creada. + + + + Please choose a new encoding for all tables. + Por favor, elija una nueva codificación para todas las tablas. + + + + Please choose a new encoding for this table. + Por favor, elija una nueva codificación para esta tabla. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Deje este campo vacío para usar la codificación de la base de datos. + + + + This encoding is either not valid or not supported. + Esta codificación no es válida o no está soportada. + + + + %1 replacement(s) made. + Se realizaron %1 sustitucion(es). + + + + VacuumDialog + + + Compact Database + Compactar base de datos + + + + Warning: Compacting the database will commit all of your changes. + Aviso: compactar la base de datos provocará la consolidación de todos sus cambios. + + + + Please select the databases to co&mpact: + Seleccione las bases de datos que desea co&mpactar: + + + diff --git a/ConfigFiles/translations/sqlb_fa.ts b/ConfigFiles/translations/sqlb_fa.ts new file mode 100644 index 0000000..0bda49c --- /dev/null +++ b/ConfigFiles/translations/sqlb_fa.ts @@ -0,0 +1,6922 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + + + + + Version + + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + + + + + AddRecordDialog + + + Add New Record + + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + + + + + Name + + + + + Type + + + + + Value + + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + + + + + Auto-increment + + + + + + Unique constraint + + + + + + Check constraint: %1 + + + + + + Foreign key: %1 + + + + + + Default value: %1 + + + + + + Error adding record. Message from database engine: + +%1 + + + + + Are you sure you want to restore all the entered values to their defaults? + + + + + Application + + + Possible command line arguments: + + + + + Usage: %1 [options] [<database>|<project>] + + + + + + -h, --help Show command line options + + + + + -q, --quit Exit application after running scripts + + + + + -s, --sql <file> Execute this SQL file after opening the DB + + + + + -t, --table <table> Browse this table after opening the DB + + + + + -R, --read-only Open database in read-only mode + + + + + -o, --option <group>/<setting>=<value> + + + + + Run application with this setting temporarily set to value + + + + + -O, --save-option <group>/<setting>=<value> + + + + + Run application saving this value for this setting + + + + + -v, --version Display the current version + + + + + <database> Open this SQLite database + + + + + <project> Open this project file (*.sqbpro) + + + + + The -s/--sql option requires an argument + + + + + The file %1 does not exist + + + + + The -t/--table option requires an argument + + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + + + + + SQLite Version + + + + + SQLCipher Version %1 (based on SQLite %2) + + + + + DB Browser for SQLite Version %1. + + + + + Built for %1, running on %2 + + + + + Qt Version %1 + + + + + Invalid option/non-existant file: %1 + + + + + CipherDialog + + + SQLCipher encryption + + + + + &Password + + + + + &Reenter password + + + + + Passphrase + + + + + Raw key + + + + + Encr&yption settings + + + + + SQLCipher &3 defaults + + + + + SQLCipher &4 defaults + + + + + Custo&m + + + + + Page si&ze + + + + + &KDF iterations + + + + + HMAC algorithm + + + + + KDF algorithm + + + + + Plaintext Header Size + + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + + + + + ColumnDisplayFormatDialog + + + Choose display format + + + + + Display format + + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + + + + + Default + + + + + Decimal number + + + + + Exponent notation + + + + + Hex blob + + + + + Hex number + + + + + Octal number + + + + + Round number + + + + + Apple NSDate to date + + + + + Java epoch (milliseconds) to date + + + + + .NET DateTime.Ticks to date + + + + + Julian day to date + + + + + Unix epoch to date + + + + + Unix epoch to local time + + + + + Windows DATE to date + + + + + Date as dd/mm/yyyy + + + + + Lower case + + + + + Upper case + + + + + Custom + + + + + Custom display format must contain a function call applied to %1 + + + + + Error in custom display format. Message from database engine: + +%1 + + + + + Custom display format must return only one column but it returned %1. + + + + + CondFormatManager + + + Conditional Format Manager + + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + + + + + Add new conditional format + + + + + &Add + + + + + Remove selected conditional format + + + + + &Remove + + + + + Move selected conditional format up + + + + + Move &up + + + + + Move selected conditional format down + + + + + Move &down + + + + + Foreground + + + + + Text color + + + + + Background + + + + + Background color + + + + + Font + + + + + Size + + + + + Bold + + + + + Italic + + + + + Underline + + + + + Alignment + + + + + Condition + + + + + + Click to select color + + + + + Are you sure you want to clear all the conditional formats of this field? + + + + + DBBrowserDB + + + This database has already been attached. Its schema name is '%1'. + + + + + Please specify the database name under which you want to access the attached database + + + + + Invalid file format + + + + + Do you really want to close this temporary database? All data will be lost. + + + + + Do you want to save the changes made to the database file %1? + + + + + Database didn't close correctly, probably still busy + + + + + The database is currently busy: + + + + + Do you want to abort that other operation? + + + + + Exporting database to SQL file... + + + + + + Cancel + + + + + + No database file opened + + + + + Executing SQL... + + + + + Action cancelled. + + + + + + Error in statement #%1: %2. +Aborting execution%3. + + + + + + and rolling back + + + + + didn't receive any output from %1 + + + + + could not execute command: %1 + + + + + Cannot delete this object + + + + + Cannot set data on this object + + + + + + A table with the name '%1' already exists in schema '%2'. + + + + + No table with name '%1' exists in schema '%2'. + + + + + + Cannot find column %1. + + + + + Creating savepoint failed. DB says: %1 + + + + + Renaming the column failed. DB says: +%1 + + + + + + Releasing savepoint failed. DB says: %1 + + + + + Creating new table failed. DB says: %1 + + + + + Copying data to new table failed. DB says: +%1 + + + + + Deleting old table failed. DB says: %1 + + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + + + + + could not get list of db objects: %1 + + + + + could not get list of databases: %1 + + + + + Error setting pragma %1 to %2: %3 + + + + + File not found. + + + + + Error loading extension: %1 + + + + + could not get column information + + + + + DbStructureModel + + + Name + + + + + Object + + + + + Type + + + + + Schema + + + + + Database + + + + + Browsables + + + + + All + + + + + Temporary + + + + + Tables (%1) + + + + + Indices (%1) + + + + + Views (%1) + + + + + Triggers (%1) + + + + + EditDialog + + + Edit database cell + + + + + Mode: + + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + + + + + Text + + + + + RTL Text + + + + + Binary + + + + + + Image + + + + + JSON + + + + + XML + + + + + + Automatically adjust the editor mode to the loaded data type + + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + + + + + Auto-switch + + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + + + + + Open preview dialog for printing the data currently stored in the cell + + + + + Auto-format: pretty print on loading, compact on saving. + + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + + + + + Word Wrap + + + + + Wrap lines on word boundaries + + + + + + Open in default application or browser + + + + + Open in application + + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + + + + + Save file reference... + + + + + Save reference to file + + + + + + Open in external application + + + + + Autoformat + + + + + &Export... + + + + + + &Import... + + + + + + Import from file + + + + + + Opens a file dialog used to import any kind of data to this database cell. + + + + + Export to file + + + + + Opens a file dialog used to export the contents of this database cell to a file. + + + + + Erases the contents of the cell + + + + + Set as &NULL + + + + + This area displays information about the data present in this database cell + + + + + Type of data currently in cell + + + + + Size of data currently in table + + + + + Apply data to cell + + + + + This button saves the changes performed in the cell editor to the database cell. + + + + + Apply + + + + + + Print... + + + + + Open preview dialog for printing displayed image + + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + + + + + Copy Hex and ASCII + + + + + Copy selected hexadecimal and ASCII columns to the clipboard + + + + + Ctrl+Shift+C + + + + + + Image data can't be viewed in this mode. + + + + + + Try switching to Image or Binary mode. + + + + + + Binary data can't be viewed in this mode. + + + + + + Try switching to Binary mode. + + + + + + Image files (%1) + + + + + Binary files (*.bin) + + + + + Choose a file to import + + + + + %1 Image + + + + + Choose a filename to export data + + + + + Invalid data for this mode + + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + + + + + + Type of data currently in cell: Text / Numeric + + + + + + + %n character(s) + + + + + + + Type of data currently in cell: %1 Image + + + + + %1x%2 pixel(s) + + + + + Type of data currently in cell: NULL + + + + + + %n byte(s) + + + + + + + Type of data currently in cell: Valid JSON + + + + + Type of data currently in cell: Binary + + + + + Couldn't save file: %1. + + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + + + + + EditIndexDialog + + + Edit Index Schema + + + + + &Name + + + + + &Table + + + + + &Unique + + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + + + + + Partial inde&x clause + + + + + Colu&mns + + + + + Table column + + + + + Type + + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + + + + + Index column + + + + + Order + + + + + Deleting the old index failed: +%1 + + + + + Creating the index failed: +%1 + + + + + EditTableDialog + + + Edit table definition + + + + + Table + + + + + Advanced + + + + + Without Rowid + + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + + + + + Fields + + + + + Database sche&ma + + + + + Add + + + + + Remove + + + + + Move to top + + + + + Move up + + + + + Move down + + + + + Move to bottom + + + + + + Name + + + + + + Type + + + + + NN + + + + + Not null + + + + + PK + + + + + Primary key + + + + + AI + + + + + Autoincrement + + + + + U + + + + + + + Unique + + + + + Default + + + + + Default value + + + + + + + Check + + + + + Check constraint + + + + + Collation + + + + + + + Foreign Key + + + + + Constraints + + + + + Add constraint + + + + + Remove constraint + + + + + Columns + + + + + SQL + + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + + + + + + Primary Key + + + + + Add a primary key constraint + + + + + Add a foreign key constraint + + + + + Add a unique constraint + + + + + Add a check constraint + + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + + + + + Error creating table. Message from database engine: +%1 + + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + + + + + Column '%1' has duplicate data. + + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + + + + + ExportDataDialog + + + Export data as CSV + + + + + Tab&le(s) + + + + + Colu&mn names in first line + + + + + Fie&ld separator + + + + + , + + + + + ; + + + + + Tab + + + + + | + + + + + + + Other + + + + + &Quote character + + + + + " + + + + + ' + + + + + New line characters + + + + + Windows: CR+LF (\r\n) + + + + + Unix: LF (\n) + + + + + Pretty print + + + + + Export data as JSON + + + + + exporting CSV + + + + + + Could not open output file: %1 + + + + + exporting JSON + + + + + + Choose a filename to export data + + + + + Please select at least 1 table. + + + + + Choose a directory + + + + + Export completed. + + + + + ExportSqlDialog + + + Export SQL... + + + + + Tab&le(s) + + + + + Select All + + + + + Deselect All + + + + + &Options + + + + + Keep column names in INSERT INTO + + + + + Multiple rows (VALUES) per INSERT statement + + + + + Export everything + + + + + Export schema only + + + + + Export data only + + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + + + + + Please select at least one table. + + + + + Choose a filename to export + + + + + Export completed. + + + + + Export cancelled or failed. + + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + + + + + Find and Replace... + + + + + Print... + + + + + ExtendedTableWidget + + + Use as Exact Filter + + + + + Containing + + + + + Not containing + + + + + Not equal to + + + + + Greater than + + + + + Less than + + + + + Greater or equal + + + + + Less or equal + + + + + Between this and... + + + + + Regular expression + + + + + Edit Conditional Formats... + + + + + Set to NULL + + + + + Copy + + + + + Copy with Headers + + + + + Copy as SQL + + + + + Paste + + + + + Print... + + + + + Use in Filter Expression + + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + + + + + FileExtensionManager + + + File Extension Manager + + + + + &Up + + + + + &Down + + + + + &Add + + + + + &Remove + + + + + + Description + + + + + Extensions + + + + + *.extension + + + + + FilterLineEdit + + + Filter + + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + + + + + Clear All Conditional Formats + + + + + Use for Conditional Format + + + + + Set Filter Expression + + + + + What's This? + + + + + Is NULL + + + + + Is not NULL + + + + + Is empty + + + + + Is not empty + + + + + Not containing... + + + + + Equal to... + + + + + Not equal to... + + + + + Greater than... + + + + + Less than... + + + + + Greater or equal... + + + + + Less or equal... + + + + + In range... + + + + + Regular expression... + + + + + Edit Conditional Formats... + + + + + FindReplaceDialog + + + Find and Replace + + + + + Fi&nd text: + + + + + Re&place with: + + + + + Match &exact case + + + + + Match &only whole words + + + + + When enabled, the search continues from the other end when it reaches one end of the page + + + + + &Wrap around + + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + + + + + Search &backwards + + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + + + + + &Selection only + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Use regular e&xpressions + + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + + + + + &Find Next + + + + + F3 + + + + + &Replace + + + + + Highlight all the occurrences of the text in the page + + + + + F&ind All + + + + + Replace all the occurrences of the text in the page + + + + + Replace &All + + + + + The searched text was not found + + + + + The searched text was not found. + + + + + The searched text was replaced one time. + + + + + The searched text was found one time. + + + + + The searched text was replaced %1 times. + + + + + The searched text was found %1 times. + + + + + ForeignKeyEditor + + + &Reset + + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + + + + + ImportCsvDialog + + + Import CSV file + + + + + Table na&me + + + + + &Column names in first line + + + + + Field &separator + + + + + , + + + + + ; + + + + + + Tab + + + + + | + + + + + Other + + + + + &Quote character + + + + + + Other (printable) + + + + + + Other (code) + + + + + " + + + + + ' + + + + + &Encoding + + + + + UTF-8 + + + + + UTF-16 + + + + + ISO-8859-1 + + + + + Trim fields? + + + + + Separate tables + + + + + Advanced + + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + + + + + Ignore default &values + + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + + + + + Fail on missing values + + + + + Disable data type detection + + + + + Disable the automatic data type detection when creating a new table. + + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + + + + + Abort import + + + + + Ignore row + + + + + Replace existing row + + + + + Conflict strategy + + + + + + Deselect All + + + + + Match Similar + + + + + Select All + + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + + + + + There is already a table named '%1'. Do you want to import the data into it? + + + + + Creating restore point failed: %1 + + + + + Creating the table failed: %1 + + + + + importing CSV + + + + + Inserting row failed: %1 + + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + + + + + MainWindow + + + DB Browser for SQLite + + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + + + + + toolBar1 + + + + + &File + + + + + &Import + + + + + &Export + + + + + &Edit + + + + + &View + + + + + &Help + + + + + &Tools + + + + + DB Toolbar + + + + + Edit Database &Cell + + + + + SQL &Log + + + + + Show S&QL submitted by + + + + + User + + + + + Application + + + + + Error Log + + + + + This button clears the contents of the SQL logs + + + + + &Clear + + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + + + + + &Plot + + + + + DB Sche&ma + + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + + + + + &Remote + + + + + + Project Toolbar + + + + + Extra DB toolbar + + + + + + + Close the current database file + + + + + &New Database... + + + + + + Create a new database file + + + + + This option is used to create a new database file. + + + + + Ctrl+N + + + + + + &Open Database... + + + + + + + + + Open an existing database file + + + + + + + This option is used to open an existing database file. + + + + + Ctrl+O + + + + + &Close Database + + + + + This button closes the connection to the currently open database file + + + + + + Ctrl+W + + + + + &Revert Changes + + + + + + Revert database to last saved state + + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + + + + + &Write Changes + + + + + + Write changes to the database file + + + + + This option is used to save changes to the database file. + + + + + Ctrl+S + + + + + Compact &Database... + + + + + Compact the database file, removing space wasted by deleted records + + + + + + Compact the database file, removing space wasted by deleted records. + + + + + E&xit + + + + + Ctrl+Q + + + + + &Database from SQL file... + + + + + Import data from an .sql dump text file into a new or existing database. + + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + + + + + &Table from CSV file... + + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + + + + + &Database to SQL file... + + + + + Export a database to a .sql dump text file. + + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + + + + + &Table(s) as CSV file... + + + + + Export a database table as a comma separated text file. + + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + + + + + &Create Table... + + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + + + + + &Delete Table... + + + + + + Delete Table + + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + + + + + &Modify Table... + + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + + + + + Create &Index... + + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + + + + + &Preferences... + + + + + + Open the preferences window. + + + + + &DB Toolbar + + + + + Shows or hides the Database toolbar. + + + + + Ctrl+T + + + + + Open SQL file(s) + + + + + This button opens files containing SQL statements and loads them in new editor tabs + + + + + Sa&ve Project + + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + + + + + This button lets you open a DB Browser for SQLite project file + + + + + Ctrl+Shift+O + + + + + &Save Project As... + + + + + + + Save the project in a file selected in a dialog + + + + + Save A&ll + + + + + + + Save DB file, project file and opened SQL files + + + + + Ctrl+Shift+S + + + + + Browse Table + + + + + W&hat's This? + + + + + Ctrl+F4 + + + + + Shift+F1 + + + + + &About + + + + + &Recently opened + + + + + Open &tab + + + + + This button opens a new tab for the SQL editor + + + + + &Execute SQL + + + + + Execute all/selected SQL + + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + + + + + Ctrl+Return + + + + + + + Save SQL file + + + + + &Load Extension... + + + + + + Execute current line + + + + + Execute line + + + + + This button executes the SQL statement present in the current editor line + + + + + Shift+F5 + + + + + Export as CSV file + + + + + Export table as comma separated values file + + + + + &Wiki + + + + + F1 + + + + + Bug &Report... + + + + + Feature Re&quest... + + + + + Web&site + + + + + &Donate on Patreon... + + + + + + Save the current session to a file + + + + + Open &Project... + + + + + + Load a working session from a file + + + + + &Attach Database... + + + + + + Add another database file to the current database connection + + + + + This button lets you add another database file to the current database connection + + + + + &Set Encryption... + + + + + + Save SQL file as + + + + + This button saves the content of the current SQL editor tab to a file + + + + + &Browse Table + + + + + Copy Create statement + + + + + Copy the CREATE statement of the item to the clipboard + + + + + SQLCipher &FAQ + + + + + Opens the SQLCipher FAQ in a browser window + + + + + Table(&s) to JSON... + + + + + Export one or more table(s) to a JSON file + + + + + Open Data&base Read Only... + + + + + Open an existing database file in read only mode + + + + + Save results + + + + + Save the results view + + + + + This button lets you save the results of the last executed query + + + + + + Find text in SQL editor + + + + + Find + + + + + This button opens the search bar of the editor + + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + + + + + Find or replace + + + + + This button opens the find/replace dialog for the current editor tab + + + + + Ctrl+H + + + + + Export to &CSV + + + + + Save as &view + + + + + Save as view + + + + + Shows or hides the Project toolbar. + + + + + Extra DB Toolbar + + + + + New In-&Memory Database + + + + + Drag && Drop Qualified Names + + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + + + + + Drag && Drop Enquoted Names + + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + + + + + &Integrity Check + + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + + + + + &Foreign-Key Check + + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + + + + + &Quick Integrity Check + + + + + Run a quick integrity check over the open DB + + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + + + + + &Optimize + + + + + Attempt to optimize the database + + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + + + + + + Print + + + + + Print text from current SQL editor tab + + + + + Open a dialog for printing the text in the current SQL editor tab + + + + + + Ctrl+P + + + + + Print the structure of the opened database + + + + + Open a dialog for printing the structure of the opened database + + + + + Un/comment block of SQL code + + + + + Un/comment block + + + + + Comment or uncomment current line or selected block of code + + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + + + + + Ctrl+/ + + + + + Stop SQL execution + + + + + Stop execution + + + + + Stop the currently running SQL script + + + + + Ctrl+L + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Ctrl+E + + + + + Window Layout + + + + + Reset Window Layout + + + + + Alt+0 + + + + + Simplify Window Layout + + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + + + + + Dock Windows at Left Side + + + + + Dock Windows at Top + + + + + The database is currenctly busy. + + + + + Click here to interrupt the currently running query. + + + + + Encrypted + + + + + Database is encrypted using SQLCipher + + + + + Read only + + + + + Database file is read only. Editing the database is disabled. + + + + + Database encoding + + + + + + Choose a database file + + + + + Could not open database file. +Reason: %1 + + + + + + + Choose a filename to save under + + + + + In-Memory database + + + + + Could not open project file for writing. +Reason: %1 + + + + + Project saved to file '%1' + + + + + Rename Tab + + + + + Duplicate Tab + + + + + Close Tab + + + + + Opening '%1'... + + + + + There was an error opening '%1'... + + + + + Value is not a valid URL or filename: %1 + + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + + + + + Are you sure you want to delete the view '%1'? + + + + + Are you sure you want to delete the trigger '%1'? + + + + + Are you sure you want to delete the index '%1'? + + + + + Error: could not delete the table. + + + + + Error: could not delete the view. + + + + + Error: could not delete the trigger. + + + + + Error: could not delete the index. + + + + + Message from database engine: +%1 + + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + + + + + Error checking foreign keys after table modification. The changes will be reverted. + + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + + + + + Edit View %1 + + + + + Edit Trigger %1 + + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + + + + + -- EXECUTING SELECTION IN '%1' +-- + + + + + -- EXECUTING LINE IN '%1' +-- + + + + + -- EXECUTING ALL IN '%1' +-- + + + + + %1 rows returned in %2ms + + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + + + + + Execution finished with errors. + + + + + Execution finished without errors. + + + + + Choose text files + + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + + + + + Choose a file to import + + + + + Opened '%1' in read-only mode from recent file list + + + + + Opened '%1' from recent file list + + + + + &%1 %2%3 + + + + + (read only) + + + + + Open Database or Project + + + + + Attach Database... + + + + + Import CSV file(s)... + + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + + + + + + Do you want to save the changes made to SQL tabs in a new project file? + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + + + + + Do you want to save the changes made to the SQL file %1? + + + + + Text files(*.sql *.txt);;All files(*) + + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + + + + + Do you want to save the changes made to the project file '%1'? + + + + + + At line %1: + + + + + Result: %1 + + + + + Result: %2 + + + + + File %1 already exists. Please choose a different name. + + + + + Error importing data: %1 + + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + + + + + Import completed. + + + + + Delete View + + + + + Modify View + + + + + Delete Trigger + + + + + Modify Trigger + + + + + Delete Index + + + + + Modify Index + + + + + Modify Table + + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + + + + + Select SQL file to open + + + + + Select file name + + + + + Select extension file + + + + + Extension successfully loaded. + + + + + Error loading extension: %1 + + + + + Could not find resource file: %1 + + + + + + Don't show again + + + + + New version available. + + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + + + + + Choose a project file to open + + + + + DB Browser for SQLite project file (*.sqbpro) + + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + + + + + Collation needed! Proceed? + + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + + + + + creating collation + + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + + + + + Please specify the view name + + + + + There is already an object with that name. Please choose a different name. + + + + + View successfully created. + + + + + Error creating view: %1 + + + + + This action will open a new SQL tab for running: + + + + + This action will open a new SQL tab with the following statements for you to edit and run: + + + + + Press Help for opening the corresponding SQLite reference page. + + + + + Busy (%1) + + + + + NullLineEdit + + + Set to NULL + + + + + Alt+Del + + + + + PlotDock + + + Plot + + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + + + + + Columns + + + + + X + + + + + Y1 + + + + + Y2 + + + + + Axis Type + + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + + + + + Line type: + + + + + + None + + + + + Line + + + + + StepLeft + + + + + StepRight + + + + + StepCenter + + + + + Impulse + + + + + Point shape: + + + + + Cross + + + + + Plus + + + + + Circle + + + + + Disc + + + + + Square + + + + + Diamond + + + + + Star + + + + + Triangle + + + + + TriangleInverted + + + + + CrossSquare + + + + + PlusSquare + + + + + CrossCircle + + + + + PlusCircle + + + + + Peace + + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + + + + + Save current plot... + + + + + + Load all data and redraw plot + + + + + Copy + + + + + Print... + + + + + Show legend + + + + + Stacked bars + + + + + Date/Time + + + + + Date + + + + + Time + + + + + + Numeric + + + + + Label + + + + + Invalid + + + + + + + Row # + + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + + + + + Choose an axis color + + + + + Choose a filename to save under + + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + + + + + Loading all remaining data for this table took %1ms. + + + + + PreferencesDialog + + + Preferences + + + + + &General + + + + + Default &location + + + + + Remember last location + + + + + Always use this location + + + + + Remember last location for session only + + + + + + + ... + + + + + Lan&guage + + + + + Toolbar style + + + + + + + + + Only display the icon + + + + + + + + + Only display the text + + + + + + + + + The text appears beside the icon + + + + + + + + + The text appears under the icon + + + + + + + + + Follow the style + + + + + + + + + + + + + enabled + + + + + Automatic &updates + + + + + DB file extensions + + + + + Manage + + + + + Show remote options + + + + + &Database + + + + + Database &encoding + + + + + Open databases with foreign keys enabled. + + + + + &Foreign keys + + + + + Remove line breaks in schema &view + + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + + + + + Prefetch block si&ze + + + + + SQ&L to execute after opening database + + + + + Default field type + + + + + Main Window + + + + + Database Structure + + + + + Browse Data + + + + + Execute SQL + + + + + Edit Database Cell + + + + + When this value is changed, all the other color preferences are also set to matching colors. + + + + + Follow the desktop style + + + + + Dark style + + + + + Application style + + + + + This sets the font size for all UI elements which do not have their own font size option. + + + + + Font size + + + + + Database structure font size + + + + + Data &Browser + + + + + Font + + + + + &Font + + + + + Font si&ze + + + + + Content + + + + + Symbol limit in cell + + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + + + + + Threshold for completion and calculation on selection + + + + + Show images in cell + + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + + + + + Field display + + + + + Displayed &text + + + + + Binary + + + + + NULL + + + + + Regular + + + + + + + + + + Click to set this color + + + + + Text color + + + + + Background color + + + + + Preview only (N/A) + + + + + Filters + + + + + Escape character + + + + + Delay time (&ms) + + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + + + + + &SQL + + + + + Settings name + + + + + Context + + + + + Colour + + + + + Bold + + + + + Italic + + + + + Underline + + + + + Keyword + + + + + Function + + + + + Table + + + + + Comment + + + + + Identifier + + + + + String + + + + + Current line + + + + + Background + + + + + Foreground + + + + + SQL editor &font + + + + + SQL &editor font size + + + + + SQL &results font size + + + + + Tab size + + + + + &Wrap lines + + + + + Never + + + + + At word boundaries + + + + + At character boundaries + + + + + At whitespace boundaries + + + + + &Quotes for identifiers + + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + + + + + "Double quotes" - Standard SQL (recommended) + + + + + `Grave accents` - Traditional MySQL quotes + + + + + [Square brackets] - Traditional MS SQL Server quotes + + + + + Code co&mpletion + + + + + Keywords in &UPPER CASE + + + + + When set, the SQL keywords are completed in UPPER CASE letters. + + + + + Error indicators + + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + + + + + Hori&zontal tiling + + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + + + + + Close button on tabs + + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + + + + + &Extensions + + + + + Select extensions to load for every database: + + + + + Add extension + + + + + Remove extension + + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + + + + + Disable Regular Expression extension + + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + + + + + Allow loading extensions from SQL code + + + + + Remote + + + + + Your certificates + + + + + File + + + + + + Subject CN + + + + + Subject Common Name + + + + + Issuer CN + + + + + Issuer Common Name + + + + + + Valid from + + + + + + Valid to + + + + + + Serial number + + + + + CA certificates + + + + + Common Name + + + + + Subject O + + + + + Organization + + + + + Clone databases into + + + + + Proxy + + + + + Configure + + + + + + Choose a directory + + + + + The language will change after you restart the application. + + + + + Select extension file + + + + + Extensions(*.so *.dylib *.dll);;All files(*) + + + + + Import certificate file + + + + + No certificates found in this file. + + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + + + + + ProxyDialog + + + Proxy Configuration + + + + + Pro&xy Type + + + + + Host Na&me + + + + + Port + + + + + Authentication Re&quired + + + + + &User Name + + + + + Password + + + + + None + + + + + System settings + + + + + HTTP + + + + + Socks v5 + + + + + QObject + + + All files (*) + + + + + Error importing data + + + + + from record number %1 + + + + + . +%1 + + + + + Importing CSV file... + + + + + Cancel + + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + + + + + Left + + + + + Right + + + + + Center + + + + + Justify + + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + + + + + DB Browser for SQLite Project Files (*.sqbpro) + + + + + SQL Files (*.sql) + + + + + All Files (*) + + + + + Text Files (*.txt) + + + + + Comma-Separated Values Files (*.csv) + + + + + Tab-Separated Values Files (*.tsv) + + + + + Delimiter-Separated Values Files (*.dsv) + + + + + Concordance DAT files (*.dat) + + + + + JSON Files (*.json *.js) + + + + + XML Files (*.xml) + + + + + Binary Files (*.bin *.dat) + + + + + SVG Files (*.svg) + + + + + Hex Dump Files (*.dat *.bin) + + + + + Extensions (*.so *.dylib *.dll) + + + + + RemoteCommitsModel + + + Commit ID + + + + + Message + + + + + Date + + + + + Author + + + + + Size + + + + + Authored and committed by %1 + + + + + Authored by %1, committed by %2 + + + + + RemoteDatabase + + + Error opening local databases list. +%1 + + + + + Error creating local databases list. +%1 + + + + + RemoteDock + + + Remote + + + + + Identity + + + + + DBHub.io + + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + + + + + Local + + + + + Current Database + + + + + Clone + + + + + User + + + + + Database + + + + + Branch + + + + + Commits + + + + + Commits for + + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + + + + + Back + + + + + Delete Database + + + + + Delete the local clone of this database + + + + + Open in Web Browser + + + + + Open the web page for the current database in your browser + + + + + Clone from Link + + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + + + + + Refresh + + + + + Reload all data and update the views + + + + + F5 + + + + + Clone Database + + + + + Open Database + + + + + Open the local copy of this database + + + + + Check out Commit + + + + + Download and open this specific commit + + + + + Check out Latest Commit + + + + + Check out the latest commit of the current branch + + + + + Save Revision to File + + + + + Saves the selected revision of the database to another file + + + + + Upload Database + + + + + Upload this database as a new commit + + + + + Push currently opened database to server + + + + + Select an identity to connect + + + + + Public + + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + + + + + Invalid URL: The host name does not match the host name of the current identity. + + + + + Invalid URL: No branch name specified. + + + + + Invalid URL: No commit ID specified. + + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + + + + + The database has unsaved changes. Are you sure you want to push it before saving? + + + + + The database you are trying to delete is currently opened. Please close it before deleting. + + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + + + + + RemoteLocalFilesModel + + + Name + + + + + Branch + + + + + Last modified + + + + + Size + + + + + Commit + + + + + File + + + + + RemoteModel + + + Name + + + + + Commit + + + + + Last modified + + + + + Size + + + + + Size: + + + + + Last Modified: + + + + + Licence: + + + + + Default Branch: + + + + + RemoteNetwork + + + Choose a location to save the file + + + + + Error opening remote file at %1. +%2 + + + + + Error: Invalid client certificate specified. + + + + + Please enter the passphrase for this client certificate in order to authenticate. + + + + + Cancel + + + + + Uploading remote database to +%1 + + + + + Downloading remote database from +%1 + + + + + + Error: The network is not accessible. + + + + + Error: Cannot open the file for sending. + + + + + RemotePushDialog + + + Push database + + + + + Database na&me to push to + + + + + Commit message + + + + + Database licence + + + + + Public + + + + + Branch + + + + + Force push + + + + + Username + + + + + Database will be public. Everyone has read access to it. + + + + + Database will be private. Only you have access to it. + + + + + Use with care. This can cause remote commits to be deleted. + + + + + RunSql + + + Execution aborted by user + + + + + , %1 rows affected + + + + + query executed successfully. Took %1ms%2 + + + + + executing query + + + + + SelectItemsPopup + + + A&vailable + + + + + Sele&cted + + + + + SqlExecutionArea + + + Form + + + + + Find previous match [Shift+F3] + + + + + Find previous match with wrapping + + + + + Shift+F3 + + + + + The found pattern must be a whole word + + + + + Whole Words + + + + + Text pattern to find considering the checks in this frame + + + + + Find in editor + + + + + The found pattern must match in letter case + + + + + Case Sensitive + + + + + Find next match [Enter, F3] + + + + + Find next match with wrapping + + + + + F3 + + + + + Interpret search pattern as a regular expression + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Regular Expression + + + + + + Close Find Bar + + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + + + + + Results of the last executed statements + + + + + This field shows the results and status codes of the last executed statements. + + + + + Couldn't read file: %1. + + + + + + Couldn't save file: %1. + + + + + Your changes will be lost when reloading it! + + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + + + + + (X) ltrim(X) removes spaces from the left side of X. + + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + + + + + (X) rtrim(X) removes spaces from the right side of X. + + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + + + + + (X) trim(X) removes spaces from both ends of X. + + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + + + + + + + + (timestring,modifier,modifier,...) + + + + + (format,timestring,modifier,modifier,...) + + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + + + + + SqliteTableModel + + + reading rows + + + + + loading... + + + + + References %1(%2) +Hold %3Shift and click to jump there + + + + + Error changing data: +%1 + + + + + retrieving list of columns + + + + + Fetching data... + + + + + + Cancel + + + + + TableBrowser + + + Browse Data + + + + + &Table: + + + + + Select a table to browse data + + + + + Use this list to select a table to be displayed in the database view + + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + + + + + Text pattern to find considering the checks in this frame + + + + + Find in table + + + + + Find previous match [Shift+F3] + + + + + Find previous match with wrapping + + + + + Shift+F3 + + + + + Find next match [Enter, F3] + + + + + Find next match with wrapping + + + + + F3 + + + + + The found pattern must match in letter case + + + + + Case Sensitive + + + + + The found pattern must be a whole word + + + + + Whole Cell + + + + + Interpret search pattern as a regular expression + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Regular Expression + + + + + + Close Find Bar + + + + + Text to replace with + + + + + Replace with + + + + + Replace next match + + + + + + Replace + + + + + Replace all matches + + + + + Replace all + + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + + + + + |< + + + + + Scroll one page upwards + + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + + + + + < + + + + + 0 - 0 of 0 + + + + + Scroll one page downwards + + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + + + + + > + + + + + Scroll to the end + + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + + + + + >| + + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + + + + + Go to: + + + + + Enter record number to browse + + + + + Type a record number in this area and click the Go to: button to display the record in the database view + + + + + 1 + + + + + Show rowid column + + + + + Toggle the visibility of the rowid column + + + + + Unlock view editing + + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + + + + + Edit display format + + + + + Edit the display format of the data in this column + + + + + + New Record + + + + + + Insert a new record in the current table + + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + + + + + + Delete Record + + + + + Delete the current record + + + + + + This button deletes the record or records currently selected in the table + + + + + + Insert new record using default values in browsed table + + + + + Insert Values... + + + + + + Open a dialog for inserting values in a new record + + + + + Export to &CSV + + + + + + Export the filtered data to CSV + + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + + + + + Save as &view + + + + + + Save the current filter, sort column and display formats as a view + + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + + + + + Save Table As... + + + + + + Save the table as currently displayed + + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + + + + + Hide column(s) + + + + + Hide selected column(s) + + + + + Show all columns + + + + + Show all columns that were hidden + + + + + + Set encoding + + + + + Change the encoding of the text in the table cells + + + + + Set encoding for all tables + + + + + Change the default encoding assumed for all tables in the database + + + + + Clear Filters + + + + + Clear all filters + + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + + + + + Clear Sorting + + + + + Reset the order of rows to the default + + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + + + + + Print + + + + + Print currently browsed table data + + + + + Print currently browsed table data. Print selection if more than one cell is selected. + + + + + Ctrl+P + + + + + Refresh + + + + + Refresh the data in the selected table + + + + + This button refreshes the data in the currently selected table. + + + + + F5 + + + + + Find in cells + + + + + Open the find tool bar which allows you to search for values in the table view below. + + + + + + Bold + + + + + Ctrl+B + + + + + + Italic + + + + + + Underline + + + + + Ctrl+U + + + + + + Align Right + + + + + + Align Left + + + + + + Center Horizontally + + + + + + Justify + + + + + + Edit Conditional Formats... + + + + + Edit conditional formats for the current column + + + + + Clear Format + + + + + Clear All Formats + + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + + + + + + Font Color + + + + + + Background Color + + + + + Toggle Format Toolbar + + + + + Show/hide format toolbar + + + + + + This button shows or hides the formatting toolbar of the Data Browser + + + + + Select column + + + + + Ctrl+Space + + + + + Replace text in cells + + + + + Filter in any column + + + + + Ctrl+R + + + + + %n row(s) + + + + + + + , %n column(s) + + + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + + + + + Conditional formats for "%1" + + + + + determining row count... + + + + + %1 - %2 of >= %3 + + + + + %1 - %2 of %3 + + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + + + + + Delete Records + + + + + Duplicate records + + + + + Duplicate record + + + + + Ctrl+" + + + + + Adjust rows to contents + + + + + Error deleting record: +%1 + + + + + Please select a record first + + + + + There is no filter set for this table. View will not be created. + + + + + Please choose a new encoding for all tables. + + + + + Please choose a new encoding for this table. + + + + + %1 +Leave the field empty for using the database encoding. + + + + + This encoding is either not valid or not supported. + + + + + %1 replacement(s) made. + + + + + VacuumDialog + + + Compact Database + + + + + Warning: Compacting the database will commit all of your changes. + + + + + Please select the databases to co&mpact: + + + + diff --git a/ConfigFiles/translations/sqlb_fr.qm b/ConfigFiles/translations/sqlb_fr.qm new file mode 100644 index 0000000..589b9f6 Binary files /dev/null and b/ConfigFiles/translations/sqlb_fr.qm differ diff --git a/ConfigFiles/translations/sqlb_fr.ts b/ConfigFiles/translations/sqlb_fr.ts new file mode 100644 index 0000000..031adce --- /dev/null +++ b/ConfigFiles/translations/sqlb_fr.ts @@ -0,0 +1,7039 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + À propos de DB-Browser pour SQLite + + + + Version + Version + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB Browser pour SQLite est un logiciel libre, open-source utilisé pour créer, concevoir et modifier des Bases de Données SQLite.</p><p>Ce programme vous est proposé sous une double licence : Mozilla Public License Version 2 et GNU General Public License Version 3 ou suivante. Vous pouvez le modifier ou le redistribuer en respectant les conditions de ces licences.</p><p>Voir : <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> et <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> pour plus de détails</p><p>Pour plus d'information concernant ce programme, visitez notre site Internet : <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">Ce logiciel utilise le GPL/LGPL Qt Toolkit fourni par </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>Voir : </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> pour les conditions de licence et toute autre information.</span></p><p><span style=" font-size:small;">Il utilise le jeu d&apos;icones Silk créé par Mark James disponible selon la licence Creative Commons Attribution 2.5 and 3.0.<br/>Voir </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> pour plus de details.</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + Ajouter un nouvel enregistrement + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + Saisissez les valeurs en tenant compte des contraintes. Les champs en gras sont obligatoires. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + Dans la colonne Valeur, vous pouvez spécifier la valeur du champ identifié dans la colonne Nom. La colonne Type indique le type du champ. Les valeurs par défaut sont affichées dans le même style que les valeurs NULL. + + + + Name + Nom + + + + Type + Type + + + + Value + Valeur + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + Valeurs à insérer. Les valeurs par défaut pré-remplies sont insérées automatiquement à moins qu'elles ne soient modifiées. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + Lorsque vous éditez les valeurs dans le cadre supérieur, la requête SQL d'insersion du nouvel enregistrement est affichée ici. Vous pouvez l'éditer manuellement avant de l'enregistrer. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Enregistrer</span> soumettra l'instruction SQL affichée à la Base de Données pour créer le nouvel enregistrement..</p><p><span style=" font-weight:600;">Restaurer les valeurs par défaut</span> restaurera les valeurs par défaut dans la <span style=" font-weight:600;">colonne</span> Valeur.</p><p><span style=" font-weight:600;">Annuler</span> fermera cette boîte de dialogue sans exécuter la requête.</p></body></html> + + + + Auto-increment + + Incrément automatique + + + + + Unique constraint + + Contrainte unique + + + + + Check constraint: %1 + + Vérifier les contraintes : %1 + + + + + Foreign key: %1 + + Clé étrangère : %1 + + + + + Default value: %1 + + Valeur par défaut : %1 + + + + + Error adding record. Message from database engine: + +%1 + Erreur lors de l'ajout d'un enregistrement. Message du moteur de Base de Données : + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + Êtes-vous sûr de vouloir restaurer toutes les valeurs saisies à leurs valeurs par défaut ? + + + + Application + + + Possible command line arguments: + Arguments utilisables en ligne de commande : + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + Les options de commande -o/--option et -O/--save-option nécessitent un argument sous la forme groupe/paramètre=valeur + + + + Usage: %1 [options] [<database>|<project>] + + Usage: %1 [options] [<basededonnees>|<projet>] + + + + + -h, --help Show command line options + -h, --help Affiche les options utilisables de la ligne de commande + + + + -q, --quit Exit application after running scripts + -q, --quit Quitte l'application après l'exécution des scripts + + + + -s, --sql <file> Execute this SQL file after opening the DB + -s, --sql <fichier> Execute ce fichier SQL après avoir ouvert la BdD + + + + -t, --table <table> Browse this table after opening the DB + -t, --table <table> Parcourt cette table après avoir ouvert la BdD + + + + -R, --read-only Open database in read-only mode + -R, --read-only Ouvre la Base de Données en lectyure seule + + + + -o, --option <group>/<setting>=<value> + -o, --option <groupe>/<paramètre>=<valeur> + + + + Run application with this setting temporarily set to value + Lance l'application en utilisant temporairement la valeur de ce paramètre + + + + -O, --save-option <group>/<setting>=<value> + -O, --save-option <groupe>/<paramètre>=<valeur> + + + + Run application saving this value for this setting + Lance l'application en sauvegardant la valeur de ce paramètre + + + + -v, --version Display the current version + -v, --version Affiche la version de l'application + + + + <database> Open this SQLite database + <database> Ouvre cette Base de Données SQLite + + + + <project> Open this project file (*.sqbpro) + <projet> Ouvre ce fichier projet (*.sqbpro) + + + + The -s/--sql option requires an argument + L'option -s/--sql nécessite un argument + + + + The file %1 does not exist + Le fichier %1 n'existe pas + + + + The -t/--table option requires an argument + L'option -t/--table nécessite un argument + + + + Invalid option/non-existant file: %1 + Option invalide ou fichier %1 inexistant + + + + SQLite Version + Version de SQLite + + + + SQLCipher Version %1 (based on SQLite %2) + SQLCipher Version %1 (basé sur SQLite %2) + + + + DB Browser for SQLite Version %1. + DB Browser pour SQLite Version %1. + + + + Built for %1, running on %2 + Compilé pour %1, fonctionnant sur %2 + + + + Qt Version %1 + Version de Qt %1 + + + + CipherDialog + + + SQLCipher encryption + Chiffrement par SQLCipher + + + + &Password + Mot de &Passe + + + + &Reenter password + &Retaper le mot de passe + + + + Encr&yption settings + Para&mètre de chiffrement + + + + SQLCipher &3 defaults + SQLCipher &3 par défaut + + + + SQLCipher &4 defaults + SQLCipher &4 par défaut + + + + Custo&m + Pers&onnalisé + + + + Page si&ze + &Taille de page + + + + &KDF iterations + Itérations &KDF + + + + HMAC algorithm + Algorithme HMAC + + + + KDF algorithm + Algorithme KDF + + + + Plaintext Header Size + Taille En-tête texte en clair + + + + Passphrase + The button size is not large enought to handle the whole "french text", if #Passphrase must be translate + Phrase Secrète + + + + Raw key + Same comment as for Passphrase + Clé de Chiffrement + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + Veuillez définir une clé pour chiffrer la Base de Données. +Notez que si vous modifiez les autres paramètres, optionnels, vous devrez les ressaisir chaque fois que vous ouvrirez la Base de Données. +Laisser les champs Mot de passe à blanc pour désactiver le chiffrement. +Le processus de chiffrement peut prendre un certain temps. Vous devriez avoir une copie de sauvegarde de votre Base de Données ! +Les modifications non enregistrées seront appliquées avant la modification du chiffrement. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + Veuillez entrer la clé utilisée pour le chiffrement de la Base de Données. +Si d'autres paramètres ont été modifiés pour cette Base de Données, vous devrez aussi fournir ces informations. + + + + ColumnDisplayFormatDialog + + + Choose display format + Choisir un format d'affichage + + + + Display format + Format d'affichage + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + Choisissez le format d'affichage pour la colonne '%1'. +Il sera appliqué à chaque valeur avant son affichage. + + + + Default + Défaut + + + + Decimal number + Nombre décimal + + + + Exponent notation + Notation scientifique + + + + Hex blob + Blob Hexadécimal + + + + Hex number + Nombre Hexadécimal + + + + Apple NSDate to date + Apple NSDate vers date + + + + Java epoch (milliseconds) to date + Java epoch (milliseconds) en date + + + + .NET DateTime.Ticks to date + .NET DateTime.Ticks en date + + + + Julian day to date + Date jullienne vers Date + + + + Unix epoch to local time + Heure Unix epoch vers heure locale + + + + Date as dd/mm/yyyy + Date au format DD/MM/AAAA + + + + Lower case + Minuscule + + + + Custom display format must contain a function call applied to %1 + Le format d'affichage personnalisé doit contenir un appel de fonction appliqué à %1 + + + + Error in custom display format. Message from database engine: + +%1 + Erreur dans le format d'affichage personnalisé. Message du moteur de Base de Données : + +%1 + + + + Custom display format must return only one column but it returned %1. + Le format d'affichage personnalisé ne doit renvoyer qu'une seule colonne, mais il a renvoyé %1. + + + + Octal number + Nombre en Octal + + + + Round number + Nombre arrondi + + + + Unix epoch to date + Date Unix epoch en Date + + + + Upper case + Majuscule + + + + Windows DATE to date + Date Windows en Date + + + + Custom + Personnalisé + + + + CondFormatManager + + + Conditional Format Manager + Gestion des formats conditionnels + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + Cette fenêtre de dialogue permet de créer et de modifier des formats conditionnels. Chaque style de cellule sera sélectionné par la première condition remplie pour les données de cette cellule. Les formats conditionnels peuvent être déplacés vers le haut et vers le bas. Ceux des rangées supérieures ont la priorité sur ceux des rangées inférieures. La syntaxe des conditions est la même que celle des filtres et une condition vide s'applique à toutes les valeurs. + + + + Add new conditional format + Ajouter un nouveau format conditionnel + + + + &Add + &Ajouter + + + + Remove selected conditional format + Supprime le format conditionnel sélectionné + + + + &Remove + &Supprimer + + + + Move selected conditional format up + Déplace le format conditionnel vers le haut + + + + Move &up + &Monter + + + + Move selected conditional format down + Déplace le format conditionnel vers le bas + + + + Move &down + &Descendre + + + + Foreground + Avant Plan + + + + Text color + Couleur de texte + + + + Background + Arrière plan + + + + Background color + Couleur d'arrière plan + + + + Font + Police + + + + Size + Taille + + + + Bold + Gras + + + + Italic + Italique + + + + Underline + Souligné + + + + Alignment + Alignement + + + + Condition + Condition + + + + + Click to select color + Cliquer pour sélectionner une couleur + + + + Are you sure you want to clear all the conditional formats of this field? + Êtes-vous sûr de vouloir effacer tous les formats conditionnels de ce champ ? + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + Veuillez spécifier le nom de la Base de Données sous laquelle vous voulez accéder à la Base de Données attachée + + + + Invalid file format + Format de fichier invalide + + + + Do you want to save the changes made to the database file %1? + Voulez-vous enregistrer les changements effectués dans la Base de Données %1 ? + + + + Exporting database to SQL file... + Exporter la Base de Données dans un fichier SQL... + + + + + Cancel + Annuler + + + + Executing SQL... + Exécution du SQL... + + + + Action cancelled. + Action annulée. + + + + This database has already been attached. Its schema name is '%1'. + Cette Base de Données a déjà été attachée. Son nom de schéma est '%1'. + + + + Do you really want to close this temporary database? All data will be lost. + Voulez-vous vraiment fermer cette Base de Données temporaire ? Toutes les données seront perdues. + + + + Database didn't close correctly, probably still busy + La Base de Données ne s'est pas fermée correctement; Elle est probablement encore occupée + + + + The database is currently busy: + La Base de Données est actuellement occupée : + + + + Do you want to abort that other operation? + Voulez-vous annuler cette autre opération ? + + + + + No database file opened + Aucun fichier de Base de Données ouvert + + + + + Error in statement #%1: %2. +Aborting execution%3. + Erreur dans le traitement #%1 : %2. +Exécution de %3 abandonnée. + + + + + and rolling back + et annulation des changements + + + + didn't receive any output from %1 + n'a pas reçu toutes les sorties de %1 + + + + could not execute command: %1 + ne peut pas exécuter les commandes : %1 + + + + Cannot delete this object + Impossible de supprimer cet objet + + + + Cannot set data on this object + 170726 MVT Has to be checked in real context + Définition des données impossible pour cet objet + + + + + A table with the name '%1' already exists in schema '%2'. + Une table portant le nom " %1 " existe déjà dans le schéma " %2 ". + + + + No table with name '%1' exists in schema '%2'. + Il n'existe pas de table nommée " %1 " dans le schéma " %2 ". + + + + + Cannot find column %1. + La colonne %1 n'a pas été trouvée. + + + + Creating savepoint failed. DB says: %1 + La création du point de restauration a échoué. DB indique : %1 + + + + Renaming the column failed. DB says: +%1 + Le changement de nom de la colonne a échoué. DB indique : +%1 + + + + + Releasing savepoint failed. DB says: %1 + La libération du point de sauvegarde a échoué. DB indique : %1 + + + + Creating new table failed. DB says: %1 + La création d'une nouvelle table a échoué. DB indique : %1 + + + + Copying data to new table failed. DB says: +%1 + La copie des données dans une nouvelle table a échoué. DB indique : %1 + + + + Deleting old table failed. DB says: %1 + La suppression d'une ancienne table a échoué. DB indique : %1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + Erreur lors du changement de nom de la table %1 vers %2. +Message du moteur de Base de Données : +%3 + + + + could not get list of db objects: %1 + La liste des objets de la Base de Données ne peut être obtenue : %1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + La restauration de certains des objets associés à cette table a échoué. Cela est le plus souvent dû au changement du nom de certaines colonnes. Voici l'instruction SQL que vous pourrez corriger et exécuter manuellement : + + + + + + could not get list of databases: %1 + n'a pas pu obtenir la liste des bases de données : %1 + + + + Error loading extension: %1 + Erreur lors du chargement de l'extension %1 + + + + could not get column information + 170726 MVT Has to be checked in real context + ne peut obtenir les informations sur la colonne + + + + Error setting pragma %1 to %2: %3 + Erreur dans les paramètres des pragma %1 à %2 : %3 + + + + File not found. + Fichier non trouvé. + + + + DbStructureModel + + + Name + Nom + + + + Object + Objet + + + + Type + Type + + + + Schema + Schéma + + + + Database + Base de Données + + + + Browsables + Consultables + + + + All + Tout + + + + Temporary + Temporaire + + + + Tables (%1) + Tables (%1) + + + + Indices (%1) + Index (%1) + + + + Views (%1) + Vues (%1) + + + + Triggers (%1) + Déclencheurs (%1) + + + + EditDialog + + + Edit database cell + Éditer le contenu d'une cellule + + + + Mode: + Mode : + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + Voici la liste des modes pris en charge par l'éditeur de cellules. Choisissez un mode d'affichage ou d'édition des données de la cellule courante. + + + + RTL Text + Remark : there is not acronym in french for Right to Left Text (DàG : Droite à Gauche ?). If DçG is not correct, we should use the HTML dir parameter RTL + Texte DàG + + + + + Image + Image + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + Ajuster automatiquement le mode éditeur au type de données chargé + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + Ce bouton à cocher active ou désactive le changement automatique du mode éditeur. Lorsqu'une nouvelle cellule est sélectionnée ou de nouvelles données sont importées et que la commutation automatique est activée, le mode s'adapte au type de données détecté. Vous pouvez ensuite changer le mode éditeur manuellement. Si vous souhaitez conserver ce mode de commutation manuelle pendant que vous vous déplacez dans les cellules, éteignez le bouton. + + + + Auto-switch + Auto-switch + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + Les modes éditeur de texte vous permettent de modifier du texte brut, ainsi que des données JSON ou XML avec une mise en évidence de la syntaxe, un formatage automatique et une validation avant l'enregistrement. + +Les erreurs sont signalées par un trait de soulignement rouge. + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + Cet éditeur Qt est utilisé pour les scripts écrits de droite à gauche. Ils ne sont pas pris en charge par l'éditeur de texte par défaut. La présence de caractères de droite à gauche est détectée et ce mode d'édition est automatiquement sélectionné. + + + + Open preview dialog for printing the data currently stored in the cell + Ouvrir la fenêtre de prévisualisation pour imprimer les données actuellement stockées dans la cellule + + + + Auto-format: pretty print on loading, compact on saving. + Auto-format : formater au chargement, compacter à l'enregistrement. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + Lorsqu'elle est activée, la fonction de formatage automatique met en forme les données lors du chargement, transforme le texte en lignes et ajoute des retraits pour une lisibilité maximale. Lors de la sauvegarde des données, la fonction de formatage automatique compacte les données en supprimant les fins des lignes et les espaces inutiles. + + + + Word Wrap + Coupure des mots + + + + Wrap lines on word boundaries + Coupe les lignes aux limites des mots + + + + + Open in default application or browser + Ouvrir dans l'application ou le navigateur par défaut + + + + Open in application + Ouvrir dans l'application + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + La valeur est interprétée comme étant un fichier ou une URL. Elle sera ouverte dans l'application ou le navigateur web par défaut. + + + + Save file reference... + Enregistrer la référence du fichier... + + + + Save reference to file + Enregistre la référence au fichier + + + + + Open in external application + Ouvrir dans une application externe + + + + Autoformat + Format Automatique + + + + &Export... + &Exporter... + + + + + &Import... + &Importer... + + + + + Import from file + Importer depuis un fichier + + + + + Opens a file dialog used to import any kind of data to this database cell. + Ouvre une boîte de dialogue pour importer n'importe quel type de données dans cette cellule de Base de Données. + + + + Export to file + Exporter vers un fichier + + + + Opens a file dialog used to export the contents of this database cell to a file. + Ouvrir la boîte de dialogue pour exporter le contenu de cette cellule de la Base de Données vers un fichier. + + + + + Print... + Imprimer... + + + + Open preview dialog for printing displayed image + Ouvrir un apperçu de l'image pour son impression + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + Ouvrir un apperçu du texte avant son impression + + + + Copy Hex and ASCII + Copier l'Hex et l'ASCII + + + + Copy selected hexadecimal and ASCII columns to the clipboard + Copier les colonnes hexadécimales et ASCII sélectionnées dans le presse-papiers + + + + Ctrl+Shift+C + Ctrl+Maj+C + + + + Set as &NULL + Définir comme &NULL + + + + Apply data to cell + Appliquer les données à la cellule + + + + This button saves the changes performed in the cell editor to the database cell. + Ce bouton permet d'enregistrer les modifications effectuées dans l'éditeur de cellule dans la cellule de Base de Données. + + + + Apply + Appliquer + + + + Text + Texte + + + + Binary + Binaire + + + + Erases the contents of the cell + Effacer le contenu de la cellule + + + + This area displays information about the data present in this database cell + Cette zone affiche des informations à propos des données contenues dans la cellule de la Base de Données + + + + Type of data currently in cell + Type actuel des données dans la cellule + + + + Size of data currently in table + Taille actuelle des données dans la table + + + + Choose a filename to export data + Choisir un nom de fichier pour exporter les données + + + + Type of data currently in cell: %1 Image + Type actuel des données de la cellule. Image %1 + + + + %1x%2 pixel(s) + %1x%2 pixel(s) + + + + Type of data currently in cell: NULL + Type actuel des données de la cellule : NULL + + + + + Type of data currently in cell: Text / Numeric + Type actuel des données de la cellule : Texte / Numérique + + + + + Image data can't be viewed in this mode. + L'image ne peut être affichée dans ce mode. + + + + + Try switching to Image or Binary mode. + Essayez de basculer vers le mode Image ou le mode Binaire. + + + + + Binary data can't be viewed in this mode. + Les données Binaires ne peuvent être affichées dans ce mode. + + + + + Try switching to Binary mode. + Essayez de basculer vers le mode Binaire. + + + + Couldn't save file: %1. + Le fichier %1 ne peut être sauvegardé. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + Les données ont été enregistrées dans un fichier temporaire. Elles ont été ouvertes avec l'application par défaut. Vous pouvez maintenant modifier le fichier et, lorsque vous serez prêt, appliquer les nouvelles données enregistrées à l'éditeur de cellules ou annuler les modifications. + + + + + Image files (%1) + Fichiers image (%1) + + + + Binary files (*.bin) + Fichiers Binaires (*.bin) + + + + Choose a file to import + Choisir un fichier à importer + + + + %1 Image + %1 Image + + + + Invalid data for this mode + Les données sont invalides pour ce mode + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + La cellule contient des données %1 invalides. Raison : %2. Vouslez-vous vraiment l'appliquer à la cellule ? + + + + + + %n character(s) + + %n caractère + %n caractères + + + + + Type of data currently in cell: Valid JSON + Type de données actuellement dans la cellule : JSON valide + + + + Type of data currently in cell: Binary + Type actuel des données de la cellule : Binaire + + + + + %n byte(s) + + %n octet + %n octets + + + + + EditIndexDialog + + + &Name + &Nom + + + + Order + Ordre + + + + &Table + &Table + + + + Edit Index Schema + Éditer le schéma d'index + + + + &Unique + &Unique + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + Pour restreindre l'index à un sous-ensemble de la table, vous pouvez spécifier une clause WHERE ici. Elle sélectionnera le sous-ensemble de la table qui sera indexé + + + + Partial inde&x clause + Clause d'inde&x partiel + + + + Colu&mns + &Colonnes + + + + Table column + Colonne de table + + + + Type + Type + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + 170726 MVT Has to be checked in real context + Ajouter une nouvelle expression de colonne à l'index. Les expressions de colonnes contiennent des expressions SQL plutôt que des noms de colonnes. + + + + Index column + Colonne d'Index + + + + Deleting the old index failed: +%1 + La suppression de l'ancien index a échoué : +%1 + + + + Creating the index failed: +%1 + La création de l'index a échoué : +%1 + + + + EditTableDialog + + + Edit table definition + Éditer la définition de la table + + + + Table + Table + + + + Advanced + Avancé + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + Faire cette table "SANS RowId". Positionner cette option nécessite un champ de type INTEGER défini comme clé primaire ET pour lequel l'incrément automatique a été désactivé. + + + + Without Rowid + Sans RowId + + + + Fields + Champs + + + + Database sche&ma + Sché&ma de la Base de Données + + + + Add + Ajouter + + + + Remove + Supprimer + + + + Move to top + Monter au début + + + + Move up + Monter + + + + Move down + Descendre + + + + Move to bottom + Descendre à la fin + + + + + Name + Nom + + + + + Type + Type + + + + NN + NN + + + + Not null + Non-Null + + + + PK + CP + + + + Primary key + Clé primaire + + + + AI + IA + + + + Autoincrement + Incrément automatique + + + + U + U + + + + + + Unique + Unique + + + + Default + Défaut + + + + Default value + Valeur par défaut + + + + + + Check + Vérifier + + + + Check constraint + Vérifier les contraintes + + + + Collation + Séquence + + + + + + Foreign Key + Clé étrangère + + + + Constraints + Contraintes + + + + Add constraint + Ajouter une contrainte + + + + Remove constraint + Supprimer une contrainte + + + + Columns + Colonnes + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Attention : </span>Il y a quelque chose dans la définition de cette table que notre analyseur syntaxique n'a pas complètement compris. La modification et l'enregistrement de cette table peuvent créer des problèmes.</p></body></html> + + + + + Primary Key + Clé primaire + + + + Add a primary key constraint + Ajoute une clé primaire à la contrainte + + + + Add a foreign key constraint + Ajoute une clé étrangère à la contrainte + + + + Add a unique constraint + Ajoute une contrainte unique + + + + Add a check constraint + Ajouter une contrainte de contrôle + + + + Error creating table. Message from database engine: +%1 + Erreur lors de la création de la table. Message du moteur de la Base de Données : +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Il existe déjà un champ avec ce nom. Veuillez le renommer avant ou choisir un autre nom pour ce champ. + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + Une table ne peut avoir qau'une seule clé primaire. Veuillez modifier la clé primaire existante à la place. + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + Cette colonne est référencée dans une clé étrangère dans la table %1. Son nom ne peut être changé. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + Il existe au moins un enregistrement avec ce champ autorisant des valeurs nulles (NULL). Il est donc impossible de définir cet indicateur. Veuillez modifier les données de la table au préalable. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + Il existe au moins un enregistrement avec une valeur qui n'est pas un nombre entier dans ce champ. Il est donc impossible de définir l'indicateur AI (Incrément automatique) sur ce champ. Veuillez modifier les données de la table au préalable. + + + + Column '%1' has duplicate data. + + La colonne %1 a des des données en double. + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + Il est donc impossible d'activer l'indicateur "Unique". Veuillez supprimer les données en double, cela vous permettra d'activer l'indicateur "Unique". + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + Êtes-vous sûr de vouloir supprimer le champ "%1" ? +Toutes les données contenues dans ce champ seront perdues. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + Veuillez ajouter un champ ayant les caractéristiques suivant avant de positionner l'option Sans RowId : +- Défini comme clé primaire ; +- Incrément automatique désactivé + + + + ExportDataDialog + + + Export data as CSV + Exporter au format CSV + + + + Tab&le(s) + &Table(s) + + + + Colu&mn names in first line + Nom des &Col. en 1ère ligne + + + + Fie&ld separator + &Séparateur de champ + + + + , + , + + + + ; + ; + + + + Tab + Tabulation + + + + | + | + + + + + + Other + Autre + + + + &Quote character + T&ype de guillemet + + + + " + " + + + + ' + ' + + + + New line characters + Saut de ligne + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + Formatter + + + + + Could not open output file: %1 + Le fichier de destination %1 ne peut être ouvert + + + + + Choose a filename to export data + Choisir un nom de fichier pour exporter les données + + + + Export data as JSON + Exporter au format JSON + + + + exporting CSV + Exporter au format CSV + + + + exporting JSON + Exporter au format JSON + + + + Please select at least 1 table. + Veuillez sélectionner au moins une table. + + + + Choose a directory + Choisir un répertoire + + + + Export completed. + Export terminé. + + + + ExportSqlDialog + + + Export SQL... + Same as defined in English... But converted to uniformize with other dialog boxes. + Exporter au format SQL... + + + + Tab&le(s) + Tab&le(s) + + + + Select All + Sélectionner tout + + + + Deselect All + Déselectionner tout + + + + &Options + &Options + + + + Keep column names in INSERT INTO + Conserver les noms des colonnes dans INSERT INTO + + + + Multiple rows (VALUES) per INSERT statement + Plusieurs enregistrements (VALUES) par INSERT + + + + Export everything + Exporter tout + + + + Export schema only + Exporter uniquement le schéma + + + + Export data only + Exporter uniquement les données + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + Conserver l'ancien schéma (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Écraser l'ancien schéma (DROP TABLE, puis CREATE TABLE) + + + + Please select at least one table. + Veuillez sélectionner au moins une table. + + + + Choose a filename to export + Choisir un nom de fichier pour l'export + + + + Export completed. + Export terminé. + + + + Export cancelled or failed. + L'export a été annulé ou a échoué. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + Rechercher... + + + + Find and Replace... + Chercher et remplacer... + + + + Print... + Imprimer... + + + + ExtendedTableWidget + + + Use as Exact Filter + Utiliser comme filtre exact + + + + Containing + Contenant + + + + Not containing + Ne contenant pas + + + + Not equal to + Différent de + + + + Greater than + Plus grand que + + + + Less than + Plus petit que + + + + Greater or equal + Plus grand ou égal à + + + + Less or equal + Plus petit ou égal à + + + + Between this and... + Entre ceci et... + + + + Regular expression + Expression régulière + + + + Edit Conditional Formats... + Éditer les formats conditionnels... + + + + Set to NULL + Définir comme NULL + + + + Copy + Copier + + + + Copy with Headers + Copier avec les Entêtes + + + + Copy as SQL + Copier comme du SQL + + + + Paste + Coller + + + + Print... + Imprimer... + + + + Use in Filter Expression + Utiliser dans l'expression du Filtre + + + + Alt+Del + Alt+Supp + + + + Ctrl+Shift+C + Ctrl+Maj+C + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + Le contenu du presse-papier est plus grand que la plage sélectionnée. +Voulez-vous poursuivre l'insertion malgré tout ? + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>Toutes les données n'ont pas été chargées. <b>Voulez-vous charger toutes les données avant de sélectionner toutes les lignes ? </b><p><p>Répondre <b>Non</b> signifie qu'aucune autre donnée ne sera chargée et que la sélection ne sera pas effectuée.<br/>Répondre <b>Oui</b> peut prendre un certain temps pendant le chargement des données mais la sélection sera complète.</p>Avertissement : Le chargement de toutes les données peut nécessiter une grande quantité de mémoire pour les grandes tables. + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + La sélection ne peut être à NULL. La colonne %1 à une contrainte NOT NULL. + + + + FileExtensionManager + + + File Extension Manager + Gestionnaire d'extension de fichier + + + + &Up + &Monter + + + + &Down + &Descendre + + + + &Add + &Ajouter + + + + &Remove + &Supprimer + + + + + Description + Description + + + + Extensions + Extensions + + + + *.extension + *.extension + + + + FilterLineEdit + + + Filter + Filtre + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + Ces champs de saisie vous permettent d'effectuer des filtres rapides dans le tableau actuellement sélectionné. +Par défaut, les lignes contenant le texte de saisie sont filtrées. +Les opérateurs suivants sont également pris en charge : +% Joker (métacaractère) +> Supérieur à +< Inférieur à +>= Supérieur ou Égal à +<= Inférieur oiu Égal à += Égal à : correspondance exacte +<> Différent de: correspondance inverse exacte +x~y Fourchette : valeurs entre x et y +/regexp/ Valeurs correspondant à l'expression régulière + + + + Clear All Conditional Formats + Effacer tous les Formats Conditionnels + + + + Use for Conditional Format + Utilisé pour le Format Conditionnel + + + + Edit Conditional Formats... + Editer un Format Conditionnel... + + + + Set Filter Expression + Définir l'expression du filtre + + + + What's This? + Qu'est-ce que c'est ? + + + + Is NULL + Est NULL + + + + Is not NULL + Est non NULL + + + + Is empty + Est Vide + + + + Is not empty + Est non Vide + + + + Not containing... + Ne contenant pas... + + + + Equal to... + Egal à... + + + + Not equal to... + Différent de... + + + + Greater than... + Plus grand que... + + + + Less than... + Plus petit que... + + + + Greater or equal... + Plus grand ou égal à... + + + + Less or equal... + Plus petit ou égal à... + + + + In range... + Peut être aussi traduit par "dans la plage..." ou "Entre..." + Entre les valeurs... + + + + Regular expression... + Expression régulière... + + + + FindReplaceDialog + + + Find and Replace + Chercher et remplacer + + + + Fi&nd text: + &Rechercher : + + + + Re&place with: + Re&mplacer avec : + + + + Match &exact case + &Expression exacte + + + + Match &only whole words + M&ots entiers uniquement + + + + When enabled, the search continues from the other end when it reaches one end of the page + Lorsque la Recherche circulaire est activée, la recherche recommence au début une fois atteinte la fin de la page + + + + &Wrap around + Recherche &Circulaire + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + Lorsqu'elle est activée, la recherche s'effectue en remontant à partir de la position du curseur, sinon elle se fait en descendant + + + + Search &backwards + Rechercher vers le &haut + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>Lorsque cette case est cochée, la recherche ne se fait que dans la sélection actuelle.</p></body></html> + + + + &Selection only + &Sélection uniquement + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + La version française de https://en.wikibooks.org/wiki/Regular_Expressions n'existe pas + <html><head/><body><p>Lorsqu'elle est cochée, le motif à trouver est interprété comme une expression régulière UNIX. Voir <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + Use regular e&xpressions + Utiliser les e&xpressions régulières + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + Trouver l'occurrence suivante à partir de la position du curseur et dans la direction définie par "Rechercher vers le haut" + + + + &Find Next + &Suivant + + + + F3 + + + + + &Replace + Rem&placer + + + + Highlight all the occurrences of the text in the page + Surligner toutes les occurrences du texte dans la page + + + + F&ind All + Rechercher &Tout + + + + Replace all the occurrences of the text in the page + Remplace toutes les occurrences du texte dans la page + + + + Replace &All + Remplacer To&ut + + + + The searched text was not found + Le texte recherché n'a pas été trouvé + + + + The searched text was not found. + Le texte recherché n'a pas été trouvé. + + + + The searched text was found one time. + Le texte recherché a été trouvé une fois. + + + + The searched text was found %1 times. + Le texte recherché a été trouvé %1 fois. + + + + The searched text was replaced one time. + Le texte recherché a été remplacé une fois. + + + + The searched text was replaced %1 times. + Le texte recherché a été remplacé %1 fois. + + + + ForeignKeyEditor + + + &Reset + &Réinitialiser + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + Clauses de clé étrangère (ON UPDATE, ON DELETE etc.) + + + + ImportCsvDialog + + + Import CSV file + Importer un fichier CSV + + + + Table na&me + No&m de la Table + + + + &Column names in first line + Nom des &Col. en 1ère ligne + + + + Field &separator + &Séparateur de champ + + + + , + , + + + + ; + ; + + + + + Tab + Tabulation + + + + | + | + + + + Other + Autre + + + + &Quote character + T&ype de guillemet + + + + + Other (printable) + Autre (imprimable) + + + + + Other (code) + Autre (code) + + + + " + " + + + + ' + ' + + + + &Encoding + &Encodage + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + Réduire les champs ? + + + + Separate tables + Tables distinctes + + + + Advanced + Avancé + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + Lorsque vous importez une valeur vide du fichier CSV dans une table existante avec une valeur par défaut pour cette colonne, cette valeur par défaut est insérée. Activez cette option pour insérer une valeur vide à la place. + + + + Ignore default &values + Ignorer les &valeurs par défaut + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + Activez cette option pour arrêter l'importation lorsque vous essayez d'importer une valeur vide dans une colonne NON NULL sans valeur par défaut. + + + + Fail on missing values + Erreur sur les valeurs manquantes + + + + Disable data type detection + Désactiver la détection du type de données + + + + Disable the automatic data type detection when creating a new table. + Désactive la détection automatique du type de données lors de la création d'une nouvelle table. + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + Lors de l'importation dans une table existante possédant une clé primaire, des contraintes uniques ou un index unique, il y a un risque de conflit. Cette option vous permet de sélectionner une stratégie pour ce cas : Par défaut, l'importation est interrompue et annulée, mais vous pouvez également choisir d'ignorer et de ne pas importer les lignes en conflit ou de remplacer la ligne existante dans la table. + + + + Abort import + Abandonner l'import + + + + Ignore row + Ignorer l'enregistrement + + + + Replace existing row + Remplacer l'enregistrement existant + + + + Conflict strategy + En conflit avec la stratégie + + + + + Deselect All + Déselectionner tout + + + + Match Similar + 170726 MVT Has to be checked in real context or after explanation of this function. I suppose this function permits, with data names on the first line to "prefill a corresponding names" in an existing object ? + Appairer + + + + Select All + Sélectionner tout + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + Il existe déjà une table nommée'%1' et une importation dans une table existante n'est possible que si le nombre de colonnes correspond. + + + + There is already a table named '%1'. Do you want to import the data into it? + Il existe déjà une table appelée "%1". Voulez-vous y importer les données ? + + + + Creating restore point failed: %1 + La création du point de restauration a échoué : %1 + + + + Creating the table failed: %1 + La création de la table a échoué %1 + + + + importing CSV + Importer au format CSV + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + L'importation du fichier'%1' a pris %2ms. %3ms ont été dépensés dans la fonction enregistrement. + + + + Inserting row failed: %1 + L'insertion de l'enregistrement a échoué : %1 + + + + MainWindow + + + toolBar1 + Barre d'outils1 + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + Attention : ce pragma n'est pas lisible et cette valeur a été déduite. Ecrire le pragma pourrait écraser un LIKE redéfini fourni par une extension SQLite. + + + + &Tools + &Outils + + + + Edit Database &Cell + Éditer le contenu d'une &Cellule + + + + Opens the SQLCipher FAQ in a browser window + Ouvre la FAQ de SQLCipher dans la fenêtre d'un navigateur + + + + Export one or more table(s) to a JSON file + Exporter une ou plusieurs tables vers un fichier JSON + + + + DB Browser for SQLite + DB Browser pour SQLite + + + + &File + &Fichier + + + + &Import + &Importer + + + + &Export + &Exporter + + + + &Edit + É&dition + + + + &View + &Vue + + + + &Help + &Aide + + + + User + Utilisateur + + + + Application + Application + + + + This button clears the contents of the SQL logs + Ce bouton supprime le contenu des logs SQL + + + + &Clear + &Effacer + + + + &New Database... + &Nouvelle Base de Données... + + + + + Create a new database file + Créer une nouvelle Base de Données + + + + This option is used to create a new database file. + Cette option est utilisée pour créer un nouveau fichier de Base de Données. + + + + Ctrl+N + + + + + + &Open Database... + &Ouvrir une Base de Données... + + + + + + + + Open an existing database file + Ouvre une Base de Données existante + + + + + + This option is used to open an existing database file. + Cette option est utilisée pour ouvrir une Base de Données existante. + + + + Ctrl+O + + + + + &Close Database + &Fermer la Base de Données + + + + This button closes the connection to the currently open database file + Ce bouton ferme la connexion à la Base de Données actuellement ouverte + + + + + Ctrl+W + + + + + &Revert Changes + &Annuler les modifications + + + + + Revert database to last saved state + Revenir à la dernière version sauvegardée de la Base de Données + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + Cette option permet de restaurer la Base de Données dans l'état de sa dernière sauvegarde. Tous les changements effectués depuis cette dernière sauvegarde seront perdus. + + + + &Write Changes + Enregistrer les &modifications + + + + + Write changes to the database file + Enregistrer les modifications dans la Base de Données + + + + This option is used to save changes to the database file. + Cette option est utilisée pour enregistrer les modifications dans la Base de Données. + + + + Ctrl+S + + + + + Execute all/selected SQL + Exécuter Tout ou seulement le SQL sélectionné + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + Ce bouton lance l'exécution des commandes SQL actuellement sélectionnées. Si aucun texte n'est sélectionné, toutes les commandes SQL seront éxécutées. + + + + Execute line + Exécuter la ligne + + + + &Wiki + &Wiki + + + + F1 + + + + + Bug &Report... + &Rapport d'erreur... + + + + Feature Re&quest... + &Demande de fonctionnalités... + + + + Web&site + &Site Internet + + + + &Donate on Patreon... + Effectuer une &Donation sur Patreon... + + + + Open &Project... + Ouvrir un &Projet... + + + + &Attach Database... + Attac&her une Base de Données... + + + + + Add another database file to the current database connection + Ajouter un autre fichier de Base de Données à la connexion de la Base de Données en cours + + + + This button lets you add another database file to the current database connection + Ce bouton vous permet d'ajouter un autre fichier de Base de Données à la connexion de la Base de Données en cours + + + + &Set Encryption... + Chi&ffrer... + + + + SQLCipher &FAQ + &Faq SQLCipher + + + + Table(&s) to JSON... + Table(&s) vers JSON... + + + + Open Data&base Read Only... + Ouvrir la Base de Données en &Lecture seule... + + + + Ctrl+Shift+O + Ctrl+Maj+O + + + + Save results + Enregistrer les résultats + + + + Save the results view + Enregistrer la vue des résultats + + + + This button lets you save the results of the last executed query + Ce bouton vous permet d'enregistrer les résultats de la dernière requête exécutée + + + + + Find text in SQL editor + Rechercher du texte dans l'éditeur SQL + + + + Find + Rechercher + + + + This button opens the search bar of the editor + Ce bouton ouvre la barre de recherche dans l'éditeur + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + Rechercher ou remplacer du texte dans l'éditeur SQL + + + + Find or replace + Chercher et remplacer + + + + This button opens the find/replace dialog for the current editor tab + Ce bouton ouvre la boîte de dialogue Rechercher/Remplacer pour l'onglet en cours de l'éditeur + + + + Ctrl+H + + + + + Export to &CSV + Exporter au format &CSV + + + + Save as &view + Enregistrer comme une &vue + + + + Save as view + Enregistrer comme une vue + + + + Browse Table + Parcourir la table + + + + Shows or hides the Project toolbar. + Afficher ou masquer la barre d'outil Projet. + + + + Extra DB Toolbar + Extra DB Toolbar + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + Ce bouton vous permet d'enregistrer tous les paramètres associés à la Base de Données ouverte dans un fichier projet DB Browser pour SQLite + + + + This button lets you open a DB Browser for SQLite project file + Ce bouton vous permet d'ouvrir un fichier projet DB Browser pour SQLite + + + + New In-&Memory Database + Nouvelle Base de Données en &Mémoire + + + + Drag && Drop Qualified Names + Glisser && Déposer les noms qualifiés + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + Utilisez des noms qualifiés (par ex. "Table", "Champ") lorsque vous faites glisser les objets et pour les déposez dans l'éditeur + + + + Drag && Drop Enquoted Names + Glisser && Déposer les noms cités + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + Utiliser les identificateurs par défaut (par ex. "Table1") lors du glisser-déposer des objets dans l'éditeur + + + + &Integrity Check + Vérifier l'&Intégrité + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + Exécute le pragma integrity_check sur la Base de Données ouverte et retourne les résultats dans l'onglet Exécuter SQL. Ce pragma effectue un contrôle d'intégrité de l'ensemble de la Base de Données. + + + + &Foreign-Key Check + Vérifier les clés &Etrangères + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + Exécute le pragma foreign_key_check_check sur la Base de Données ouverte et retourne les résultats dans l'onglet Exécuter SQL + + + + &Quick Integrity Check + Vérification &rapide de l'intégrité + + + + Run a quick integrity check over the open DB + Effectuer un rapide contrôle d'intégrité sur la Base de Données ouverte + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + Exécute le pragma quick_check sur la Base de Données ouverte et retourne les résultats dans l'onglet Exécuter SQL. Cette commande effectue la plupart des vérifications de PRAGMA integrity_check mais s'exécute beaucoup plus rapidement. + + + + &Optimize + &Optimiser + + + + Attempt to optimize the database + Tente d'optimiser la Base de Données + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + Exécute le pragma d'optimisation sur la Base de Données ouverte. Ce pragma pourrait effectuer des optimisations qui amélioreront la performance des requêtes futures. + + + + + Print + Imprimer + + + + Print text from current SQL editor tab + Imprime le contenu de l'onglet en cours de l'éditeur SQL [Ctrp+P] + + + + Open a dialog for printing the text in the current SQL editor tab + Ouvre une boite de dialogue pour imprimer le contenu de l'onglet en cours de l'éditeur SQL + + + + Print the structure of the opened database + Imprime la structure de la Base de Données ouverte + + + + Open a dialog for printing the structure of the opened database + Ouvre une boite de dialogue pour imprimer la structure de la Base de Données ouverte + + + + &Save Project As... + Enr&egistrer le projet sous... + + + + + + Save the project in a file selected in a dialog + Enregistrer le projet dans un fichier sélectionné dans une boite de dialogue + + + + Save A&ll + Enregistrer &Tout + + + + + + Save DB file, project file and opened SQL files + Enregistre la Base de Données, le fichier projet et les fichiers SQL ouverts + + + + Ctrl+Shift+S + Ctrl+Maj+S + + + + Compact the database file, removing space wasted by deleted records + Compacter la base de donnée, récupérer l'espace perdu par les enregistrements supprimés + + + + + Compact the database file, removing space wasted by deleted records. + Compacter la base de donnée, récupérer l'espace perdu par les enregistrements supprimés. + + + + E&xit + &Quitter + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + Importer les données depuis un fichier sql résultant d'un vidage (sql dump) dans une nouvelle Base de Données ou une base existante. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + Cette option vous permet d'importer un fichier sql de vidage d'une Base de Données (SQL dump) dans une nouvelle Base de Données ou une base existante. Ce fichier peut être créé par la plupart des moteurs de Base de Données, y compris MySQL et PostgreSQL. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Ouvrir un Assistant vous permettant d'importer des données dans une table de la Base de Données à partir d'un fichier texte séparé par des virgules (csv). + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + Ouvre un Assistant vous permettant d'importer des données dans une table de la Base de Données à partir d'un fichier texte séparé par des virgules (csv). Les fichiers CSV peuvent être créés par la plupart des outils de gestion de Base de Données et les tableurs. + + + + Export a database to a .sql dump text file. + Exporter la Base de Données vers un fichier de vidage sql (SQL dump) au format texte. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + Exporter la Base de Données vers un fichier de vidage sql (SQL dump) au format texte. Ce fichier (SQL dump) contient toutes les informations nécessaires pour recréer une Base de Données par la plupart des moteurs de Base de Données, y compris MySQL et PostgreSQL. + + + + Export a database table as a comma separated text file. + Exporter la table vers un fichier texte séparé par des virgules (CSV). + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + Exporter la table vers un fichier texte séparé par des virgules (CSV), prêt à être importé dans une autre Base de Données ou un tableur. + + + + &Create Table... + &Créer une table... + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + Ouvrir l'assistant de création d'une table dans lequel il sera possible de définir les noms et les champs d'une nouvelle table dans la Base de Données + + + + &Delete Table... + &Supprimer une table... + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + Ouvrir l'assistant de suppression d'une table avec lequel vous pourrez sélectionner la table à supprimer. + + + + &Modify Table... + &Modifier une table... + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + Ouvrir l'assistant de modification d'une table avec lequel il sera possible de renommer une table existante. Il est aussi possible d'ajouter ou de supprimer des champs de la table, tout comme modifier le nom des champs et leur type. + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + Ouvrir l'assistant de création d'un index avec lequel il sera possible de définir un nouvel index dans une table préexistante de la Base de Données. + + + + &Preferences... + &Préférences... + + + + + Open the preferences window. + Ouvrir la fenêtre des préférences. + + + + &DB Toolbar + &Barre d'outils BdD + + + + Shows or hides the Database toolbar. + Affiche ou masque la barre d'outils Base de Données. + + + + Shift+F1 + Maj+F1 + + + + &Recently opened + Ouvert &récemment + + + + Open &tab + vérifier le contexte + Ouvrir un on&glet + + + + Ctrl+T + + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + Ceci est la structure de la Base de Données ouverte. +Vous pouvez faire glisser plusieurs noms d'objets de la colonne Nom et les déposer dans l'éditeur SQL et vous pouvez ajuster les propriétés des noms déposés en utilisant le menu contextuel. Cela pourrait vous aider à composer des instructions SQL. +Vous pouvez faire glisser les instructions SQL de la colonne Schéma et les déposer dans l'éditeur SQL ou dans d'autres applications. + + + + + + Project Toolbar + Barre d'outil Projet + + + + Extra DB toolbar + Extra DB Toolbar + + + + + + Close the current database file + Fermer la Base de Données en cours + + + + Ctrl+F4 + + + + + Compact &Database... + Compacter la Base de &Données... + + + + &About + À &propos + + + + This button opens a new tab for the SQL editor + Ce bouton ouvre un nouvel onglet dans l'éditeur SQL + + + + &Execute SQL + &Exécuter le SQL + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + Exécuter le SQL + + + + + Save the current session to a file + Enregistrer la session courante dans un fichier + + + + + Load a working session from a file + Charger une session de travail depuis un fichier + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Structure de la Base de Données + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + Ceci est la structure de la Base de Données ouverte. +Vous pouvez faire glisser les instructions SQL d'une ligne d'objet et les déposer dans d'autres applications ou dans une autre instance de'DB Browser pour SQLite'. + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Parcourir les données + + + + Error Log + Journal des erreurs + + + + Un/comment block of SQL code + Dé/commenter un bloc de code SQL + + + + Un/comment block + Dé/commenter un bloc + + + + Comment or uncomment current line or selected block of code + Commenter ou décommenter la ligne actuelle ou le bloc de code sélectionné + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + Commenter ou décommenter les lignes sélectionnées ou la ligne en cours, lorsqu'il n'y a pas de sélection. Tout le bloc est basculé en fonction de la première ligne. + + + + Ctrl+/ + + + + + Stop SQL execution + Arrête l'exécution du SQL + + + + Stop execution + Arrêter l'exécution + + + + Stop the currently running SQL script + Arrête le script SQL en cours d'exécution + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Éditer les Pragmas + + + + DB Toolbar + Barre d'outils BdD + + + + SQL &Log + &Journal SQL + + + + Show S&QL submitted by + A&fficher le SQL soumis par + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + Ce panneau vous permet d'examiner un journal de toutes les commandes SQL émises par l'application ou par vous-même + + + + &Plot + Gra&phique + + + + DB Sche&ma + DB Sche&ma + + + + &Remote + Serveur &distant + + + + &Database from SQL file... + &Base de Données à partir du fichier SQL... + + + + &Table from CSV file... + &Table depuis un fichier CSV... + + + + &Database to SQL file... + Base de &Données vers un fichier SQL... + + + + &Table(s) as CSV file... + &Table vers un fichier CSV... + + + + Create &Index... + Créer un &Index... + + + + W&hat's This? + &Qu'est-ce que c'est ? + + + + Open SQL file(s) + Ouvrir un fichier SQL + + + + This button opens files containing SQL statements and loads them in new editor tabs + Ce bouton ouvre un fichier contenant des instructions SQL et le charge dans un nouvel onglet de l'éditeur + + + + + + Save SQL file + Enregistrer le fichier SQL + + + + &Load Extension... + Charger l'&Extension... + + + + + Execute current line + Exécuter la ligne courante (Maj+F5) + + + + This button executes the SQL statement present in the current editor line + Ce bouton exécute l'instruction SQL présente dans la ligne courante de l'éditeur + + + + Shift+F5 + Maj+F5 + + + + Sa&ve Project + Enre&gistrer le projet + + + + + Save SQL file as + Enregistrer le fichier SQL comme + + + + This button saves the content of the current SQL editor tab to a file + Ce bouton enregistre le contenu de l'onglet actuel de l'éditeur SQL dans un fichier + + + + &Browse Table + &Parcourir la table + + + + Copy Create statement + Copier l'instruction CREATE + + + + Copy the CREATE statement of the item to the clipboard + Copie l'instruction CREATE de cet item dans le presse-papier + + + + Open an existing database file in read only mode + Ouvrir une Base de Données existante en mode Lecture seule + + + + Ctrl+E + + + + + Export as CSV file + Exporter les données au format CSV + + + + Export table as comma separated values file + Exporter la table vers un fichier texte séparé par des virgules (CSV) + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Database encoding + Encodage de la Base de Données + + + + + Choose a database file + Choisir une Base de Données + + + + Ctrl+Return + Ctrl+Entrée + + + + Ctrl+D + + + + + Ctrl+I + + + + + Reset Window Layout + Rétablir la disposition des fenêtres + + + + Alt+0 + + + + + The database is currenctly busy. + La Base de Données est actuellement occupée. + + + + Click here to interrupt the currently running query. + Cliquez ici pour interrompre la requête en cours. + + + + Encrypted + Chiffré + + + + Database is encrypted using SQLCipher + La Base de Données a été chiffrée avec SQLCipher + + + + Read only + Lecture seule + + + + Database file is read only. Editing the database is disabled. + La Base de Données est ouverte en lecture seule. Il n'est pas possible de la modifier. + + + + Could not open database file. +Reason: %1 + La Base de Données ne peut être ouverte. +Motif : %1 + + + + + + Choose a filename to save under + Choisir un nom de fichier pour enregistrer sous + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + Erreur lors de l'enregistrement de la Base de Données. Cela sous-entend qu'aucun changement n'a été sauvegardé. Vous devez corriger au préalable l'erreur suivante : + +%1 + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + Voulez-vous enregistrer les modifications apportées aux onglets SQL dans le fichier du projet '%1' ? + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Une nouvelle version de DB Browser pour SQLite est disponible (%1.%2.%3).<br/><br/>Vous pouvez la télécharger sur <a href='%4'>%4</a>. + + + + DB Browser for SQLite project file (*.sqbpro) + Fichier de projet DB Browser pour SQLite (*.sqbpro) + + + + Error checking foreign keys after table modification. The changes will be reverted. + Erreur de vérification des clés étrangères après modification de la table. Les modifications seront annulées. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + Cette table n'a pas passé avec succès un contrôle de clé étrangère.<br/>Vous devez exécuter l'Outil | Contrôle des clés étrangères' et corriger les problèmes rapportés. + + + + Execution finished with errors. + L'exécution s'est terminée avec des erreurs. + + + + Execution finished without errors. + L'exécution s'est terminée sans erreur. + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + Êtes-vous sûr de vouloir annuler tous les changements effectués dans la Base de Données %1 depuis la dernière sauvegarde ? + + + + Choose a file to import + Choisir un fichier à importer + + + + Text files(*.sql *.txt);;All files(*) + Fichiers Texte (*.sql *.txt);;Tous les fichiers(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + Voulez vous créer une nouvelle base de donnée pour gérer les données importées ? +Si vous répondez non, nous essaierons d'importer les données du fichier SQL dans la Base de Données courante. + + + + Window Layout + Disposition des fenêtres + + + + Simplify Window Layout + Simplifier la disposition des fenêtres + + + + Shift+Alt+0 + Maj+Alt+0 + + + + Dock Windows at Bottom + Ancrer les fenêtres en Bas + + + + Dock Windows at Left Side + Ancrer les fenêtres à Gauche + + + + Dock Windows at Top + Ancrer les fenêtres en Haut + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + Des traitements SQL sont en cours d'exécution. Fermer la Base de Données maintrenant arrêtera ces traitements. Cela risque de laisser la Base de Données dans un état incohérent. Êtes-vous sûr de vouloir fermer la Base de Données ? + + + + Do you want to save the changes made to the project file '%1'? + Voulez-vous enregistrer les changements effectués dans la dans le fichier projet '%1' ? + + + + File %1 already exists. Please choose a different name. + Le fichier %1 existe déjà. Veuillez choisir un nom de fichier différent. + + + + Error importing data: %1 + Erreur lors de l'import des données : %1 + + + + Import completed. + Import terminé. + + + + Delete View + Supprimer la Vue + + + + Delete Trigger + Supprimer le Déclencheur + + + + Delete Index + Supprimer l'Index + + + + + Delete Table + Supprimer la Table + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + Paramétrer les valeurs du PRAGMA enregistrera les actions de votre transaction courante. +Êtes-vous sûr ? + + + + In-Memory database + Base de Données en mémoire + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + Êtes vous sûr de vouloir supprimer la table %1 ? +Toutes les données de la table seront perdues. + + + + Are you sure you want to delete the view '%1'? + Êtes vous sûr de voulolir supprimer la vue %1 ? + + + + Are you sure you want to delete the trigger '%1'? + Êtes vous sûr de voulolir supprimer le déclencheur %1 ? + + + + Are you sure you want to delete the index '%1'? + Êtes vous sûr de voulolir supprimer l'index %1 ? + + + + Error: could not delete the table. + Erreur : suppression de la table impossible. + + + + Error: could not delete the view. + Erreur : suppression de la vue impossible. + + + + Error: could not delete the trigger. + Erreur : suppression du déclencheur impossible. + + + + Error: could not delete the index. + Erreur : suppression de l'index impossible. + + + + Message from database engine: +%1 + Message depuis el moteur de la Base de Données : +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + La modification de la table nécessite d'enregistrer toutes les modifications en attente maintenant. +Êtes-vous sûr de vouloir enregistrer la Base de Données ? + + + + Edit View %1 + Editer la vue %1 + + + + Edit Trigger %1 + Editer le déclencheur %1 + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + Vous avez des instructions SQL en cours d'exécution. Voulez-vous les arrêter afin d'exécuter les instructions en cours à la place ? Cela pourrait laisser la Base de Données dans un état incohérent. + + + + -- EXECUTING SELECTION IN '%1' +-- + -- EXECUTION DE LA SELECTION DANS '%1' +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- EXECUTION DE LA LIGNE DANS '%1' +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- EXECUTER TOUT DANS '%1' +-- + + + + + At line %1: + À la ligne %1 : + + + + Result: %1 + Résultat : %1 + + + + Result: %2 + Résultat : %2 + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + Le réglage des valeurs PRAGMA ou du "vacuuming" validera votre transaction en cours. +Êtes-vous sûr ? + + + + Opened '%1' in read-only mode from recent file list + Ouverture de '%1' en lecture seule depuis la liste des fichiers récents + + + + Opened '%1' from recent file list + Ouverture de '%1' depuis la liste des fichiers récents + + + + Project saved to file '%1' + Projet enregistré dans le fichier '%1' + + + + This action will open a new SQL tab with the following statements for you to edit and run: + Need to verify if following statements ore shown bellow ou above or on the open action + Cette action ouvrira un nouvel onglet SQL avec les instructions suivantes que vous pourrez modifier et exécuter : + + + + Rename Tab + Renommer l'onglet + + + + Duplicate Tab + Dupliquer l'onglet + + + + Close Tab + Fermer l'onglet + + + + Opening '%1'... + Ouverture de '%1'... + + + + There was an error opening '%1'... + Il y a eu une erreur lors de l'ouverture de '%1'... + + + + Value is not a valid URL or filename: %1 + Le valeur n'est pas une URL valide ou un nom de fichier : %1 + + + + %1 rows returned in %2ms + %1 enregistrements ramenés en %2ms + + + + Choose text files + Choisir des fichiers texte + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + Importation terminée. Certaines contraintes clés étrangères sont violées. Veuillez les corriger avant de les enregistrer. + + + + Modify View + Modifier une Vue + + + + Modify Trigger + Modifier un Déclencheur + + + + Modify Index + Modifier un Index + + + + Modify Table + Modifier une Table + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (lecture seule) + + + + Open Database or Project + Ouvrir une Base de Données ou un projet + + + + Attach Database... + Attacher une Base de Données... + + + + Import CSV file(s)... + Importer un ou des fichiers CSV... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + Sélectionnez l'action à appliquer au fichier déposé. <br>Note : seul "Importer" traitera plusieurs fichiers. + Sélectionnez l'action à appliquer aux fichiers déposés. <br>Note : seul "Importer" traitera plusieurs fichiers. + + + + + Do you want to save the changes made to SQL tabs in a new project file? + Voulez-vous enregistrer les changements effectués dans l'onglet SQL dans un nouveau fichier projet ? + + + + Do you want to save the changes made to the SQL file %1? + Voulez-vous enregistrer les changements effectués dans le fichier SQL %1 ? + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + Les instructions de cet onglet sont toujours en cours d'exécution. La fermeture de l'onglet arrête leur exécution. Cela pourrait laisser la Base de Données dans un état incohérent. Êtes-vous sûr de vouloir fermer l'onglet ? + + + + Select SQL file to open + Sélectionner un fichier SQL à ouvrir + + + + Select file name + Sélectionner un nom de fichier + + + + Select extension file + Sélectionner une extension de fichier + + + + Extension successfully loaded. + l'extension a été chargée avec succès. + + + + Error loading extension: %1 + Erreur lors du chargement de l'extension %1 + + + + Could not find resource file: %1 + Le fichier de ressources : %1 ne peut être ouvert + + + + + Don't show again + Ne plus afficher + + + + New version available. + Une nouvelle version est disponible. + + + + Choose a project file to open + Choisir un fichier de projet à ouvrir + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + Ce fichier projet utilise un ancien format de fichier parce qu'il a été créé avec DB Browser pour SQLite version 3.10 ou inférieure. Le chargement de ce format de fichier est toujours totalement pris en charge, mais nous vous conseillons de convertir tous vos fichiers projet vers le nouveau format de fichier, car la prise en charge des anciens formats pourrait être supprimée à un moment ou un autre. Vous pouvez convertir vos fichiers en les ouvrant et en les sauvegardant de nouveau. + + + + Could not open project file for writing. +Reason: %1 + Le fichier projet ne peut être ouvert en écriture. +Raison : %1 + + + + Collation needed! Proceed? + Classement nécessaire ! Continuer ? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + Une table de cette Base de Données nécessite la fonction spéciale de classement '%1' que cette application ne peut fournir sans connaissances complémentaires. +Si vous choisissez de continuer, ayez à l'esprit que des choses non souhaitées peuvent survenir dans votre Base de Données. +Faites une sauvegarde ! + + + + creating collation + Créer un classement + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + Définissez un nouveau nom pour l'onglet SQL. Utilisez le caractère '&&' pour permettre d'utiliser le caractère suivant comme raccourci clavier. + + + + Please specify the view name + Veuillez spécifier le nom de la vue + + + + There is already an object with that name. Please choose a different name. + Il existe déjà un objet avec ce nom. Veuillez choisir un autre nom. + + + + View successfully created. + La vue a été crée avec succès. + + + + Error creating view: %1 + Erreur lors de la création de la vue : %1 + + + + This action will open a new SQL tab for running: + Cette action ouvrira un nouvel onglet SQL pour son exécution : + + + + Press Help for opening the corresponding SQLite reference page. + Cliquez sur Aide pour ouvrir la page de référence correspondante de SQLite. + + + + Busy (%1) + Occupé (%1) + + + + NullLineEdit + + + Set to NULL + Définir comme NULL + + + + Alt+Del + Alt+Supp + + + + PlotDock + + + Plot + Graphique + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>Ce volet affiche la liste des colonnes de la table actuellement parcourue ou de la requête qui vient d'être exécutée. Vous pouvez sélectionner les colonnes que vous voulez utiliser comme axe X ou Y pour le volet de tracé ci-dessous. Le tableau montre le type d'axe détecté qui affectera le tracé résultant. Pour l'axe Y, vous ne pouvez sélectionner que des colonnes numériques, mais pour l'axe X, vous pourrez sélectionner :</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Heure</span> : chaînes au format &quot;aaaa-MM-jj hh:mm:ss&quot; ou &quot;aaaa-MM-jjThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span> : chaînes au format &quot;aaaa-MM-jj&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Heures</span> : chaînes au format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span> : autres formats de chaînes. Sélectionner cette colonne comme axe X produira un diagramme en barres avec les valeurs de la colonne comme étiquettes pour les barres</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numerique</span> : Nombres entiers ou Réels</li></ul><p>Avec Double-clic sur une cellule Y, vous pouvez changer le couleur utilisée dans le graphique.</p></body></html> + + + + Columns + Colonnes + + + + X + X + + + + Y1 + Y1 + + + + Y2 + Y2 + + + + Axis Type + Type d'axe + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + Voici le graphique qui sera dessiné lorsque vous sélectionnerez les valeurs x et y ci-dessus. + +Cliquez sur les points pour les sélectionner dans le graphique et dans le tableau. Ctrl+Clic pour sélectionner une plage de points. + +Utilisez la molette de la souris pour zoomer et faites glisser la souris pour modifier la plage des axes. + +Sélectionnez les axes ou les étiquettes d'axes à faire glisser et à zoomer uniquement dans cette orientation. + + + + Line type: + Type de ligne : + + + + + None + Aucun + + + + Line + Ligne + + + + StepLeft + A Gauche + + + + StepRight + A Droite + + + + StepCenter + Centré + + + + Impulse + Impulsion + + + + Point shape: + Forme du point : + + + + Cross + Croix + + + + Plus + Plus + + + + Circle + Cercle + + + + Disc + Disque + + + + Square + Carré + + + + Diamond + Diamant + + + + Star + Étoile + + + + Triangle + Triangle + + + + TriangleInverted + Triangle Inversé + + + + CrossSquare + Carré et croix + + + + PlusSquare + Carré et Plus + + + + CrossCircle + Cercle et Croix + + + + PlusCircle + Cercle et Plus + + + + Peace + Paix + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>Enregistrer le graphique actuel...</p><p>Choisir le format de fichier parmi ces extensions (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + Enregistrer le tracé actuel... + + + + + Load all data and redraw plot + Charger toutes les données et redessiner le graphique + + + + + + Row # + # Ligne + + + + Copy + Copier + + + + Print... + Imprimer... + + + + Show legend + Afficher la légende + + + + Stacked bars + Diagramme à barres empilées + + + + Date/Time + Date/Heure + + + + Date + Date + + + + Time + Heure + + + + + Numeric + Numérique + + + + Label + Label + + + + Invalid + Invalide + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + Charger toutes les données et redessiner le tracé. +Attention : toutes les données n'ont pas encore été extraites du tableau en raison du mécanisme d'extraction partielle. + + + + Choose an axis color + Choisir une couleur d'axe + + + + Choose a filename to save under + Choisir un nom de fichier pour enregistrer sous + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + Il y a des courbes dans ce graphique et le style de ligne sélectionné ne peut être appliqué qu'aux graphiques triés par X. Triez la table ou la requête par X pour supprimer les courbes ou sélectionnez un des styles pris en charge par les courbes : Aucun ou Ligne. + + + + Loading all remaining data for this table took %1ms. + Le chargement de toutes les données restantes pour ce tableau a pris %1 ms. + + + + PreferencesDialog + + + Preferences + Préférences + + + + &General + &Général + + + + Remember last location + Se souvenir du dernier emplacement + + + + Always use this location + Toujours utiliser cet emplacement + + + + Remember last location for session only + Dernier emplac. pour cette session uniquement + + + + Lan&guage + Lan&gue + + + + Show remote options + Afficher options Serv. Distant + + + + Automatic &updates + Mises à jour A&utomatiques + + + + &Database + Base de &Données + + + + Database &encoding + &Encodage de la Base de Données + + + + Open databases with foreign keys enabled. + Ouvrir une Base de Données en autorisant les clés étrangères. + + + + &Foreign keys + &Clés étrangères + + + + + + + + + + + + enabled + Autoriser + + + + Default &location + Emp&lacement par défaut + + + + + + ... + ... + + + + Remove line breaks in schema &view + Suppr. les sauts de ligne dans la &vue du schéma + + + + Prefetch block si&ze + &Taille du bloc de préfetch + + + + SQ&L to execute after opening database + Fichier SQ&L à exécuter à l'ouverture +de la Base de Données + + + + Default field type + Type de champ par défaut + + + + Data &Browser + &Navigateur des données + + + + Font + Police + + + + &Font + &Police + + + + Content + Contenu + + + + Symbol limit in cell + Texte : Nb max. de caractères + + + + NULL + NULL + + + + Regular + Standard + + + + Binary + Binaire + + + + Background + Arrière plan + + + + Filters + Filtres + + + + Threshold for completion and calculation on selection + Seuil d'achèvement et calcul lors de la sélection + + + + Show images in cell + Afficher les images dans la cellule + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + Activez cette option pour afficher un aperçu des BLOBs contenant des images dans les cellules. Cela peut toutefois affecter les performances du navigateur de données. + + + + Escape character + Caractère d'échappement + + + + Delay time (&ms) + Délai (&ms) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + Défini le temps d'attente avant qu'une nouvelle valeur de filtre est appliquee. Peut être renseigné à 0 pour supprimer le temps d'attente. + + + + &SQL + &SQL + + + + Settings name + Définir le nom + + + + Context + Contexte + + + + Colour + Couleur + + + + Bold + Gras + + + + Italic + Italique + + + + Underline + Souligné + + + + Keyword + Mot Clé + + + + Function + Fonction + + + + Table + Table + + + + Comment + Commentaire + + + + Identifier + Identifiant + + + + String + Chaîne de caractère + + + + Current line + Ligne courante + + + + SQL &editor font size + &Taille de la police : Éditeur SQL + + + + Tab size + Largeur de tabulation + + + + SQL editor &font + &Police de l'éditeur SQL + + + + Error indicators + Indicateur d'erreur + + + + Hori&zontal tiling + Division hori&zontale + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + Si elle est activée, l'éditeur de code SQL et l'affichage du tableau de résultats sont présentés côte à côte au lieu d'être l'un sur l'autre. + + + + Code co&mpletion + Co&mplétion de code + + + + Toolbar style + Style de la barre d'outil + + + + + + + + Only display the icon + Afficher uniquement les icones + + + + + + + + Only display the text + Afficher uniquement le texte + + + + + + + + The text appears beside the icon + Le texte sera affiché à côté des icones + + + + + + + + The text appears under the icon + Le texte sera affiché sous les icones + + + + + + + + Follow the style + Suivre le style + + + + DB file extensions + Extensions de fichiers DB + + + + Manage + Gestion + + + + Main Window + Fenêtre principale + + + + Database Structure + Structure de la Base de Données + + + + Browse Data + Parcourir les données + + + + Execute SQL + Exécuter le SQL + + + + Edit Database Cell + Éditer le contenu d'une cellule de la BdD + + + + When this value is changed, all the other color preferences are also set to matching colors. + Lorsque cette valeur est modifiée, toutes les autres préférences de couleur sont également réglées sur les couleurs correspondantes. + + + + Follow the desktop style + Suit le style du bureau + + + + Dark style + Style sombre + + + + Application style + Style de l'application + + + + This sets the font size for all UI elements which do not have their own font size option. + Définit la taille de la police pour tous les éléments de l'interface utilisateur qui n'ont pas leur propre option de taille de police. + + + + Font size + Taille de police + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + Lorsque cette option est activée, les sauts de ligne de la colonne Schéma de l'onglet Structure de la Base de Données, du dock et de la sortie imprimée sont supprimés. + + + + Database structure font size + Taille de la police pour la structure de la Base de Données + + + + Font si&ze + T&aille de police + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + Il s'agit du nombre maximum d'éléments autorisés pour l'activation de certaines fonctionnalités coûteuses en termes de calcul : +Nombre maximal de lignes dans un tableau pour permettre la complétion des valeurs sur la base des valeurs actuelles de la colonne. +Nombre maximum d'index dans une sélection pour le calcul de la somme et de la moyenne. +Peut être fixé à 0 pour la désactivation des fonctionnalités. + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + Il s'agit du nombre maximum de lignes dans une table pour permettre la complétion de la valeur en fonction des valeurs actuelles dans la colonne. +Peut être mis à 0 pour désactiver la complétion. + + + + Field display + Affichage des champs + + + + Displayed &text + &Texte affiché + + + + + + + + + Click to set this color + Cliquez pour définir cette couleur + + + + Text color + Couleur de texte + + + + Background color + Couleur d'arrière plan + + + + Preview only (N/A) + Préaffichage uniquement (N/A) + + + + Foreground + Avant Plan + + + + SQL &results font size + Taille police &résultats SQL + + + + &Wrap lines + &Retour à la ligne + + + + Never + Jamais + + + + At word boundaries + Aux limites des mots + + + + At character boundaries + Aux limites des caractères + + + + At whitespace boundaries + Aux limites des espaces + + + + &Quotes for identifiers + &Guillemets pour les identifiants + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + Choisissez le système de guillemets utilisés par l'application pour les identificateurs dans le code SQL. + + + + "Double quotes" - Standard SQL (recommended) + "Double guillemet" - Standard SQL (recommandé) + + + + `Grave accents` - Traditional MySQL quotes + `Accent Grave` - Guillemets standards MySQL + + + + [Square brackets] - Traditional MS SQL Server quotes + [Crochets] - Guillemets traditionels de MS SQL Server + + + + Keywords in &UPPER CASE + Mots clé en &MAJUSCULES + + + + When set, the SQL keywords are completed in UPPER CASE letters. + Quand cette case est cochée, les mots clé SQL sont transformés en MAJUSCULES. + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + Lorsque cette option est activée, les lignes de code SQL qui ont causé des erreurs lors de la dernière exécution sont mises en surbrillance et le cadre des résultats indique l'erreur en arrière-plan + + + + Close button on tabs + Bouton de fermeture des onglets + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + Si cette option est activée, les onglets de l'éditeur SQL comporteront un bouton de fermeture. Dans tous les cas, vous pouvez utiliser le menu contextuel ou le raccourci clavier pour les fermer. + + + + &Extensions + E&xtensions + + + + Select extensions to load for every database: + Sélectionner une extension à charger pour toutes les bases de données : + + + + Add extension + Ajouter une extension + + + + Remove extension + Enlever une extension + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>Bien que SQLite supporte l'opérateur REGEXP, aucun algorithme<br>d'expression régulière est implémenté, mais il rappelle l'application en cours d'exécution. DB Browser pour SQLite implémente<br/>cet algorithme pour vous permettre d'utiliser REGEXP. Cependant, comme il existe plusieurs implémentations possibles<br/>et que vous souhaitez peut-être utiliser autre chose, vous êtes libre de désactiver cette implémentation dans l'application<br/>pour utiliser la votre en utilisant une extension. Cela nécessite le redémarrage de l'application.</p></body></html> + + + + Disable Regular Expression extension + Désactiver l'extention "Expression Régulière" + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html><head/><body><p>SQLite fournit une fonction SQL pour charger des extensions à partir d'un fichier de bibliothèque partagé. Activez cette option si vous souhaitez utiliser la fonction <span style=" font-style:italic;">load_extension()</span> depuis el code SQL.</p><p>Pour des raisons de sécurité, le chargement des extensions est désactivé par défaut et doit être activé par ce paramètre. Vous pouvez toujours charger des extensions via l'interface graphique, même si cette option est désactivée.</p></body></html> + + + + Allow loading extensions from SQL code + Autoriser le chargement des extensions depuis le code SQL + + + + Remote + Serveur distant + + + + CA certificates + Certificats CA + + + + Proxy + Proxy + + + + Configure + Configurer + + + + + Subject CN + Sujet CN + + + + Common Name + Nom Commun - CN + + + + Subject O + Sujet O + + + + Organization + Organisation + + + + + Valid from + Valide de + + + + + Valid to + Valide jusqu'à + + + + + Serial number + Numéro de série + + + + Your certificates + Vos certificats + + + + File + Fichier + + + + Subject Common Name + Sujet Common Name + + + + Issuer CN + Émetteur CN + + + + Issuer Common Name + + + + + Clone databases into + Cloner la Base de Données dans + + + + + Choose a directory + Choisir un répertoire + + + + The language will change after you restart the application. + La langue ne changera qu'après le redémarrage de l'application. + + + + Select extension file + Sélectionner un fichier d'extension + + + + Extensions(*.so *.dylib *.dll);;All files(*) + Extensions (*.so *.dylib *.dll);;Tous les fichiers (*) + + + + Import certificate file + Importer un fichier de certificat + + + + No certificates found in this file. + Aucun certificat n'a été trouvé dans ce fichier. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + Êtes-vous sûr de vouloir supprimer ce certificat ? Toutes les données de ce certificat seront supprimées des paramètres de l'application! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + Êtes-vous sûr de vouloir effacer tous les réglages sauvegardés ? +Toutes vos préférences seront perdues et les valeurs par défaut seront utilisées. + + + + ProxyDialog + + + Proxy Configuration + Configuration du proxy + + + + Pro&xy Type + Type de Pro&xy + + + + Host Na&me + No&m de l'hôte + + + + Port + Port + + + + Authentication Re&quired + Authentification re&quise + + + + &User Name + Nom &Utilisateur + + + + Password + Mot de Passe + + + + None + Aucun + + + + System settings + Paramètres système + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + Error importing data + Erreur lors de l'import des données + + + + from record number %1 + pour l'enregistrement numéro %1 + + + + . +%1 + . +%1 + + + + Importing CSV file... + Import du fichier CSV... + + + + Cancel + Annuler + + + + All files (*) + Tous les fichiers (*) + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + Base de Données SQLite (*.db *.sqlite *.sqlite3 *.db3) + + + + Left + Gauche + + + + Right + Droite + + + + Center + Centré + + + + Justify + Justifié + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + Fichier de BdD SQLite (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + Fichiers projet DB Browser pour SQLite (*.sqbpro) + + + + SQL Files (*.sql) + Fichiers SQL (*.sql) + + + + All Files (*) + Tous les fichiers (*) + + + + Text Files (*.txt) + Fichiers Texte (*.txt) + + + + Comma-Separated Values Files (*.csv) + Valeurs séparées par des virgules (*.csv) + + + + Tab-Separated Values Files (*.tsv) + Valeurs séparées par des tabulations (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + Valeurs séparées par des délimiteurs (*.dsv) + + + + Concordance DAT files (*.dat) + Fichiers de Concordance (*.dat) + + + + JSON Files (*.json *.js) + Fichiers JSON (*.json *.js) + + + + XML Files (*.xml) + Fichiers XML (*.xml) + + + + Binary Files (*.bin *.dat) + Fichiers Binaires (*.bin *.dat) + + + + SVG Files (*.svg) + Fichiers SVG (*.svg) + + + + Hex Dump Files (*.dat *.bin) + Fichiers Dump Hexadécimal (*.dat *.bin) + + + + Extensions (*.so *.dylib *.dll) + Extensions (*.so *.dylib *.dll) + + + + RemoteCommitsModel + + + Commit ID + ID de Commit + + + + Message + Message + + + + Date + Date + + + + Author + Auteur + + + + Size + Taille + + + + Authored and committed by %1 + Need to see the context Authored can be translated by "Publié" (published) too as the main author + Créé et validé par %1 + + + + Authored by %1, committed by %2 + Créé par %1, validé par %2 + + + + RemoteDatabase + + + Error opening local databases list. +%1 + Erreur lors de l'ouverture de la liste des bases de données locales. +%1 + + + + Error creating local databases list. +%1 + Erreur lors de la création de la liste des bases de données locales. +%1 + + + + RemoteDock + + + Remote + Serveur Distant + + + + Local + Local + + + + Identity + Identité + + + + Push currently opened database to server + Déplacer la Base de Données en cours sur le serveur + + + + DBHub.io + DBHub.io + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + <html><head/><body><p>Dans ce volet, les bases de données distantes du site Web dbhub.io peuvent être ajoutées à DB Browser pour SQLite. Il faut d'abord vous identifier :</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Connectez-vous sur le site dbhub.io (utilisez vos identifiants GitHub ou ce que vous voulez)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Cliquez sur le bouton &quot;Generate client certificate&quot; (c'est votre identité). Cela vous fournira un fichier de certificat (enregistrez-le sur votre disque local).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Allez dans l'onglet Serveur Distant des Préférences DB Browser pour SQLite . Cliquez sur le bouton pour ajouter un nouveau certificat à DB Browser pour SQLite et choisissez le fichier de certificat que vous venez de télécharger.</li></ol><p>Maintenant, le panneau Serveur distant affiche votre identité et vous pouvez ajouter des bases de données distantes..</p></body></html> + + + + Current Database + Base de Données en cours + + + + Clone + Cloner + + + + User + Utilisateur + + + + Database + Base de Données + + + + Branch + Branche + + + + Commits + Commits + + + + Commits for + Commits pour + + + + Delete Database + Supprime la Base de Données + + + + Delete the local clone of this database + Supprime le clone local de la Base de Données + + + + Open in Web Browser + Ouvre dans un navigateur Internet + + + + Open the web page for the current database in your browser + Ouvre la page web de la Base de Données en cours dans votre navigateur + + + + Clone from Link + Cloner depuis un lien + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + Utilisez ceci pour télécharger une Base de Données distante pour l'édiiter localement en utilisant une URL telle que fournie sur la page web de la Base de Données. + + + + Refresh + Rafraichir + + + + Reload all data and update the views + Recherge toutes les données et met à jour les vues + + + + F5 + + + + + Clone Database + Cloner une Base de Données + + + + Open Database + Ouvrir une Base de données + + + + Open the local copy of this database + Ouvrir la copie locale de la Base de Données + + + + Check out Commit + Vérifier le Commit + + + + Download and open this specific commit + Télécharger et ouvrir ce Commit particulier + + + + Check out Latest Commit + Vérifier le dernier Commit + + + + Check out the latest commit of the current branch + Vérifie le dernier Commit de la branche en cours + + + + Save Revision to File + Enregistrer la Révision dans un fichier + + + + Saves the selected revision of the database to another file + Enregistre la Révision sélectionnée de la Base de Données dans un autre fichier + + + + Upload Database + Télécharger la Base de Données + + + + Upload this database as a new commit + Téléchargez cette Base de Données en tant que nouveau Commit + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html><head/><body><p>Vous utilisez actuellement une identité intégrée, en lecture seule. Pour télécharger votre Base de Données, vous devez configurer et utiliser votre compte DBHub.io. </p><p>Vous n'avez pas encore de compte DBHub.io ? <a href="https://dbhub.io/"><span style=" text-decoration : underline ; color:#007af4 ;">Créez-en un maintenant</span></a> et importez votre certificat <a href="#preferences"><span style=" text-decoration : underline ; color:#007af4 ;">ici</span></a> pour partager vos bases de données.</p><p>Pour l'aide en ligne, visitez <a href="https://dbhub.io/about"><span style=" text-decoration : underline ; color:#007af4 ;">ici</span></a>.</p></body></html> + + + + Back + Retour + + + + Select an identity to connect + Sélectionner une identité pour se connecter + + + + Public + Public + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + Cela télécharge une Base de Données à partir d'un serveur distant pour l'éditer localement. +Veuillez entrer l'URL à partir de laquelle vous souhaitez la cloner. Vous pouvez générer cette URL en +en cliquant sur le bouton "Cloner la Base de Données dans DB4S" sur la page web +de la Base de Données. + + + + Invalid URL: The host name does not match the host name of the current identity. + URL invalide : Le nom de l'hôte ne correspond pas au nom de l'hôte de l'identité actuelle. + + + + Invalid URL: No branch name specified. + URL Invalide : Nom de branche non spécifié. + + + + Invalid URL: No commit ID specified. + URL Invalide : Commit ID non spécifié. + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + Vous avez modifié le clone local de la Base de Données. La récupération de ce commit annule ces modifications locales. +Êtes-vous sûr de vouloir continuer ? + + + + The database has unsaved changes. Are you sure you want to push it before saving? + La Base de Données contient des modifications non sauvegardées. Êtes-vous sûr de vouloir la pousser avant de la sauvegarder ? + + + + The database you are trying to delete is currently opened. Please close it before deleting. + La Base de Données que vous essayez de supprimer est actuellement ouverte. Veuillez la fermer avant de la supprimer. + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + Cela va supprimer la version locale de cette Base de Données avec tous les changements pour lesquels vous n'avez pas fait de Commit. Êtes-vous sûr de vouloir supprimer cette Base de Données ? + + + + RemoteLocalFilesModel + + + Name + Nom + + + + Branch + Branche + + + + Last modified + Dernière modification + + + + Size + Taille + + + + Commit + Commit + + + + File + Fichier + + + + RemoteModel + + + Name + Nom + + + + Last modified + Dernière modification + + + + Size + Taille + + + + Commit + Commit + + + + Size: + Taille : + + + + Last Modified: + Dernière modification : + + + + Licence: + Licence : + + + + Default Branch: + Branche par défaut : + + + + RemoteNetwork + + + Choose a location to save the file + Choisissez un emplacement pour enregistrer le fichier + + + + Error opening remote file at %1. +%2 + Erreur lors de l'ouverture du fichier distant %1. +%2 + + + + Error: Invalid client certificate specified. + Erreur : Le certificat du client spécifié est invalide. + + + + Please enter the passphrase for this client certificate in order to authenticate. + Pour vous authentifier, veuillez entrer la phrase secrète pour ce certificat client. + + + + Cancel + Annuler + + + + Uploading remote database to +%1 + Téléchargement de la base distante dans +%1 + + + + Downloading remote database from +%1 + Télécharger une Base de Données distante depuis +%1 + + + + + Error: The network is not accessible. + Erreur : le réseau n'est pas accessible. + + + + Error: Cannot open the file for sending. + Erreur : le fichier à envoyer ne peut être ouvert. + + + + RemotePushDialog + + + Push database + Je ne pense pas que Push soir le bon terme. Est-ce que cela fonctionne comme un serveur de version ? + Pousser une basse de données + + + + Database na&me to push to + &Nom de la Base de Données à pousser vers + + + + Commit message + Message de Commit + + + + Database licence + Licence de la Base de Données + + + + Public + Publique + + + + Branch + Branche + + + + Force push + Forcer le "push" + + + + Username + Nom utilisateur + + + + Database will be public. Everyone has read access to it. + La Base de DOnnée sera publique. Tout le monde a un accès en lecture. + + + + Database will be private. Only you have access to it. + La Base de Données est privée. Vous seul y avez accès. + + + + Use with care. This can cause remote commits to be deleted. + A utiliser avec précaution. Cela peut entraîner la suppression des commit distants. + + + + RunSql + + + Execution aborted by user + Exécution annulée par l'utilisateur + + + + , %1 rows affected + , %1 enregistrements affectés + + + + query executed successfully. Took %1ms%2 + Requête exécutée avec succès. Elle a pris %1 ms %2 + + + + executing query + Exécution de la requête + + + + SelectItemsPopup + + + A&vailable + &Disponible + + + + Sele&cted + Sele&ctionné + + + + SqlExecutionArea + + + Form + Formulaire + + + + Find previous match [Shift+F3] + Trouver la correspondance précédente [Maj+F3] + + + + Find previous match with wrapping + Trouver la correspondance précédente avec le modèle + + + + Shift+F3 + Maj+F3 + + + + The found pattern must be a whole word + Le motif trouvé doit être un mot entier + + + + Whole Words + Mots entiers + + + + Text pattern to find considering the checks in this frame + Modèle de texte à trouver en tenant compte des contrôles de ce cadre + + + + Find in editor + Chercher dans l'éditeur + + + + The found pattern must match in letter case + Le motif recherché doit respecter la casse des lettres + + + + Case Sensitive + Sensible à la casse + + + + Find next match [Enter, F3] + Trouver la correspondance suivante [Entrée, F3] + + + + Find next match with wrapping + Trouver la correspondance suivante avec le modèle + + + + F3 + + + + + Interpret search pattern as a regular expression + Interpréter le modèle de recherche comme une expression régulière + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Lorsqu'elle est cochée, le motif à trouver est interprété comme une expression régulière UNIX. Voir <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + Regular Expression + Expression régulière + + + + + Close Find Bar + Fremer la barre de recherche + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html><head/><body><p>Résultats des derniers traitements exécutées.</p><p>Vous pouvez réduire ce panneau et utiliser le <span style=" font-style:italic ;">dock SQL Log</span> avec la sélection de l'<span style=" font-style:italic ;">utilisateur</span> à la place.</p></body></html> + + + + Results of the last executed statements + Résultats du dernier traitement exécuté + + + + This field shows the results and status codes of the last executed statements. + Ce champ affiche les résultats et les codes de statut du dernier traitement exécuté. + + + + Couldn't read file: %1. + Le fichier %1 ne peut être lu. + + + + + Couldn't save file: %1. + Le fichier %1 ne peut être sauvegardé. + + + + Your changes will be lost when reloading it! + Vos modifications seront perdues lors du rechargement ! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + Le fichier "%1" a été modifié par un autre programme. Vioulez-vous le recharger ? %2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) La fonction abs(X) renvoie la valeur absolue de l'argument numérique X. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () La fonction changes() renvoie le nombre de lignes de la Base de Données qui ont été modifiées, insérées ou supprimées par les instructions UPDATE, INSERT ou DELETE terminées dernièrement. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1, X2,...) La fonction char(X1,X2,...,XN) renvoie une chaîne composée des caractères ayant les valeurs des points de code unicode des entiers allant de X1 à XN, respectivement. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X, Y, ...) La fonction coalesce () renvoie une copie de son premier argument non-NULL, ou NULL si tous les arguments sont NULL + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X, Y) La fonction glob (X, Y) est équivalente à l'expression « Y GLOB X ». + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X, Y) La fonction ifnull () renvoie une copie de son premier argument non-NULL, ou NULL si les deux arguments sont NULL. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X, Y) La fonction instr (X, Y) trouve la première occurrence de la chaîne Y dans la chaîne X. Elle renvoie le nombre de caractères précédents plus 1 ou 0 si Y n'est pas dans X. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) La fonction hex () interprète son argument comme un BLOB et renvoie une chaîne qui est le rendu hexadécimal en majuscules du contenu de ce blob. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () La fonction last_insert_rowid () renvoie le ROWID de la dernière ligne insérée par la connexion de la Base de Données qui a invoqué la fonction. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) Pour une valeur de chaîne X, la fonction length(X) renvoie le nombre de caractères (pas d'octets) dans X avant le premier caractère NULL. + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X, Y) La fonction like() est utilisée pour mettre en œuvre de l’expression « Y LIKE X ». + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X, Y, Z) La fonction like() est utilisée pour mettre en œuvre de l’expression « Y LIKE X ESCAPE Z ». + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) La fonction load_extension(X) charge les extensions SQLite à partir du fichier de bibliothèque partagé nommé X. +L'utilisation de cette fonction doit être autorisée à partir des Préférences. + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X,Y) La fonction load_extension(X) charge les extensions SQLite à partir du fichier de bibliothèque partagée nommé X en utilisant le point d'entrée Y. +L'utilisation de cette fonction doit être autorisée à partir des Préférences. + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) La fonction lower(X) renvoie une copie de la chaîne X avec tous ses caractères ASCII convertis en minuscules. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ltrim(X) supprime les espaces gauche de X. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X, Y) La fonction ltrim(X,Y) renvoie une chaîne résultant de la suppression de tous les caractères qui apparaissent en Y à gauche de X. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) La fonction à arguments multiples max() renvoie l'argument ayant la plus grande valeur ou renvoie NULL si tous les arguments sont NULL. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) La fonction à arguments multiples min() renvoie l'argument ayant la plus petite valeur. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X, Y) La fonction nullif(X,Y) renvoie le premier argument, si les arguments sont différents et NULL si les X et Y sont les mêmes. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) La fonction SQL printf(FORMAT,...) fonctionne comme la fonction de sqlite3_mprintf() en langage C et la fonction printf() de la bibliothèque C standard. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) La fonction quote(X) renvoie le texte d’un litéral SQL qui est la valeur appropriée de l’argument pour son inclusion dans une requête SQL. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () La fonction random() renvoie un nombre entier pseudo-aléatoire entre -9223372036854775808 et + 9223372036854775807. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) La fonction randomblob(N) renvoie un blob de N octets contenant des octets pseudo-aléatoires. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X, Y, Z) La fonction replace(X,Y,Z) renvoie une chaîne formée en substituant par la chaîne Z chaque occurrence de la chaîne Y présente dans la chaîne X. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) La fonction round(X) renvoie une valeur à virgule flottante X arrondie à zéro chiffres à droite de la virgule décimale. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X, Y) La fonction round(X,Y) renvoie une valeur à virgule flottante X arrondie à Y chiffres à droite de la virgule décimale. + + + + (X) rtrim(X) removes spaces from the right side of X. + X) rtrim(X) supprime les espaces droite de X. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X, Y) La fonction rtrim(X,Y) renvoie une chaîne formée en supprimant tous les caractères qui apparaissent en Y, à droite de X. + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) La fonction soundex(X) renvoie une chaîne qui est l'encodage soundex de la chaîne X. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X, Y) substr(X,Y) renvoie tous les caractères à partir du n-ième Y jusqu'à la fin de la chaîne X. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X, Y, Z) La fonction substr(X,Y,Z) renvoie une sous-chaîne de la chaîne X à partie du n-ième caractère Y, de longueur Z. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () La fonction total_changes() renvoie le nombre d'enregistrements altérés par les instructions INSERT, UPDATE ou DELETE depuis l’ouverture de la connexion de Base de Données courante. + + + + (X) trim(X) removes spaces from both ends of X. + (X) trim(X) supprime les espaces aux deux extrémités de X. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X, Y) La fonction trim(X,Y) renvoie une chaîne formée en supprimant tous les caractères de Y présents aux deux extrémités de X. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) La fonction typeof(X) renvoie une chaîne qui indique le type de données de l’expression X. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) La fonction unicode(X) renvoie le point de code unicode numérique correspondant au premier caractère de la chaîne X. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) La fonction upper(X) renvoie une copie de la chaîne X dans laquel tous les caractères ASCII en minuscules sont convertis en leurs équivalents en majuscules. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) La fonction zeroblob(N) renvoie un BLOB composé de N octets de valeur 0x00. + + + + + + + (timestring,modifier,modifier,...) + (timestring,modifier,modifier,...) + + + + (format,timestring,modifier,modifier,...) + (format,timestring,modifier,modifier,...) + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) La fonction avg() renvoie la valeur moyenne de tous les X non-NULL dans d’un groupe. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) La fonction count(X) renvoie le nombre de fois où X n’est pas NULL dans un groupe. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) la fonction group_concat() renvoie une chaîne qui est la concaténation de toutes les valeurs non-NULL de X. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X, Y) La fonction group_concat() renvoie une chaîne qui est la concaténation de toutes les valeurs non-NULL de X. Si le paramètre Y est présent, il est utilisé comme séparateur entre chaque instances de X. + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) La fonction d’agrégat max() renvoie la valeur maximale de toutes les valeurs du groupe. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) La fonction d’agrégation min() renvoie la valeur non-NULL minimale de toutes les valeurs du groupe. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) Les fonctions d'agrégation sum() et total() renvoient la somme de toutes les valeurs non-NULL du groupe. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () Le numéro del'enregistrement dans la partition courante. Les lignes sont numérotées à partir de 1 dans l'ordre défini par la clause ORDER BY dans la définition de la fenêtre, ou, sinon, dans un ordre arbitraire. + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Le row_number() enregistrement homologue de chaque groupe - le rang de l'enregistrement courant avec les écarts. S'il n'y a pas de clause ORDER BY, alors tous les enregistrements sont considérées comme homologues et cette fonction renvoie toujours 1. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Le numéro du groupe d'enregistrements homologues de la rangée courante dans sa partition - le rang de la rangée courante sans espaces. Les partitions sont numérotées à partir de 1 dans l'ordre défini par la clause ORDER BY dans la définition de la fenêtre. S'il n'y a pas de clause ORDER BY, alors toutes les lignes sont considérées comme homologues et cette fonction renvoie toujours 1. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () Malgré le nom, cette fonction retourne toujours une valeur comprise entre 0.0 et 1.0 égale à (rang - 1)/(rangées de partitions - 1), où rang est la valeur retournée par la fonction de fenêtre intégrée rank() et rangées de partitions est le nombre total de rangées dans la partition. Si la partition ne contient qu'une seule ligne, cette fonction renvoie 0.0. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () Répartition cumulée. Calculée en tant que ligne-numéro/rangées-partition, où ligne-numéro est la valeur retournée par row_number() pour le dernier homologue dans le groupe et ligne-partition le nombre de lignes dans la partition. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) L'argument N est traité comme un entier. Cette fonction divise la partition en N groupes le plus uniformément possible et attribue un entier compris entre 1 et N à chaque groupe, dans l'ordre défini par la clause ORDER BY, ou, sinon, dans un ordre arbitraire. Si nécessaire, les plus grands groupes se forment en premier. Cette fonction retourne la valeur entière assignée au groupe dont la ligne courante fait partie. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) Retourne le résultat de l'évaluation de l'expression expr par rapport à la ligne précédente de la partition. Ou NULL s'il n'y a pas de ligne précédente (parce que la ligne courante est la première). + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr,offset) Si l'argument offset est fourni, alors il doit être un entier non négatif. Dans ce cas, la valeur retournée est le résultat de l'évaluation de expr par rapport au décalage des lignes avant la ligne courante dans la partition. Si l'offset est égal à 0, alors expr est évalué par rapport à la ligne courante. S'il n'y a pas de lignes de décalage de ligne avant la ligne courante, NULL est retourné. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,offset,default) Si la valeur par défaut est aussi renseignée, cette valeur sera retournée au lieu de NULL si la ligne identifiée par offset n'existe pas. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) Retourne le résultat de l'évaluation de l'expression expr par rapport à la ligne suivante de la partition. Ou NULL s'il n'y a pas de ligne suivante (parce que la ligne courante est la dernière). + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,offset) Si l'argument offset est fourni, alors il doit être un entier non négatif. Dans ce cas, la valeur retournée est le résultat de l'évaluation de expr par rapport par rapport au décalage des lignes après la ligne courante dans la partition. Si l'offset est égal à 0, alors expr est évalué par rapport à la ligne courante. S'il n'y a pas de lignes de décalage de ligne après la ligne courante, NULL est retourné. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) Cette fonction de fenêtrage intégrée calcule le cadre de la fenêtre pour chaque rangée de la même manière qu'une fonction de fenêtrage agrégée. Elle retourne la valeur de expr évaluée par rapport à la première ligne du cadre de la fenêtre pour chaque ligne. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) Cette fonction de fenêtrage intégrée calcule le cadre de la fenêtre pour chaque rangée de la même manière qu'une fonction de fenêtrage agrégée. Elle retourne la valeur de expr évaluée par rapport à la dernière ligne du cadre de la fenêtre pour chaque ligne. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr,N) Cette fonction de fenêtrage intégrée calcule le cadre de la fenêtre pour chaque rangée de la même manière qu'une fonction de fenêtrage agrégée. Elle retourne la valeur de expr évaluée par rapport à la ligne N du cadre de la fenêtre. Les rangées sont numérotées à l'intérieur du cadre de la fenêtre à partir de 1 dans l'ordre défini par la clause ORDER BY si elle est présente, ou dans un ordre arbitraire sinon. S'il n'y a pas de Nième ligne dans la partition, alors NULL est retourné. + + + + SqliteTableModel + + + reading rows + Lecture des enregistrements + + + + loading... + chargement... + + + + References %1(%2) +Hold %3Shift and click to jump there + Références %1(%2) +Appuyez simultanément sur %3+Maj et cliquez pour arriver ici + + + + Error changing data: +%1 + Erreur lors du changement des données : +%1 + + + + retrieving list of columns + récupération de la liste des colonnes + + + + Fetching data... + Récupération des données... + + + + + Cancel + Annuler + + + + TableBrowser + + + Browse Data + Parcourir les données + + + + &Table: + &Table : + + + + Select a table to browse data + Sélectionner une table pour parcourir son contenu + + + + Use this list to select a table to be displayed in the database view + Utiliser cette liste pour sélectionner la table à afficher dans la vue Base de Données + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + Ceci est la vue des tables de la Base de Données. Vous pouvez effectuer les actions suivantes : + - Commencez à écrire pour éditer en ligne la valeur. + - Double-cliquez sur n'importe quel enregistrement pour éditer son contenu dans la fenêtre de l'éditeur de cellule. + - Alt+Supp pour supprimer le contenu de la cellule et la met à NULL. + - Ctrl+" pour dupliquer l'enregistrement en cours. + - Ctrl+' pour copier la valeur de la cellule ci-dessus. + - Sélection standard et opérations de copier/coller. + + + + Text pattern to find considering the checks in this frame + Modèle de texte à trouver en tenant compte des contrôles de ce cadre + + + + Find in table + Chercher dans la table + + + + Find previous match [Shift+F3] + Trouver la correspondance précédente [Maj+F3] + + + + Find previous match with wrapping + Trouver la correspondance précédente avec le modèle + + + + Shift+F3 + Maj+F3 + + + + Find next match [Enter, F3] + Trouver la correspondance suivante [Entrée, F3] + + + + Find next match with wrapping + Trouver la correspondance suivante avec le modèle + + + + F3 + + + + + The found pattern must match in letter case + Le motif recherché doit respecter la casse des lettres + + + + Case Sensitive + Sensible à la casse + + + + The found pattern must be a whole word + Le motif trouvé doit être un mot entier + + + + Whole Cell + Ensemble de la cellule + + + + Interpret search pattern as a regular expression + Interpréter le modèle de recherche comme une expression régulière + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Lorsque cette case est cochée, le motif à trouver est interprété comme une expression régulière UNIX. Voir <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + Regular Expression + Expression régulière + + + + + Close Find Bar + Fremer la barre de recherche + + + + Text to replace with + Texte à remplacer par + + + + Replace with + Remplacer par + + + + Replace next match + Remplacer la prochaine correspondance + + + + + Replace + Remplacer + + + + Replace all matches + Remplacer toutes les correspondances + + + + Replace all + Remplacer tout + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Aller au début</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Cliquer sur ce bouton permet d'aller au début de la table ci-dessus.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + Remonter d'une page + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>Cliquer sur ce bouton permet d'afficher la page précédente des enregistrements de la table ci dessus.</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 de 0 + + + + Scroll one page downwards + Descendre d'une page + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>Cliquer sur ce bouton permet d'afficher la page suivante des enregistrements de la table ci dessus.</p></body></html> + + + + > + > + + + + Scroll to the end + Aller à la fin + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + <html><head/><body><p>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Cliquer sur ce bouton permet d'aller à la fin de la table ci-dessus.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</p></body></html> + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>Cliquer ici pour vous déplacer sur l'enregistrement indiqué</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>Ce bouton est utilisé pour aller directement à l'enregistrement indiqué dans le champ Aller à.</p></body></html> + + + + Go to: + Aller à : + + + + Enter record number to browse + Entrez le nombre d'enregistrements à parcourir + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Entrez un numéro d'enregistrement dans ce champ et cliquez sur le bouton "Aller à" pour afficher l'enregistrement dans la vue Base de Données + + + + 1 + 1 + + + + Show rowid column + Afficher la colonne RowId + + + + Toggle the visibility of the rowid column + Permet d'afficher ou non la colonne RowId + + + + Unlock view editing + Dévérouiller l'éditeur de vues + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + Permet de dévérouiller la vue courante pour l'éditer. Cependant, vous aurez besoin de déclencheurs appropriés pour faire cela. + + + + Edit display format + Modifier le format d'affichage + + + + Edit the display format of the data in this column + Modifie le format d'affichage des données contenues dans cette colonne + + + + + New Record + Nouvel Enregistrement + + + + + Insert a new record in the current table + Insérer un nouvel enregistrement dans la table en cours + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>Ce bouton crée un nouvel enregistrement dans la Base de Données. Maintenez le bouton de la souris enfoncé pour ouvrir un menu contextuel de différentes options :</p><ul><li><span style=" font-weight:600;">Nouvel Enregistrement</span> : Insère un nouvel enregistrement avec les valeurs par défaut dans la Base de Données.</li><li><span style=" font-weight:600;">Insérer des valeurs...</span> : ouvre une boite de dialogue pour saisir des valeurs avant leur insersion dans la Base de Données. Ceci permet de saisir des valeurs correspondant aux différentes contraintes. Cette boîte de dialogue est également ouverte si l'option <span style=" font-weight:600;">Nouvel Enregistrement </span> est en erreur à cause de ces contraintes.</li></ul></body></html> + + + + + Delete Record + Supprimer l'enregistrement + + + + Delete the current record + Supprimer l'enregistrement courant + + + + + This button deletes the record or records currently selected in the table + Ce bouton permet de supprimer l'enregistrement sélectionné dans la table + + + + + Insert new record using default values in browsed table + Insérer un nouvel enregistrement en utilisant les valeurs par défaut de la table parcourrue + + + + Insert Values... + Ajouter des valeurs... + + + + + Open a dialog for inserting values in a new record + Ouvre une fenêtre de dialogue permettant l'insersion de valeurs dans un nouvel enregistrement + + + + Export to &CSV + Exporter au format &CSV + + + + + Export the filtered data to CSV + Exporte les données filtrées au format CSV + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + Ce bouton exporte les données de la table parcourue telles qu'elles sont actuellement affichées (après les filtres, les formats d'affichage et la colonne d'ordre) dans un fichier CSV. + + + + Save as &view + Enregistrer comme une &vue + + + + + Save the current filter, sort column and display formats as a view + Enregistrer le filtre, la colonne de tri et les formats d'affichage actuels sous la forme d'une vue + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + Ce bouton permet d'enregistrer les paramètres actuels de la table parcourue (filtres, formats d'affichage et colonne d'ordre) sous forme de vue SQL que vous pourrez ensuite parcourir ou utiliser dans les instructions SQL. + + + + Save Table As... + Enregistrer la table sous... + + + + + Save the table as currently displayed + Enregistrer la table comme affichée actuellement + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>Ce menu déroulant fournit les options suivantes s'appliquant à la table actuellement parcourue et filtrée:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Exporter au format CSV : cette option exporte les données de la table parcourue telles qu'elles sont actuellement affichées (après filtres, formats d'affichage et colonne d'ordre) vers un fichier CSV.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Enregistrer comme vue : cette option permet d'enregistrer les paramètres actuels de la table parcourue (filtres, formats d'affichage et colonne d'ordre) dans une vue SQL que vous pourrez ensuite parcourir ou utiliser dans les instructions SQL.</li></ul></body></html> + + + + Hide column(s) + Masquer une/des colonnes + + + + Hide selected column(s) + Maquer la/les colonnes sélectionnées + + + + Show all columns + Afficher toutes les colonnes + + + + Show all columns that were hidden + Permet d'afficher toutes les colonnes qui ont été masquées + + + + + Set encoding + Définir l'encodage + + + + Change the encoding of the text in the table cells + Change l'encodage du texte des cellules de la table + + + + Set encoding for all tables + Définir l'encodage pour toutes les tables + + + + Change the default encoding assumed for all tables in the database + Change l'encodage par défaut choisi pour l'ensemble des tables de la Base de Données + + + + Clear Filters + Effacer les filtres + + + + Clear all filters + Effacer tous les filtres + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + Ce bouton efface tous les filtres définis dans les champs de saisie de l'en-tête de la table actuellement parcourue. + + + + Clear Sorting + Effacer le tri + + + + Reset the order of rows to the default + Rétablit l'ordre des lignes aux valeurs par défaut + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + Ce bouton efface les critères de tri définis pour les colonnes de la table actuellement parcourue et revient à l'ordre par défaut. + + + + Print + Imprimer + + + + Print currently browsed table data + Imprimer le données de la table actuellement parcourues + + + + Print currently browsed table data. Print selection if more than one cell is selected. + Imprimer le données de la table actuellement parcourues. Imprime la sélection si plus d'une cellule est sélectionnée. + + + + Ctrl+P + + + + + Refresh + Rafraichir + + + + Refresh the data in the selected table + Rafraîchir les données de la table sélectionnée + + + + This button refreshes the data in the currently selected table. + Ce bouton permet de rafraîchir les données de la table actuellement sélectionnée. + + + + F5 + + + + + Find in cells + Rechercher dans les cellules + + + + Open the find tool bar which allows you to search for values in the table view below. + Ouvre la barre d'outils de recherche qui vous permet de rechercher des valeurs dans la table ci-dessous. + + + + + Bold + Gras + + + + Ctrl+B + + + + + + Italic + Italique + + + + + Underline + Souligné + + + + Ctrl+U + + + + + + Align Right + Aligrer à Droite + + + + + Align Left + Aligner à Gauche + + + + + Center Horizontally + Centrer Horizontalement + + + + + Justify + Justifié + + + + + Edit Conditional Formats... + Éditer les formats conditionnels... + + + + Edit conditional formats for the current column + Éditer les formats conditionnels de la colonne en cours + + + + Clear Format + Effacer les Formats + + + + Clear All Formats + Effacer tous les Formats + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + Effacr tous les formats de cellule des cellules sélectionnées et tous les formats conditionnels des colonnes sélectionnées + + + + + Font Color + Couleur de Police + + + + + Background Color + Couleur d'arrière plan + + + + Toggle Format Toolbar + Changer le format de lma barre d'outils + + + + Show/hide format toolbar + Afficher/Cacher la barre des formats + + + + + This button shows or hides the formatting toolbar of the Data Browser + Ce bouton permet d'afficher ou de masquer la barre d'outils de formatage du navigateur de données + + + + Select column + Sélectionner une colonne + + + + Ctrl+Space + Ctrl+Espace + + + + Replace text in cells + Remplace du texte dans les cellules + + + + Filter in any column + Filtrer dans n'importe quelle colonne + + + + Ctrl+R + + + + + %n row(s) + + %n ligne + %n lignes + + + + + , %n column(s) + + , %n colonne + , %n colonnes + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . Somme: %1; Moyenne: %2; Min: %3; Max: %4 + + + + Conditional formats for "%1" + Format conditionnel pour "%1" + + + + determining row count... + Détermination du nombre d'enregistrements... + + + + %1 - %2 of >= %3 + %1 - %2 de >= %3 + + + + %1 - %2 of %3 + %1 - %2 de %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + Veuillez entrer une pseudo clé primaire pour permettre l'édition de la vue. Ce devrait être le nom d'une colonne unique dans la vue. + + + + Delete Records + Supprimer les enregistrements + + + + Duplicate records + Enregistrement en double + + + + Duplicate record + Dupliquer l'enregistrement + + + + Ctrl+" + + + + + Adjust rows to contents + Ajuster les lignes au contenu + + + + Error deleting record: +%1 + Erreur dans la suppression d'un enregistrement : +%1 + + + + Please select a record first + Veuillez sélectionner au préalable un enregistrement + + + + There is no filter set for this table. View will not be created. + Il n'existe pas de filtre pour cette table. La vue ne sera pas créée. + + + + Please choose a new encoding for all tables. + Veuillez choisir un nouvel encodage pour toutes les tables. + + + + Please choose a new encoding for this table. + Veuillez choisir un nouvel encodage pour cette table. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Laissez le champ vide pour utiliser l'encodage de la Base de Données. + + + + This encoding is either not valid or not supported. + Cet encodage est invalide ou non supporté. + + + + %1 replacement(s) made. + %1 remplacement(s) effectué(s). + + + + VacuumDialog + + + Compact Database + Compacter la Base de Données + + + + Warning: Compacting the database will commit all of your changes. + Attention : compacter la base de donnée entraînera l'enregistrement de tous les changements effectués. + + + + Please select the databases to co&mpact: + Veuillez saisir le nom de la Base de Données à co&mpacter : + + + diff --git a/ConfigFiles/translations/sqlb_it.qm b/ConfigFiles/translations/sqlb_it.qm new file mode 100644 index 0000000..49ab89b Binary files /dev/null and b/ConfigFiles/translations/sqlb_it.qm differ diff --git a/ConfigFiles/translations/sqlb_it.ts b/ConfigFiles/translations/sqlb_it.ts new file mode 100644 index 0000000..ea0b7e3 --- /dev/null +++ b/ConfigFiles/translations/sqlb_it.ts @@ -0,0 +1,7020 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + Informazioni su DB Browser for SQLite + + + + Version + Versione + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB-Browser for SQLite è uno strumento grafico opensource e freeware usato per creare, struttutturare e modificare file database di SQLite</p><p>È rilasciato sotto la licenza Mozilla Public License Version 2, così come sotto la licenza GNU General Public License Version 3 o successive. È possibile modificarlo e redistribuirlo sotto le condizioni specificate da queste licenze.</p><p>Si veda <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> e <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> per ulteriori dettagli.</p><p>Per ulteriori dettagli riguardo questo programma visitate il nostro sito web a: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">Questo software usa GPL/LGPL QT Toolkit da </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>Si veda </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> per termini di licenza e informazioni.</span></p><p><span style=" font-size:small;">Utilizza inoltre Silk-Iconset di Mark James, rilasciato sotto licenza Creative Commons Attribution 2.5 e 3.0.<br/>Si veda </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> per ulteriori dettagli.</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + Aggiungi un nuovo record + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + Inserisci i valori per il nuovo record considerando i vincoli. I campi in grassetto sono obbligatori. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + Nella colonna Valore puoi specificare il valore per il campo identificato dalla colonna Nome. La colonna Tipo indica il tipo del campo. I valori di default sono mostrati nello stesso stile come valori NULL. + + + + Name + Nome + + + + Type + Tipo + + + + Value + Valore + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + Valori da inserire. Sono preinseriti dei valori di default automaticamente a meno che essi non vengano cambiati. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + Quando modifichi i valori nel riquadro superiore, la query SQL per inserire questo nuovo record è mostrata qui. Puoi modificare manualmente la query prima di salvare. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Salva</span> invia la richiesta SQL mostrata al database per inserire un nuovo record.</p><p><span style=" font-weight:600;">Ripristina Defaults</span> ripristinerà i valori iniziali della colonna <span style=" font-weight:600;">Valore</span>.</p><p><span style=" font-weight:600;">Annulla</span> chiuderà questa finestra di dialogo senza eseguire la query.</p></body></html> + + + + Auto-increment + + Auto-incrementale + + + + + Unique constraint + + Restrizione univoco + + + + + Check constraint: %1 + + Controlla restrizioni: %1 + + + + + Foreign key: %1 + + Chiave esterna: %1 + + + + + Default value: %1 + + Valore di default: %1 + + + + + Error adding record. Message from database engine: + +%1 + Errore nell'aggiungere il record. Messaggio dal database engine: + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + Sei sicuro di voler ripristinare tutti i valori inseriti ai loro valori di default? + + + + Application + + + Possible command line arguments: + Possibili argomenti da linea di comando: + + + + Usage: %1 [options] [<database>|<project>] + + Utilizzo: %1 [opzioni] [<database>|<progetto>] + + + + + -h, --help Show command line options + -h, --help Mostra le opzioni da riga di comando + + + + -q, --quit Exit application after running scripts + -q, --quit Chiude l'applicazione dopo aver eseguito gli scripts + + + + -s, --sql <file> Execute this SQL file after opening the DB + -s, --sql <file> Esegue questo file SQL dopo aver aperto il DB + + + + -t, --table <table> Browse this table after opening the DB + -t, --table <table> Mostra questa tabella dopo aver aperto il DB + + + + -R, --read-only Open database in read-only mode + -R, --read-only Apre il database in sola lettura + + + + -o, --option <group>/<setting>=<value> + -o, --option <gruppo>/<impostazione>=<valore> + + + + Run application with this setting temporarily set to value + Esegue l'applicazione con queste impostazioni applicate temporaneamente + + + + -O, --save-option <group>/<setting>=<value> + -O, --save-option <gruppo>/<impostazione>=<valore> + + + + Run application saving this value for this setting + Esegue l'applicazione salvando questo valore come impostazione + + + + -v, --version Display the current version + -v, --version Mostra la versione corrente + + + + <database> Open this SQLite database + <database> Apre questo database SQLite + + + + <project> Open this project file (*.sqbpro) + <project> Apre questo file di progetto (*.sqbpro) + + + + The -s/--sql option requires an argument + L'opzione -s/--sql richiede un argomento + + + + The file %1 does not exist + Il file %1 non esiste + + + + The -t/--table option requires an argument + L'opzione -t/--table richiede un argomento + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + L'opzioni -o/--option e -O/--save-option richiedono un parametro nel formato gruppo/impostaizione=valore + + + + SQLite Version + Versione SQLite + + + + SQLCipher Version %1 (based on SQLite %2) + Versione SQLCipher %1 (basata su SQLite %2) + + + + DB Browser for SQLite Version %1. + DB Browser for SQLite Versione %1. + + + + Built for %1, running on %2 + Compilato per %1, in esecuzione su %2 + + + + Qt Version %1 + Versione Qt %1 + + + + Invalid option/non-existant file: %1 + Opzione non valida/file inesistente: %1 + + + + CipherDialog + + + SQLCipher encryption + Criptatura SQLCipher + + + + &Password + &Password + + + + &Reenter password + &Reinserire password + + + + Encr&yption settings + I&mpostazioni cifratura + + + + SQLCipher &3 defaults + Predefiniti SQLCipher &3 + + + + SQLCipher &4 defaults + Predefiniti SQLCipher &4 + + + + Custo&m + Personalizzat&i + + + + Page si&ze + Di&mensioni pagina + + + + &KDF iterations + Integrazione &KDF + + + + HMAC algorithm + Algoritmo HMAC + + + + KDF algorithm + Algoritmo KDF + + + + Plaintext Header Size + Dimensione header testuale + + + + Passphrase + Chiave testuale + + + + Raw key + Chiave grezza + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + Perfavore inserisci una chiave per criptare il database. +Nota che se cambi una qualsiasi delle altre impostazioni opzionali, dovrai reinserirle ogni volta che apri il file del database. +Lascia i campi password vuoti per disabilitare la crittografia. +Il processo di crittazione può richiedere del tempo e dovresti avere una copia di backup del database! Modifiche non salvate sono applicate prima di modificare la crittografia. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + Si prega d'inserire la chiave utilizzata per criptare il database. +Se una qualunque altra impostazione è stata modificata per l'inserimento della criptazione si prega d'impostarla in modo adeguato. + + + + ColumnDisplayFormatDialog + + + Choose display format + Seleziona il formato di visualizzazione + + + + Display format + Formato di visualizzazione + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + Seleziona un formato di visualizzazione per la colonna '%1' che è applicato a ciascun valore prima di mostrarlo. + + + + Default + Default + + + + Decimal number + Numero decimale + + + + Exponent notation + Notazione esponenziale + + + + Hex blob + Blob esadecimale + + + + Hex number + Numero esadecimale + + + + Octal number + Numero ottale + + + + Round number + Numero arrotondato + + + + Apple NSDate to date + Apple NSDate ad oggi + + + + Java epoch (milliseconds) to date + Java epoch (millisecondi) ad oggi + + + + .NET DateTime.Ticks to date + .NET DateTime.Ticks ad oggi + + + + Julian day to date + Giorno giuliano ad oggi + + + + Unix epoch to date + Unix epoch ad oggi + + + + Unix epoch to local time + Unix epoch a ora locale + + + + Windows DATE to date + Windows DATE ad oggi + + + + Date as dd/mm/yyyy + Data come gg/mm/aaaa + + + + Lower case + Minuscolo + + + + Upper case + Maiuscolo + + + + Custom + Personalizzato + + + + Custom display format must contain a function call applied to %1 + I formati di visualizzazione personalizzati devono contenere una chiamata a funzione applicata a %1 + + + + Error in custom display format. Message from database engine: + +%1 + Errore nel formato personalizzato di visualizzazione. Messaggio dal motore DB: + +%1 + + + + Custom display format must return only one column but it returned %1. + Il formato di visualizzazione personalizzato deve restituire solo una colonna ma ha restituito %1. + + + + CondFormatManager + + + Conditional Format Manager + Gestore della formattazione condizionale + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + Questa finestra permette la creazione e modifica della formattazione condizionale. Lo stile di ogni cella corrisponde alla prima condizione corrispondente. Le formattazioni condizionali possono essere spostate su e giù, quelle in posizione superiore avranno precedenza su quelle inferiori. La sintassi per le condizioni è la stessa utilizzata per i filtri e una condizione vuota corrisponde a tutti i valori. + + + + Add new conditional format + Aggiunti nuova condizione + + + + &Add + &Aggiungi + + + + Remove selected conditional format + Rimuovi la condizione selezionata + + + + &Remove + &Rimuovi + + + + Move selected conditional format up + Sposta la condizione selezionata in su + + + + Move &up + Sposta &su + + + + Move selected conditional format down + Sposta la condizione selezionata giù + + + + Move &down + Sposta &giù + + + + Foreground + Primo piano + + + + Text color + Colore del testo + + + + Background + Sfondo + + + + Background color + Colore dello sfondo + + + + Font + Testo + + + + Size + Dimensione + + + + Bold + Grassetto + + + + Italic + Corsivo + + + + Underline + Sottolinea + + + + Alignment + Allineamento + + + + Condition + Condizione + + + + + Click to select color + Clicca per scegliere il colore + + + + Are you sure you want to clear all the conditional formats of this field? + Sei sicuro di voler eliminare tutte le formattazioni condizionali di questo campo? + + + + DBBrowserDB + + + This database has already been attached. Its schema name is '%1'. + Questo database è già stato collegato. Il nome del suo schema è '%1'. + + + + Please specify the database name under which you want to access the attached database + Si prega di specificare il nome del database con cui si vuol accedere al database collegato + + + + Invalid file format + Formato file non valido + + + + Do you really want to close this temporary database? All data will be lost. + Vuoi davvero chiudere questo database temporaneo? Tutti i dati andranno persi. + + + + Do you want to save the changes made to the database file %1? + Vuoi salvare le modifiche effettuate al database %1? + + + + Database didn't close correctly, probably still busy + Il database non è stato chiuso correttamente; probabilmente è ancora occupato + + + + The database is currently busy: + Il database è attualmente in uso: + + + + Do you want to abort that other operation? + Vuoi annullare l'altra operazione? + + + + Exporting database to SQL file... + Esportando il database in file SQL... + + + + + Cancel + Annulla + + + + + No database file opened + Nessun database aperto + + + + Executing SQL... + Eseguendo SQL... + + + + Action cancelled. + Azione annullata. + + + + + Error in statement #%1: %2. +Aborting execution%3. + Errore nello statement #%1: %2. +Annullo l'esecuzione %3. + + + + + and rolling back + e ripristino il db + + + + didn't receive any output from %1 + non ho ricevuto alcun ouput da %1 + + + + could not execute command: %1 + impossibile eseguire il comando: %1 + + + + Cannot delete this object + Non posso cancellare questo oggetto + + + + Cannot set data on this object + Non posso impostare i dati in questo oggetto + + + + + A table with the name '%1' already exists in schema '%2'. + Una tabella con il nome '%1' esiste già nello schema '%2'. + + + + No table with name '%1' exists in schema '%2'. + Nessuna tabella col nome '%1' esiste nello schema '%2'. + + + + + Cannot find column %1. + Impossibile trovare la colonna %1. + + + + Creating savepoint failed. DB says: %1 + Creazione del punto di salvataggio fallita. DB log: %1 + + + + Renaming the column failed. DB says: +%1 + Fallimento dell'operazione di rinomina. DB log: %1 + + + + + Releasing savepoint failed. DB says: %1 + Rilascio del salvataggio falitto. DB log: %1 + + + + Creating new table failed. DB says: %1 + Creazione della nuova tabella fallita. DB log: %1 + + + + Copying data to new table failed. DB says: +%1 + Copia dei dati nella nuova tabella fallita. DB log: %1 + + + + Deleting old table failed. DB says: %1 + Eliminazione della vecchia tabella fallita. DB log: %1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + Errore durante il rinomino della tabella '%1' in '%2. +Messaggio dal DB: +%3 + + + + could not get list of db objects: %1 + non posso ottenere la listra degli oggetti db: %1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + Ripristino di alcuni oggetti associati a questa tabella fallito. Questo è probabilmente dovuto al fatto che i nomi di alcune colonne sono cambiati . Qui c'è la richiesta SQL che potresti voler sistemare ed eseguire manualmente: + + + + + + could not get list of databases: %1 + non è possibile ricavare la lista dei database: %1 + + + + Error setting pragma %1 to %2: %3 + Errore nell'impostare pragma %1 in %2: %3 + + + + File not found. + File non trovato. + + + + Error loading extension: %1 + Errore nel caricamento dell'estensione: %1 + + + + could not get column information + non è possibile ricavare informazioni sulla colonna + + + + DbStructureModel + + + Name + Nome + + + + Object + Oggetto + + + + Type + Tipo + + + + Schema + Schema + + + + Database + Database + + + + Browsables + Navigabili + + + + All + Tutti + + + + Temporary + Temporaneo + + + + Tables (%1) + Tabelle (%1) + + + + Indices (%1) + Indici (%1) + + + + Views (%1) + Viste (%1) + + + + Triggers (%1) + Triggers (%1) + + + + EditDialog + + + Edit database cell + Modifica la cella del database + + + + Mode: + Modalità: + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + Questa è la lista delle modalità supportate dall'editor della cella. Scegli una modalità per vedere o modificare i dati della cella corrente. + + + + Text + Testo + + + + RTL Text + Testo RTL + + + + Binary + Binario + + + + + Image + Immagine + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + Seleziona automaticamente la modalità dell'editor in base al tipo di dato caricato + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + Questo bottone spuntabile permette di abilitare o disabilitare l'adattamento automatico della modalità dell'editor. Quando una nuova cella è selezionata o sono importati nuovi dati e la modalità di adattamento automaitco è abilitata, la modalità si aggiusta al tipo di dato rilevato. Puoi cambiare in seguito la modalità dell'editor in modo manuale. Se vuoi mantenere la modalità selezionata manualmente mentre ti muovi tre le celle, togli la spunta a questo bottone. + + + + Auto-switch + Auto-switch + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + La modalità editor di testo ti pemrette di editare del testo semplice, così come dei dati JSON o XML con evidenziazione della sintassi, formattazione automatica e validazione prima del salvataggio. + +Gli errori sono indicati da una sottolineatura rossa ondulata. + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + Questo editor Qt è utilizzato per le scritture da destra a sinistra, che non sono supportate dall'editor testuale standard. La presenza di caratteri da destra a sinistra è rilevata e la modalità dell'editor viene selezionata automaticamente. + + + + Open preview dialog for printing the data currently stored in the cell + Apre una finestra d'anteprima per la stampa dei dati attualmente memorizzati nella cella + + + + Auto-format: pretty print on loading, compact on saving. + Auto-formato: migliore stampa al caricamento, compatta in salvataggio. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + Quando abilitato, la feature dell'auto-formato formatta i dati al caricamento, rompe il testo in righe e lo indenta per una maggiore leggibilità. Al salvataggio dei dati, la feature dell'auto-formato compatta i dati rimuovendo i fine riga, e spazi bianchi non necessari. + + + + Word Wrap + A capo automatico + + + + Wrap lines on word boundaries + Porta a capo le line di testo al raggiungimento del bordo + + + + + Open in default application or browser + Apri nell'applicazione predefinita o nel browser + + + + Open in application + Apri nell'applicazione + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + Il valore è interpretato come file o URL e aperto nell'applicazione predefinita o nel web browser. + + + + Save file reference... + Salva riferimento file... + + + + Save reference to file + Salva riferimento su file + + + + + Open in external application + Apri in un'applicazione esterna + + + + Autoformat + Autoformato + + + + &Export... + &Esporta... + + + + + &Import... + &Importa... + + + + + Import from file + Importa da file + + + + + Opens a file dialog used to import any kind of data to this database cell. + Apri una finestra di dialogo per importare qualsiasi tipo di dato in questa cella del database. + + + + Export to file + Esporta in un file + + + + Opens a file dialog used to export the contents of this database cell to a file. + Apri una finestra di dialogo utilizzata per esportare i contenuti di questa cella del database in un file. + + + + Apply data to cell + Applica i dati alla cella + + + + Erases the contents of the cell + Cancella i contenuti di questa cella + + + + Set as &NULL + Imposta come &NULL + + + + This area displays information about the data present in this database cell + Quest'area mostra informazioni riguardo i dati presenti in questa cella del database + + + + Type of data currently in cell + Tipo di dato attualmente nella cella + + + + Size of data currently in table + Dimensione dei dati attualmente in tabella + + + + This button saves the changes performed in the cell editor to the database cell. + Questo bottone salva le modifiche fatte alla cella dell'editor alla cella del database. + + + + Apply + Applica + + + + + Print... + Stampa... + + + + Open preview dialog for printing displayed image + Apri la finestra di anteprima per stampare l'immagine mostrata + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + Apri la finestra di anteprima per stampare il testo mostrato + + + + Copy Hex and ASCII + Copia HEX e ASCII + + + + Copy selected hexadecimal and ASCII columns to the clipboard + Copia le colonne esadecimali e ASCII selezionate negli appunti + + + + Ctrl+Shift+C + + + + + + Image data can't be viewed in this mode. + I dati immagine non possono essere visualizzati in questa modalità. + + + + + Try switching to Image or Binary mode. + Prova a passare alla modalità Immagine o Binario. + + + + + Binary data can't be viewed in this mode. + I dati binari non possono essere visualizzati in questa modalità. + + + + + Try switching to Binary mode. + Prova a passare alla modalità Binario. + + + + + Image files (%1) + File immagine (%1) + + + + Binary files (*.bin) + File binario (*.bin) + + + + Choose a file to import + Scegli un file da importare + + + + %1 Image + %1 Immagine + + + + Choose a filename to export data + Scegli un nome del file per esportare i dati + + + + Invalid data for this mode + Dati non validi per questa modalità + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + La cella continete dati %1 non validi. Ragione: %2. Sei davvero sicuro di applicare quello alla cella? + + + + + Type of data currently in cell: Text / Numeric + Tipo di dato attualmente nella cella: Testo / Numerico + + + + + + %n character(s) + + %n carattere + %n caratteri + + + + + Type of data currently in cell: %1 Image + Tipo di dato attualmente nella cella: %1 Immagine + + + + %1x%2 pixel(s) + %1x%2 pixel(s) + + + + Type of data currently in cell: NULL + Tipo di dato attualmente nella cella: NULL + + + + + %n byte(s) + + %n byte + %n bytes + + + + + Type of data currently in cell: Valid JSON + Tipo di dato attualmente nella cella: Valid JSON + + + + Type of data currently in cell: Binary + Tipo di dato attualmente nella cella: Binario + + + + Couldn't save file: %1. + Impossibile salvare il file: %1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + I dati sono stati salvati in un file temporane e sono stati aperti con l'applicazione predefinita. Ora puoi modificare il file e, quando sei pronto, applicare i nuovi dati salvati all'editor di cella o annullare ogni modifica. + + + + EditIndexDialog + + + Edit Index Schema + Modifica Indice Schema + + + + &Name + &Nome + + + + &Table + &Tabella + + + + &Unique + &Univoco + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + Per restringere l'indice a solo una parte della tabella puoi specificare una clausula WHERE qui che selezioni la parte della tabella che dovrà essere indicizzata + + + + Partial inde&x clause + Clausola di &indice parziale + + + + Colu&mns + &Colonne + + + + Table column + Colonna della tabella + + + + Type + Tipo + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + Aggiungi una nuova espressione colonna all'indice. Le espressioni colonna contengono espressioni SQL piuttosto che i nomi delle colonne. + + + + Index column + Indice di colonna + + + + Order + Ordine + + + + Deleting the old index failed: +%1 + Cancellazione del vecchio indice fallita: +%1 + + + + Creating the index failed: +%1 + Creazione del vecchio indice fallita: +%1 + + + + EditTableDialog + + + Edit table definition + Modifica la definizione della tabella + + + + Table + Tabella + + + + Advanced + Avanzate + + + + Database sche&ma + Sche&ma database + + + + Without Rowid + Senza id riga + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + Fai una tabella 'WITHOUT rowid'. Impostare questa spunta richiede un campo di tipo INTEGER con la chiave primaria impostata e l'auto incremento non impostato. + + + + Fields + Campi + + + + Add + Aggiungi + + + + Remove + Rimuovi + + + + Move to top + Muovi in cima + + + + Move up + Muovi su + + + + Move down + Muovi giù + + + + Move to bottom + Muovi al fondo + + + + + Name + Nome + + + + + Type + Tipo + + + + NN + NN + + + + Not null + Non null + + + + PK + CP + + + + Primary key + Chiave Primaria + + + + AI + AI + + + + Autoincrement + Autoincremento + + + + U + U + + + + + + Unique + Univoco + + + + Default + Default + + + + Default value + Valore di default + + + + + + Check + Controlla + + + + Check constraint + Controlla le restrizioni + + + + Collation + Fascicola + + + + + + Foreign Key + Chiave esterna + + + + Constraints + Vincoli + + + + Add constraint + Aggiungi vincolo + + + + Remove constraint + Rimuovi vincolo + + + + Columns + Colonne + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Attenzione: </span>C'è qualcosa in questa definizione di tabella che il nostro parser non comprende. Modificare e salvare questa tabella potrebbe creare dei problemi.</p></body></html> + + + + + Primary Key + Chiave primaria + + + + Add a primary key constraint + Aggiungi un vincolo di chiave primaria + + + + Add a foreign key constraint + Aggiungi un vincolo di chiave esterna + + + + Add a unique constraint + Aggiungi un vincolo di unicità + + + + Add a check constraint + Aggiungi un vincolo di controllo + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + Puoi avere solo una chiave primaria per ogni tabella. Si prega di modificare la chiave primaria attuale. + + + + Error creating table. Message from database engine: +%1 + Error nella creazione della tabella. Messaggio dal database engine: +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Esiste già un campo con quel nome. Si prega di rinominarlo prima o scegliere un nome differente per questo campo. + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + Questa colonna è referenziata in una chiave esterna nella tabella %1 e quindi il nome non può essere modificato. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + Esiste almeno una riga con questo campo impostato a NULL. Questo rende impossibile impostare questa opzione. Si prega prima di modificare quel dato. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + Esiste almeno un riga con un valore non intero in questo campo. Questo rende impossibile impostare l'AI. Si prega prima di cambiare il dato. + + + + Column '%1' has duplicate data. + + La colonna '%1' ha dei dati duplicati. + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + Questo rende impossibile abilitare l'opzionie 'Univoco'. Perfavore rimuovi i dati duplicati, il che permetterà l'abilitazione dell'opzione 'Univoco'. + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + Sei sicuro di voler eliminare il campo '%1'? +Tutti i dati che sono attualmente memorizzati in questo campo andranno persi. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + Perfavore agginugi un campo che rispetti i seguenti criteri prima di impostare l'opzione senza id di riga: + - Opzione Chiave Primaria impostata + - Autoincremento disabilitato + + + + ExportDataDialog + + + Export data as CSV + Esporta i dati come CSV + + + + Tab&le(s) + Tabe&lla(e) + + + + Colu&mn names in first line + Nomi delle &Colonne sulla prima riga + + + + Fie&ld separator + Separatore di ca&mpo + + + + , + , + + + + ; + ; + + + + Tab + Tab + + + + | + | + + + + + + Other + Altro + + + + &Quote character + &Carattere citazione + + + + " + " + + + + ' + ' + + + + New line characters + Carattere di nuova riga + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + Visualizzazione piacevole + + + + Export data as JSON + Esporta i dati come JSON + + + + exporting CSV + esportando in CSV + + + + + Could not open output file: %1 + Impossibile aprire il file di output: %1 + + + + exporting JSON + esportando in JSON + + + + + Choose a filename to export data + Scegliere un nome file per esportare i dati + + + + Please select at least 1 table. + Perfavore seleziona almeno una tabella. + + + + Choose a directory + Scegliere una cartella + + + + Export completed. + Esportazione completata. + + + + ExportSqlDialog + + + Export SQL... + Esporta SQL... + + + + Tab&le(s) + Tabe&lla(e) + + + + Select All + Seleziona tutto + + + + Deselect All + Deseleziona tutto + + + + &Options + &Opzioni + + + + Keep column names in INSERT INTO + Tieni i nomi delle colonne in INSERT INTO + + + + Multiple rows (VALUES) per INSERT statement + Righe multiple (VALUES) per lo statement INSERT + + + + Export everything + Esporta tutto + + + + Export schema only + Esporta solo lo schema + + + + Export data only + Esporta solo i dati + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + Mantieni lo schema esistente (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Sovrascrivi schema precedente (DROP TABLE, poi CREATE TABLE) + + + + Please select at least one table. + Perfavore seleziona almeno una tabella. + + + + Choose a filename to export + Scegli un nome del file per esportare + + + + Export completed. + Esportazione completata. + + + + Export cancelled or failed. + Esportazione annullata o fallita. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + Trova... + + + + Find and Replace... + Trova e Sostituisci... + + + + Print... + Stampa... + + + + ExtendedTableWidget + + + Use as Exact Filter + Usa come filtro esatto + + + + Containing + Che contiene + + + + Not containing + Non contenuto + + + + Not equal to + Non uguale a + + + + Greater than + Maggiore di + + + + Less than + Minore di + + + + Greater or equal + Maggiore o uguale + + + + Less or equal + Minore o uguale + + + + Between this and... + Tra questo e... + + + + Regular expression + Espressione regolare + + + + Edit Conditional Formats... + Modifica Formattazione Condizionale... + + + + Set to NULL + Imposta a NULL + + + + Copy + Copia + + + + Copy with Headers + Copia con gli Headers + + + + Copy as SQL + Copia come SQL + + + + Paste + Incolla + + + + Print... + Stampa... + + + + Use in Filter Expression + Usa nell'espressione del filtro + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + Il contenuto degli appunti è più grande del range selezionato. +Vuoi inserirlo comunque? + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>Non tutti i dati sono stati caricati. <b>Vuoi caricare tutti i dati prima di selezionare tutte le righe?</b><p><p>Rispondere <b>No</b> significa che non verranno caricati i restanti dati e la selezione non verrà effettuata.<br/>Rispondere <b>Si</b> potrebbe richiedere del tempo per caricare i dati, ma la selezione sarà completa.</p>Attenzione: Caricare tutti i dati potrebbe richiedere un grosso quantitativo di memoria in caso di grandi tabelle. + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + Impossibile modificare la selezione in NULL. La colonna %1 ho un vincolo NOT NULL. + + + + FileExtensionManager + + + File Extension Manager + Gestore delle estensioni dei files + + + + &Up + Porta &su + + + + &Down + Porta &giù + + + + &Add + &Aggiungi + + + + &Remove + &Rimuovi + + + + + Description + Descrizione + + + + Extensions + Estensioni + + + + *.extension + *.estensione + + + + FilterLineEdit + + + Filter + Filtro + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + Questi campi di input permettono di effettuare filtri rapidi nella tabella correntemente selezionata. +er impostazione predefinita, le righe che contengono il testo immesso sono escluse. +Sono inoltre supportati i seguenti operatori: +% Wildcard +> Maggiore di +< Minore di +>= Maggiore o uguale +<= Minore o uguale += Uguale a: corrispondenza esatta +<> Diverso: corrispondenza esatta invertita +x~y Intervallo: valori tra x e y +/regexp/ Valori che corrispondono all'espressione regolare + + + + Use for Conditional Format + Usa per formattazioni condizionali + + + + Clear All Conditional Formats + Elimina tutte le formattazioni condizionali + + + + Edit Conditional Formats... + Modifica Formattazione Condizionale... + + + + Set Filter Expression + Imposta l'espressione del filtro + + + + What's This? + Cos'è questo? + + + + Is NULL + È NULL + + + + Is not NULL + Non è NULL + + + + Is empty + È vuoto + + + + Is not empty + Non è vuoto + + + + Not containing... + Non contenente... + + + + Equal to... + Uguale a... + + + + Not equal to... + Non uguale a... + + + + Greater than... + Maggiore di... + + + + Less than... + Minore di... + + + + Greater or equal... + Maggiore o uguale... + + + + Less or equal... + Minore o uguale... + + + + In range... + Nell'intervallo... + + + + Regular expression... + Espressione regolare... + + + + FindReplaceDialog + + + Find and Replace + Trova e sostituisci + + + + Fi&nd text: + Tr&ova testo: + + + + Re&place with: + So&stituisci con: + + + + Match &exact case + Corrispondenza &esatta + + + + Match &only whole words + Trova solo &parole complete + + + + When enabled, the search continues from the other end when it reaches one end of the page + Quando abilitato, la ricerca contninua dall'altro capo del documento quando si raggiunge una fine del documento + + + + &Wrap around + Senza &limiti + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + Quando abilitato, la ricerca va all'indietro dalla corrente posizione del cursore, altrimenti va in avanti + + + + Search &backwards + Cerca &indietro + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>Quando abilitato, la ricerca viene effettuata solo all'interno della selezione corrente.</p></body></html> + + + + &Selection only + &Solo selezionati + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Quando selezionato, la stringa del testo viene interpretata come una espressione regolare Unix. Vedi <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Espressioni regolari su Wikibooks (in inglese)</a>.</p></body></html> + + + + Use regular e&xpressions + Usa &espressioni regolari + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + Trova la prossima occorrenza dalla corrente posizione del cursore nella direzione impostata da "Cerca indietro" + + + + &Find Next + &Trova successivo + + + + F3 + + + + + &Replace + &Sostituisci + + + + Highlight all the occurrences of the text in the page + Evidenzia tutte le occorrenze del testo nella pagina + + + + F&ind All + T&rova tutti + + + + Replace all the occurrences of the text in the page + Sostituisce tutte le occorrenze del testo nella pagina + + + + Replace &All + Sostituisci &Tutti + + + + The searched text was not found + Il testo cercato non è stato trovato + + + + The searched text was not found. + Il testo cercato non è stato trovato. + + + + The searched text was found one time. + Il testo cercato è stato trovato una volta. + + + + The searched text was found %1 times. + Il testo cercato è stato trovato %1 volte. + + + + The searched text was replaced one time. + Il testo cercato è stato sostituito una volta. + + + + The searched text was replaced %1 times. + Il testo cercato è stato sostituito %1 volte. + + + + ForeignKeyEditor + + + &Reset + &Reimposta + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + Clausule per chiave esterna (ON UPDATE, ON DELETE etc.) + + + + ImportCsvDialog + + + Import CSV file + Imoprta file CSV + + + + Table na&me + No&me tabella + + + + &Column names in first line + Nomi &colonna nella prima riga + + + + Field &separator + &Separatore di campo + + + + , + , + + + + ; + ; + + + + + Tab + Tab + + + + | + | + + + + Other + Altro + + + + &Quote character + &Carattere citazione + + + + + Other (printable) + Altro (stampabile) + + + + + Other (code) + Altro (codice) + + + + " + " + + + + ' + ' + + + + &Encoding + Codific&a + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + Pulizia campi? + + + + Separate tables + Separa tabelle + + + + Advanced + Avanzate + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + Quando importo un campo vuoto dal file CSV dentro una tabella con un valore predefinito per quella colonna, quel valore viene inserito. Attivare quest'opzione per inserire invece un valore vuoto. + + + + Ignore default &values + Ignora valori &predefiniti + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + Attivare quest'opzione per fermare l'importazione quando si prova ad importare un valore vuoto in una colonna "NOT NULL" senza valore predefinito. + + + + Fail on missing values + Fallisci su valori mancanti + + + + Disable data type detection + Disabilita rilevamento tipo dati + + + + Disable the automatic data type detection when creating a new table. + Disabilita il riconoscimento automatico della tipologia di dato quando crea una nuova tabella. + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + Quando si importano dati all'interno di una tabella esistente con una chiave primaria, potrebbero esserci conflitti. Questa opzione ti permette di selezionare una strategia per quei casi: Di base l'importazione è annullata e viene fatto un rollback, ma puoi anche scegliere d'ignorare e non importare le righe in conflitto o di rimpiazzare quelle presenti nella tabella. + + + + Abort import + Annulla l'importazione + + + + Ignore row + Ignora la riga + + + + Replace existing row + Rimpiazza la riga esistente + + + + Conflict strategy + Strategia di conflitto + + + + + Deselect All + Deseleziona tutte + + + + Match Similar + Seleziona simili + + + + Select All + Seleziona tutte + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + Esiste già una tabella col nome '%1' e l'importazione in una tabella esistente non è possibile se il numero di colonne non corrisponde. + + + + There is already a table named '%1'. Do you want to import the data into it? + Esiste già una tabella col nome '%1'. Vuoi importare i dati al suo interno? + + + + Creating restore point failed: %1 + Creazione del punto di ripristino fallita: %1 + + + + Creating the table failed: %1 + Creazione della tabella fallita: %1 + + + + importing CSV + importo il CSV + + + + Inserting row failed: %1 + Inserimento della riga fallito: %1 + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + Importare il file '%1' ha richiesto %2ms. Di questi %3ms sono stati spesi in funzioni di riga. + + + + MainWindow + + + DB Browser for SQLite + DB Browser for SQLite + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Struttura database + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + Questa è la struttura del database aperto. +Puoi trascinare SQL da una riga oggetto e rilasciarli dentro altri applicativi o in altre istanze di àDB Browser for SQLite'. + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Naviga nei dati + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Modifica Pragmas + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + Attenzione: questo pragma non è leggibile e questo valore è stato dedotto. Scrivere i pragma può sovrascrivere un LIKE ridefinito provvisto da un'estensione di SQLite. + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + Esegui SQL + + + + toolBar1 + + + + + &File + &File + + + + &Import + &Importa + + + + &Export + &Esporta + + + + &Edit + &Modifica + + + + &View + &Visualizza + + + + &Help + &Aiuto + + + + &Tools + &Strumenti + + + + DB Toolbar + Barra degli strumenti del DB + + + + Edit Database &Cell + Modifica &cella + + + + SQL &Log + &Log SQL + + + + Show S&QL submitted by + Mostra l'S&QL inviato da + + + + User + Utente + + + + Application + Applicazione + + + + Error Log + Registro errori + + + + This button clears the contents of the SQL logs + Questo pulsante cancella il contenuto del log SQL + + + + &Clear + &Pulisci + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + Questo pannello ti permette di esaminare il log di tutti i comandi SQL inviati dall'applicazione o da te stesso + + + + &Plot + &Grafica + + + + DB Sche&ma + Sche&ma DB + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + Questa è la struttura del database aperto. +Puoi trascinare nomi d'oggetto multipli dalla colonna "Nome" e rilasciarli all'interno dell'editor SQL e puoi modificare le proprietà dei nomi rilasciati utilizzando il menù contestuale. Questo può aiutarti nel comporre statement SQL. +Puoi trascinare statement SQL dalla colonna Schema e rilasciarli dentro l'editor SQL o all'interno di altre applicazioni. + + + + + &Remote + &Remoto + + + + + Project Toolbar + Barra degli strumenti di progetto + + + + Extra DB toolbar + Barra degli strumenti extra DB + + + + + + Close the current database file + Chiudi il file di database corrente + + + + &New Database... + &Nuovo Database... + + + + + Create a new database file + Crea un nuovo file di database + + + + This option is used to create a new database file. + Questa opzione è utilizzata per creare un nuovo file di database. + + + + Ctrl+N + + + + + + &Open Database... + &Apri Database... + + + + + + + + Open an existing database file + Apre un file di database esistente + + + + + + This option is used to open an existing database file. + Questa opzione è utilizzata per aprire un file esistente di database. + + + + Ctrl+O + + + + + &Close Database + &Chiudi Database + + + + This button closes the connection to the currently open database file + Questo pulsnate chiude la connessione al file di database attualmente aperto + + + + + Ctrl+W + + + + + &Revert Changes + &Ripristina le modifiche + + + + + Revert database to last saved state + Ripristina il database all'ultimo stato salvato + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + Questa opzione è utilizzata per ripristinare il file di database al suo ultimo stato salvato. Tutte le modifiche fatte dall'ultima opzione di salvataggio sono perse. + + + + &Write Changes + &Salva le modifiche + + + + + Write changes to the database file + Scrive le modifiche sul file di database + + + + This option is used to save changes to the database file. + Questa opzione è utilizzata per salvare le modifiche sul file di database. + + + + Ctrl+S + + + + + Compact &Database... + &Compatta Database... + + + + Compact the database file, removing space wasted by deleted records + Compatta il file di database, rimuovendo lo spazio sprecato dalle righe eliminate + + + + + Compact the database file, removing space wasted by deleted records. + Compatta il file di database rimuovendo lo spazio sprecato dalle righe eliminate. + + + + E&xit + &Esci + + + + Ctrl+Q + + + + + &Database from SQL file... + &Database dal file SQL... + + + + Import data from an .sql dump text file into a new or existing database. + Importa i dati da un file di testo di dump .sql all'interno di un database nuovo o esistente. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + Questa opzione ti permette d'importare i dati da un file di testo di dump .sql all'interno di un database nuovo o esistente. I file di dump SQL possono essere creati dalla maggiorparte dei motori SQL, inclusi MySQL e PostgreSQL. + + + + &Table from CSV file... + &Tabella da file CSV... + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Apre un wizard che ti permette d'importare dati da un file CSV all'interno di una tabella del database. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + Apre un wizard che ti permette d'importare dati da un file CSV all'interno di una tabella del database. I file CSV possono essere creati dalla maggiorparte delle applicazioni database o foglio di calcolo. + + + + &Database to SQL file... + &Database in file SQL... + + + + Export a database to a .sql dump text file. + Esporta un database in un file di testo di dump .sql. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + Questa opzione ti permette di esportare un database in un file di testo di dump .sql. Il file di dump SQL contiene tutti i dati necessari per ricreare il database sulla maggiorparte di motori di database, inclusi MySQL e PostgreSQL. + + + + &Table(s) as CSV file... + &Tabella(e) come file CSV... + + + + Export a database table as a comma separated text file. + Esporta la tabella del database come un file di testo CSV. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + Esporta la tabella del database come un file di testo CSV, pronto per essere importato in un altro database o foglio di calcolo. + + + + &Create Table... + &Crea tabella... + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + Apre un wizard per la creazione di una tabella, dov'è possibile definire il nome e i campi di una nuova tabella del database + + + + &Delete Table... + &Elimina tabella... + + + + + Delete Table + Elimina Tabella + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + Apre un wizard per la cancellazione della tabella, da qui puoi selezionare la tabella del database da eliminare. + + + + &Modify Table... + &Modifica Tabella... + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + Apre un wizard per la modifica di una tabella, da qui è possibile rinominare una tabella esistente. Si può anche aggiungere o rimuovere campi da una tabella così come modificarne il nome o il tipo. + + + + Create &Index... + Crea &Indice... + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + Apre un wizard per la crazione di un indice, da qui è possibile definire un nuovo indice s'una tabella di database pre-esistente. + + + + &Preferences... + &Preferenze... + + + + + Open the preferences window. + Apre la finestra delle preferenze. + + + + &DB Toolbar + &Barra degli strumenti + + + + Shows or hides the Database toolbar. + Mostra o nasconde la barra degli strumenti del database. + + + + Ctrl+T + + + + + Open SQL file(s) + Apri file(s) SQL + + + + This button opens files containing SQL statements and loads them in new editor tabs + Questo pulsante apre files contenenti stringhe SQL e li carica in una nuova scheda dell'editor + + + + Execute line + Esegui riga + + + + F1 + + + + + Sa&ve Project + Sal&va Progetto + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + Questo pulsante ti permette di salvare tutte le impostazioni associate al DB aperto nel file di progetto di DB BRowser for SQLite + + + + This button lets you open a DB Browser for SQLite project file + Questo pulsante ti permette di aprire un file di progetto di DB Browser for SQLite + + + + Ctrl+Shift+O + + + + + Find + Trova + + + + Find or replace + Trova o sostituisci + + + + Print text from current SQL editor tab + Stampa testo dalla scheda corrente dell'editor SQL + + + + Print the structure of the opened database + Stampa la struttura del database aperto + + + + Un/comment block of SQL code + De/Commenta il blocco di codice SQL + + + + Un/comment block + De/Commenta il blocco + + + + Comment or uncomment current line or selected block of code + Commenta o decommenta la riga corrente o il blocco selezionato di codice + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + Commenta o decommenta le righe selezionate o la riga corrente, quando non c'è nessuna selezione. Tutti i blocchi sono modificati in accordo alla prima riga. + + + + Ctrl+/ + + + + + Stop SQL execution + Ferma esecuzione SQL + + + + Stop execution + Ferma esecuzione + + + + Stop the currently running SQL script + Ferma lo script SQL attualmente in esecuzione + + + + &Save Project As... + &Salva Progetto Come... + + + + + + Save the project in a file selected in a dialog + Salva il progetto in un file selezionato tramite una finestra di dialogo + + + + Save A&ll + Salva T&utto + + + + + + Save DB file, project file and opened SQL files + Salva il file DB, file di progetto e tutti i file SQL aperti + + + + Ctrl+Shift+S + + + + + Browse Table + Naviga nei dati + + + + W&hat's This? + Cos'è &questo? + + + + Shift+F1 + + + + + &About + &Informazioni + + + + &Recently opened + &Aperti di recente + + + + Open &tab + Apri &scheda + + + + This button opens a new tab for the SQL editor + Questo pulsante apre una nuova schede dell'editor SQL + + + + &Execute SQL + &Esegui SQL + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + Questo pulsante esegue gli statement SQL evidenziati. Se nessun testo è selezionato, tutti gli statement SQL vengono eseguiti. + + + + + + Save SQL file + Salva file SQL + + + + &Load Extension... + &Carica Estensioni... + + + + + Execute current line + Esegue la riga corrente + + + + This button executes the SQL statement present in the current editor line + Questo pulsante esegue lo statement SQL presente nella riga corrente dell'editor + + + + Shift+F5 + + + + + Export as CSV file + Esporta come file CSV + + + + Export table as comma separated values file + Esporta la tabella come file CSV + + + + &Wiki + &Wiki + + + + Bug &Report... + Bug &Report... + + + + Feature Re&quest... + Richiesta &Funzionalità... + + + + Web&site + Sito &Web + + + + &Donate on Patreon... + &Dona su Patreon... + + + + + Save the current session to a file + Salva la sessione correte in un file + + + + Open &Project... + Apri &Progetto... + + + + + Load a working session from a file + Carica una sessione di lavoro da file + + + + &Attach Database... + &Collega Database... + + + + + Add another database file to the current database connection + Aggiunge un altro file di database alla connessione corrente + + + + This button lets you add another database file to the current database connection + Questo pulsante ti permette di aggiungere un altro file alla connessione corrente + + + + &Set Encryption... + &Imposta cifratura... + + + + + Save SQL file as + Salva file SQL come + + + + This button saves the content of the current SQL editor tab to a file + Questo pulsante salva il contenuto della scheda di editor SQL in un file + + + + &Browse Table + &Naviga Tabella + + + + Copy Create statement + Copia statement CREATE + + + + Copy the CREATE statement of the item to the clipboard + Copia lo statement CREATE negli appunti + + + + SQLCipher &FAQ + SLQCipher &FAQ + + + + Opens the SQLCipher FAQ in a browser window + Apre le SQLCipher FAQ in una finestra del browser + + + + Table(&s) to JSON... + Tabella(&e) in JSON... + + + + Export one or more table(s) to a JSON file + Esporta una o più tabelle in un file JSON + + + + Open Data&base Read Only... + Apri un Data&base in Sola Lettura... + + + + Open an existing database file in read only mode + Apre un file databse esistente in modalità sola lettura + + + + Save results + Salva risultati + + + + Save the results view + Salva i risultati della vista + + + + This button lets you save the results of the last executed query + Questo pulsante ti permette di salvare i risultati dell'ultima query eseguita + + + + + Find text in SQL editor + Trova testo nell'editor SQL + + + + This button opens the search bar of the editor + Questo pulsante apre la barra di ricerca dell'editor + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + Trova e/o sostituisci testo nell'editor SQL + + + + This button opens the find/replace dialog for the current editor tab + Questo pulsante apre la finestra di ricerca/sostituzione testo per la scheda corrente dell'editor + + + + Ctrl+H + + + + + Export to &CSV + Esporta in &CSV + + + + Save as &view + Salva come &vista + + + + Save as view + Salva come vista + + + + Shows or hides the Project toolbar. + Mostra o nasconde la barra degli strumenti di progetto. + + + + Extra DB Toolbar + Barra degli strumenti DB estesa + + + + New In-&Memory Database + Nuovo Database In &Memoria + + + + Drag && Drop Qualified Names + Trascina && Rilascia Nomi Qualificati + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + Usa nomi qualificati (es. "Table"."Campo") quando trascini gli oggetti e li rilasci all'interno dell'editor + + + + Drag && Drop Enquoted Names + Trascina && Rilascia Nomi Quotati + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + Usa gl'identificatori di citazione (es. "Tabella1") quando trascini e rilasci gli oggetti nell'editor + + + + &Integrity Check + Controllo &Integrità + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + Avvia il controllo integrità (integrity check pragma) sul database aperto e riporta il risultato nella scheda "Esegui SQL". Questa operazione esegue un controllo d'integrità sull'intero database. + + + + &Foreign-Key Check + Controlla Chiave &Esterna + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + Avvia il controllo chiavi esterne (foreign_key_check pragma) nel database aperto e riporta il risultato nella scheda "Esegui SQL" + + + + &Quick Integrity Check + Controllo Integrità &Veloce + + + + Run a quick integrity check over the open DB + Avvia un controllo veloce d'integrità sul DB aperto + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + Avvia un controllo veloce d'integrità (quick_check pragma) sul database e riporta il risultato nella scheda "Esegui SQL". Quest comando esegue la maggiorparte dei controlli d'integrità del controllo completo, ma in modo molto più veloce. + + + + &Optimize + &Ottimizza + + + + Attempt to optimize the database + Prova ad ottimizzare il database + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + Avvia l'ottimizzazione del database aperto. Questa operazione potrebbe eseguire delle ottimizzazione che miglioreranno le performance delle query future. + + + + + Print + Stampa + + + + Open a dialog for printing the text in the current SQL editor tab + Apre una finetra per la stampa del testo nella scheda dell'editor SQL + + + + Open a dialog for printing the structure of the opened database + Apre una finestra per la stampa della struttura del database aperto + + + + + Ctrl+P + + + + + Ctrl+F4 + + + + + Execute all/selected SQL + Esegui tutti gli SQL o quelli selezionati + + + + Ctrl+Return + + + + + Ctrl+L + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Ctrl+E + + + + + Reset Window Layout + Ripristina disposizione finestra + + + + Alt+0 + + + + + The database is currenctly busy. + Il database è occupato. + + + + Click here to interrupt the currently running query. + Clicca qui per interrompere la query in esecuzione. + + + + Encrypted + Criptato + + + + Database is encrypted using SQLCipher + Il database è stato criptato utilizzando SQLCipher + + + + Read only + Sola lettura + + + + Database file is read only. Editing the database is disabled. + Il file di database è in sola lettura. Le modifiche al database sono disabilitate. + + + + Database encoding + Codifica Database + + + + + Choose a database file + Seleziona un file di database + + + + Could not open database file. +Reason: %1 + Impossibile aprire il file di database. +Motivo: %1 + + + + + + Choose a filename to save under + Seleziona un nome file per il salvataggio + + + + In-Memory database + Database In-Memoria + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + Sei sicuro di voler eliminare la tabella '%1'? +Tutti i dati associati alla tabella andranno perduti. + + + + Are you sure you want to delete the view '%1'? + Sei sicuro di voler eliminare la vista '%1'? + + + + Are you sure you want to delete the trigger '%1'? + Sei sicuro di voler eliminare il trigger '%1'? + + + + Are you sure you want to delete the index '%1'? + Sei sicuro di voler eliminare l'indice '%1'? + + + + Error: could not delete the table. + Errore: impssibile eliminare la tabella. + + + + Error: could not delete the view. + Errore: impossibile eliminare la vista. + + + + Error: could not delete the trigger. + Errore: impossibile eliminare il trigger. + + + + Error: could not delete the index. + Errore: impossibile eliminare l'indice. + + + + Message from database engine: +%1 + Messaggio dal database: +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + Per modificare la tabella bisogna salvare tutte le modifiche pendenti. +Sei sicuro di voler salvare il database? + + + + Error checking foreign keys after table modification. The changes will be reverted. + Errore nel controllo delle chiavi esterne dopo le modifiche alla tabella. Le modifiche saranno eliminate. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + Questa tabella non ha passato il controllo sulle chiavi esterne.<br/>Dovresti avviare 'Strumenti | Controllo Chiavi Esterne' e correggere i problemi riportati. + + + + Edit View %1 + Modifica vista %1 + + + + Edit Trigger %1 + Modifica Trigger %1 + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + Sto eseguendo degli SQL. Vuoi fermarli per poter eseguire invece l'SQL corrente? Nota che questo potrebbe lasciare il database in uno stato inconsistente. + + + + -- EXECUTING SELECTION IN '%1' +-- + -- ESEGUO LA SELEZIONE IN '%1' +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- ESEGUO LINEA IN '%1' +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- ESEGUO TUTTO IN '%1' +-- + + + + + At line %1: + Alla riga %1: + + + + Result: %1 + Risultato: %1 + + + + Result: %2 + Risultato: %2 + + + + Opened '%1' in read-only mode from recent file list + Aperto '%1' in modalità solo lettura dalla lista dei file recenti + + + + Opened '%1' from recent file list + Aperto '%1' dalla lista di file recenti + + + + Project saved to file '%1' + Progetto salvato sul file '%1' + + + + This action will open a new SQL tab with the following statements for you to edit and run: + Questa azione aprirà una nuova scheda SQL con la seguente stringa SQL per permetterti di modificarla ed eseguirla + + + + Rename Tab + Rinomina il Tab + + + + Duplicate Tab + Duplica il Tab + + + + Close Tab + Chiudi il Tab + + + + Opening '%1'... + Apro '%1'... + + + + There was an error opening '%1'... + Errore durante l'apertura di '%1'... + + + + Value is not a valid URL or filename: %1 + Il valore non è un URL valida o nome file: %1 + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + Impostare i valori PRAGMA o pulizia chiuderanno la transazione corrente. +Sei sicuro? + + + + Execution finished with errors. + Esecuzione completata con errori. + + + + Execution finished without errors. + Esecuzione completata senza errori. + + + + %1 rows returned in %2ms + %1 righe ritornate in %2ms + + + + Choose text files + Seleziona i file di testo + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + Errore nel salvataggio del database. Questo significa che non tutte le modifiche del database sono state salvate. Avrai bisogno di risolvere prima il seguente errore. + +%1 + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + Sei sicuro di voler annullare tutte le modifiche effettuate al database '%1' dall'ultimo salvataggio? + + + + Choose a file to import + Seleziona un file da importare + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (sola lettura) + + + + Open Database or Project + Apri Database o Progetto + + + + Attach Database... + Collega Database... + + + + Import CSV file(s)... + Importa file(s) CSV... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + Seleziona l'azione da applicare al(ai) file(s) scartato(i). <br/>Nota: solo 'Importa' processa più di un file. + + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + Vuoi salvare le modifiche effettuate ai tabs SQL nel file di progetto '%1'? + + + + Text files(*.sql *.txt);;All files(*) + File di testo(*.sql *.txt);;Tutti i files(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + Vuoi creare un nuovo file di database per mantenere i dati importati? +Se rispondi di no proveremo ad importare i dati del file SQL all'interno del database corrente. + + + + Window Layout + Disposizione finestra + + + + Simplify Window Layout + Semplifica disposizione finestra + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + Blocca finestre in basso + + + + Dock Windows at Left Side + Blocca finestre al lato sinistro + + + + Dock Windows at Top + Blocca finestre in cima + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + Sto ancora eseguendo comandi SQL. Se chiudi il database ora non verrano eseguiti, il database potrebbe rimanere in uno stato inconsistente. Sei sicuro di voler chiudere il database? + + + + Do you want to save the changes made to the project file '%1'? + Vuoi salvare le modifiche fatte al file di progetto '%1'? + + + + File %1 already exists. Please choose a different name. + Il file %1 esiste già. Si prega di scegliere un nome differente. + + + + Error importing data: %1 + Errore nell'importazione: %1 + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + Importaizone completata. Alcuni vincoli per le chiavi esterne non sono rispettati. Si prega di correggerli prima di salvare. + + + + Import completed. + Import completato. + + + + Delete View + Elimina Vista + + + + Modify View + Modifica Vista + + + + Delete Trigger + Elimina Trigger + + + + Modify Trigger + Modifica Trigger + + + + Delete Index + Elimina Indice + + + + Modify Index + Modifica Indice + + + + Modify Table + Modifica Tabella + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + Impostare i valori di PRAGMA chiuderà la transaione corrente. +Sei sicuro? + + + + Do you want to save the changes made to SQL tabs in a new project file? + Vuoi salvare le modifiche effettuate alle schede SQL in un nuovo file di progetto? + + + + Do you want to save the changes made to the SQL file %1? + Vuoi salvare le modifiche fatte al file SQL %1? + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + Gli SQL in questa scheda sono ancora in esecuzione. Chiudere la scheda bloccherà l'esecuzione. Questo potrebbe lasciare il database in uno stato inconsistente. Sei sicuro di voler chiudere la scheda? + + + + Select SQL file to open + Selezionare il file SQL da aprire + + + + Select file name + Seleziona il nome del file + + + + Select extension file + Seleziona l'estensione del file + + + + Extension successfully loaded. + Estensione caricata con successo. + + + + Error loading extension: %1 + Errore nel caricamento dell'estensione: %1 + + + + Could not find resource file: %1 + Non posso aprire il file di risorse: %1 + + + + + Don't show again + Non mostrare di nuovo + + + + New version available. + Nuova versione disponibile. + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Una nuova versione di DB Browser for SQLite è disponibile (%1.%2.%3).<br/><br/>Si prega di scaricarla da <a href='%4'>%4</a>. + + + + Choose a project file to open + Seleziona un file di progetto da aprire + + + + DB Browser for SQLite project file (*.sqbpro) + File di progetto DB Browser for SQLite (*.sqbpro) + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + Questo file di progetto utilizza un vecchio formato poiché è stato creato con la versione 3.10 o antecedente. Il caricamento di questo formato è ancora supportato, ma ti suggeriamo di convertire tutti i tuoi files di progetto al nuovo formato poiché il supporto ai formati precedenti potrebbe essere eliminato in futuro. Puoi convertire i tuoi file semplicemente aprendoli e salvandoli nuovamente. + + + + Could not open project file for writing. +Reason: %1 + Non posso scrivere nel file di progetto. +Motivo: %1 + + + + Collation needed! Proceed? + Necessario confronto! Procedo? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + Una tabella di questo database richiede una funzione di confronto speciale '%1' che questa applicazione non può fornire senza ulteriori informazioni. +Se scegli di proseguire, sappi che potrebbero generarsi problemi nel tuo database. +Crea un backup! + + + + creating collation + creo confronto + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + Imposta un nuovo nome per la scheda SQL. Usa il carattere '&&' per utilizzare il carattere succesivo come scorciatoia da tastiera. + + + + Please specify the view name + Si prega di specificare il nome della vista + + + + There is already an object with that name. Please choose a different name. + Esiste già un oggetto con quel nome. Si prega di scegliere un nome diverso. + + + + View successfully created. + Vista creata con successo. + + + + Error creating view: %1 + Errore nella creazione della vista: %1 + + + + This action will open a new SQL tab for running: + Questa azione aprirà una nuova scheda SQL per eseguire: + + + + Press Help for opening the corresponding SQLite reference page. + Premi Aiuto per aprire la pagina di riferimento SQLite corrispondente. + + + + Busy (%1) + Occupato (%1) + + + + NullLineEdit + + + Set to NULL + Imposta a NULL + + + + Alt+Del + + + + + PlotDock + + + Plot + Grafico + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>Questo pannello mostra la lista delle colonne della tabella corrente o della query eseguita. Puoi selezionare la colonna che vuoi utilizzare come asse X o Y per il grafico sottostante. La tabella mostra i tipi d'asse rilevati. Per l'asse Y puoi selezionare solo colonne numeriche, ma per l'asse X potrai selezionare:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Data/Ora</span>: stringhe col formato &quot;aaaa-MM-gg hh:mm:ss&quot; o &quot;aaaa-MM-ggThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Data</span>: stringhe col formato &quot;aaaa-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Orario</span>: stringhe col formato &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Etichette</span>: altri formati di stringa. Selezionando queste colonne come X verrà visualizzato un grafico a barre</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeri</span>: interi or valori reali</li></ul><p>Cliccando due volte sulle celle Y potrai cambiare il colore utilizzato per il grafico.</p></body></html> + + + + Columns + Colonne + + + + X + + + + + Y1 + Y1 + + + + Y2 + Y2 + + + + Axis Type + Tipo asse + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + Qui compare il grafico quando vengono selezionati i valori x e y. + +Clicca s'un punto per selezionarl sul grafico e nella tabella. Ctrl+Click per selezionare un intervallo di punti. + +Usa la rotella del mouse per ingrandire e trascina col mouse per cambiare l'intervallo degli assi. + +Seleziona le etichette dell'asse o degli assi per trascinare o ingrandire solo in quella direzione. + + + + Line type: + Tipo linea: + + + + + None + Nessuna + + + + Line + Linea + + + + StepLeft + Salto sinistro + + + + StepRight + Salto destro + + + + StepCenter + Salto centrato + + + + Impulse + Impulso + + + + Point shape: + Tipo punta: + + + + Cross + Croce + + + + Plus + Più + + + + Circle + Cerchio + + + + Disc + Disco + + + + Square + Quadrato + + + + Diamond + Rombo + + + + Star + Stella + + + + Triangle + Triangolo + + + + TriangleInverted + Triangolo inverso + + + + CrossSquare + Croce quadrato + + + + PlusSquare + Più quadrato + + + + CrossCircle + Croce cerchio + + + + PlusCircle + Più cerchio + + + + Peace + Pace + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>Salva il grafico corrente...</p><p>Formato file selezionato dall'estensione (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + Salva il grafico corrente... + + + + + Load all data and redraw plot + Carica tutti i dati e ridisegna grafico + + + + Copy + Copia + + + + Print... + Stampa... + + + + Show legend + Mostra legenda + + + + Stacked bars + Barre impilate + + + + Date/Time + Data/Ora + + + + Date + Data + + + + Time + Ora + + + + + Numeric + Numerico + + + + Label + Etichetta + + + + Invalid + Invalido + + + + + + Row # + Riga # + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + Carica tutti i dati e ridisegna grafico. +Attenzione: non sono ancora stati recuperati tutti i dati dalla tabella a causa del meccanismo di recupero. + + + + Choose an axis color + Scegli il colore per l'asse + + + + Choose a filename to save under + Scegli il nome di salvataggio + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + Ci sono delle curve in questo grafico e lo stile di line selezionato può essere applicato solo a grafici ordinati per X. Riordina la tabella o seleziona per X per rimuovere le curve o seleziona uno degli stili supportati dalle curve: Nessuno o Linea. + + + + Loading all remaining data for this table took %1ms. + Caricare tutti i dati restanti per questa tabella ha richiesto %1ms. + + + + PreferencesDialog + + + Preferences + Preferenze + + + + &General + &Generale + + + + Default &location + &Posizione di default + + + + Remember last location + Ricorda l'ultima posizione + + + + Always use this location + Usa sempre questa posizione + + + + Remember last location for session only + Ricorda l'ultima posizione solo per questa sessione + + + + + + ... + + + + + Lan&guage + Lin&gua + + + + Toolbar style + Stile barra degli strumenti + + + + + + + + Only display the icon + Mostra solo le icone + + + + + + + + Only display the text + Mostra solo il testo + + + + + + + + The text appears beside the icon + Mostra il testo a lato delle icone + + + + + + + + The text appears under the icon + Mostra il testo sotto le icone + + + + + + + + Follow the style + Segui lo stile + + + + Show remote options + Mostra opzioni remote + + + + + + + + + + + + enabled + abilitato + + + + Automatic &updates + Aggiornamenti a&utomatici + + + + DB file extensions + Estensioni file DB + + + + Manage + Gestisci + + + + Main Window + Finestra principale + + + + Database Structure + Struttura database + + + + Browse Data + Naviga nei dati + + + + Execute SQL + Esegui SQL + + + + Edit Database Cell + Modifica Cella Database + + + + When this value is changed, all the other color preferences are also set to matching colors. + Quando questo valore viene modificato, tutte le altre preferenze di colore vengono impostate al colore corrispondente. + + + + Follow the desktop style + Segui lo stile del desktop + + + + Dark style + Stile scuro + + + + Application style + Stile Applicazione + + + + This sets the font size for all UI elements which do not have their own font size option. + Questo imposta la dimensione del testo per tutti gli elementi dell'interfaccia che non hanno una loro opzione specifica. + + + + Font size + Dimensione testo + + + + &Database + + + + + Database &encoding + &Codifica Database + + + + Open databases with foreign keys enabled. + Apri database contenenti chiavi esterne. + + + + &Foreign keys + Chiavi &Esterne + + + + Remove line breaks in schema &view + Rimuovi a-capo nella &vista dello schema + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + Quando abilitato, vengono rimossi gli a-capo nella colonna dello Schema del tab "Struttura DB", dock e stampa. + + + + Prefetch block si&ze + &Dimensione blocco di prefetch + + + + SQ&L to execute after opening database + SQ&L da eseguire dopo aver aperto il database + + + + Default field type + Tipo di campo di default + + + + Database structure font size + Dimensione testo per la struttura del database + + + + Data &Browser + + + + + Font + + + + + &Font + + + + + Font si&ze + Dimensione te&sto + + + + Content + Contenuto + + + + Symbol limit in cell + Limite simboli nella cella + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + Questo è il numero massimo di oggetti permessi per l'esecuzione di alcune funzioni computazionalmente intense: +Massimo numero di righe in una tabella per abilitare l'autocompletamento basato sui valori correnti di una colonna. +Massimo numero di indici in una selezione per calcolare somma e media. +Può essere impostato a 0 per disabilitare le funzionalità. + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + Questo è il numero massimo di righe in una tabella per abilitare il completamento dei valori basandosi su quelli attualmente nella colonna. +Può essere impostato a 0 per disabilitare il completamento. + + + + Field display + Visualizzazione campi + + + + Displayed &text + &Testo visualizzato + + + + Binary + Binario + + + + NULL + + + + + Regular + Normale + + + + + + + + + Click to set this color + Clicca per impostare questo colore + + + + Text color + Colore del testo + + + + Background color + Colore dello sfondo + + + + Preview only (N/A) + Solo anteprima (N/A) + + + + Filters + Filtri + + + + Escape character + Carattere di escape + + + + Delay time (&ms) + Ritardo (&ms) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + Imposta il tempo d'attesa prima che un nuovo filtro venga applicato. Può essere impostato a 0 per disabilitare l'attesa. + + + + &SQL + &SQL + + + + Settings name + Nome impostazioni + + + + Context + Contesto + + + + Colour + Colore + + + + Bold + Grassetto + + + + Italic + Corsivo + + + + Underline + Sottolinea + + + + Keyword + Parola chiave + + + + Function + Funzione + + + + Table + Tabella + + + + Comment + Commento + + + + Identifier + Identificatore + + + + String + Stringa + + + + Current line + Linea corrente + + + + Background + Sfondo + + + + Foreground + Primo piano + + + + SQL editor &font + &Font editor SQL + + + + SQL &editor font size + Dimensione font &editor SQL + + + + SQL &results font size + Dimensione font &risultati SQL + + + + Tab size + Dimensione tabulazione + + + + &Wrap lines + &A-capo automatico + + + + Never + Mai + + + + At word boundaries + Al limite della parola + + + + At character boundaries + Al limite del carattere + + + + At whitespace boundaries + Al limite del carattere vuoto + + + + &Quotes for identifiers + Identificatori per &citazioni + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + Scegli il tipo meccanismo di citazione utilizzato per il codice SQL. + + + + "Double quotes" - Standard SQL (recommended) + "Doppie virgolette" - Standard SQL (raccomandato) + + + + `Grave accents` - Traditional MySQL quotes + `Apice inverso` - Citazione tradizionale MySQL + + + + [Square brackets] - Traditional MS SQL Server quotes + [Parentesi quadre] - Citazione tradizionale MS SQL Server + + + + Code co&mpletion + Auto co&mpletamento + + + + Keywords in &UPPER CASE + Parole chiave &MAIUSCOLE + + + + When set, the SQL keywords are completed in UPPER CASE letters. + Quando impostato, le parole chiave vengono completate in MAIUSCOLO. + + + + Error indicators + Indicatori d'errore + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + Quando impostato, le righe di codice SQL che causano errori durante l'ultima esecuzione sono evidenziate e il campo del risultato indica l'errore sullo sfondo + + + + Hori&zontal tiling + Affianca &orizzontalmente + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + Se abilitato l'editor di codice SQL e la tabella del risultato sono mostrate una accanto all'altra anzichè una sopra l'altra. + + + + Close button on tabs + Pulsante di chiusura sulle schede + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + Se abilitato, le schede dell'editor SQL avranno un pulsante di chiusura. In ogni caso, puoi utilizzare il menù contestuale o le scorciatoie da tastiera per chiuderle. + + + + &Extensions + &Estensioni + + + + Select extensions to load for every database: + Seleziona le estensioni da caricare per ogni database: + + + + Add extension + Aggiungi estensione + + + + Remove extension + Rimuovi estensione + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>Anche se SQLite supporta l'operatore REGEXP non implementa alcun algoritmo<br/>di espressione regolare, ma richiama l'applicativo in esecuzione. DB Browser for SQLite implementa questo<br/>algoritmo per te per permetterti di usare le REGEXP immediatamente. Ci sono però multiple implementazioni<br/>possibili e potresti voler utilizzare una o l'altra, sei libero di disabilitare l'implementazione<br/>dell'applicativo e caricare la tua utilizzando un'estensione. Richiede il riavvio dell'applicativo.</p></body></html> + + + + Disable Regular Expression extension + Disabilita l'estensione per l'Espressione regolare + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html><head/><body><p>SQLite fornisce una funzione SQL per il cariamento di estensioni da una libreria dinamica condivisa. Attiva questa opzione se vuoi utilizzare la funzione<span style=" font-style:italic;">load_extension()</span> dal codice SQL.</p><p>Per motivi di sicurezza, il caricamento delle estensioni è disabilitato di default e dev'essere abilitato tramite questa impostazione. Puoi sempre caricare le estensioni attraverso l'interfaccia grafica, anche se quest'opzione è disabilitata.</p></body></html> + + + + Allow loading extensions from SQL code + Permetti il caricamento di estensioni dal codice SQL + + + + Remote + Remoto + + + + CA certificates + Certificati CA + + + + Proxy + Proxy + + + + Configure + Configura + + + + + Subject CN + Soggetto CN + + + + Common Name + Nome comune + + + + Subject O + Soggetto O + + + + Organization + Organizzazione + + + + + Valid from + Valido dal + + + + + Valid to + Valido al + + + + + Serial number + Numero di serie + + + + Your certificates + Tuo certificato + + + + Threshold for completion and calculation on selection + Soglia per l'autocompletamento e il calcolo sulla selezione + + + + Show images in cell + Mostra immagini nella cella + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + Abilita questa opzione per mostrare un'anteprima dei BLOBs contenti dati immagine nella cella. Questo potrebbe impattare sulle performance. + + + + File + File + + + + Subject Common Name + Nome comune del soggetto + + + + Issuer CN + CN emittente + + + + Issuer Common Name + Nome comune emittente + + + + Clone databases into + Clona il database in + + + + + Choose a directory + Seleziona una cartella + + + + The language will change after you restart the application. + La lingua verrà modificata dopo il riavvio dell'applicativo. + + + + Select extension file + Seleziona il file d'estensione + + + + Extensions(*.so *.dylib *.dll);;All files(*) + Estensioni(*.so *.dylib *.dll);;Tutti i files(*) + + + + Import certificate file + Importa il file di certificato + + + + No certificates found in this file. + Nessun certificato trovato in questo file. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + Sei sicuro di voler rimuovere questo certificato? Tutti i dati del certificato saranno eliminati dalle impostazioni dell'applicativo! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + Sei sicuro di voler pulire tutte le impostazioni salvate? +Tutte le tue preferenze andranno perse e verranno utilizzati i valori predefiniti. + + + + ProxyDialog + + + Proxy Configuration + Configurazione proxy + + + + Pro&xy Type + Tipo Pro&xy + + + + Host Na&me + No&me host + + + + Port + Porta + + + + Authentication Re&quired + Autenticazione ri&chiesta + + + + &User Name + Nome &Utente + + + + Password + Password + + + + None + Nessuna + + + + System settings + Impostazioni di sistema + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + All files (*) + Tutti i files (*) + + + + Error importing data + Errore nell'import dei dati + + + + from record number %1 + dalla riga numero %1 + + + + . +%1 + . +%1 + + + + Importing CSV file... + Importa file CSV... + + + + Cancel + Annulla + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + File database SQLite (*.db *.sqlite *.sqlite3 *.db3) + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + File di progetto DB Browser for SQLite (*.sqbpro) + + + + SQL Files (*.sql) + SQL Files (*.sql) + + + + All Files (*) + Tutti i files (*) + + + + Text Files (*.txt) + File testuali (*.txt) + + + + Comma-Separated Values Files (*.csv) + File con valori separati da virgola (*.csv) + + + + Tab-Separated Values Files (*.tsv) + Files con valori separati da tabulazione (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + Files con valori separati da delimitatore (*.dsv) + + + + Concordance DAT files (*.dat) + File DAT Concordance (*.dat) + + + + JSON Files (*.json *.js) + JSON Files (*.json *.js) + + + + XML Files (*.xml) + XML Files (*.xml) + + + + Binary Files (*.bin *.dat) + Files binari (*.bin *.dat) + + + + SVG Files (*.svg) + SVG Files (*.svg) + + + + Hex Dump Files (*.dat *.bin) + Hex Dump Files (*.dat *.bin) + + + + Extensions (*.so *.dylib *.dll) + Estensioni (*.so *.dylib *.dll) + + + + Left + Sinistra + + + + Right + Destra + + + + Center + Centrato + + + + Justify + Giustificato + + + + RemoteCommitsModel + + + Commit ID + ID Invio + + + + Message + Messaggio + + + + Date + Data + + + + Author + Autore + + + + Size + Dimensione + + + + Authored and committed by %1 + Creato e inviato da %1 + + + + Authored by %1, committed by %2 + Creato da %1, inviato da %2 + + + + RemoteDatabase + + + Error opening local databases list. +%1 + Errore nell'apertura della lista di database locale. +%1 + + + + Error creating local databases list. +%1 + Errore nella creazione della lista di database locale. +%1 + + + + RemoteDock + + + Remote + Remoto + + + + Identity + Identità + + + + Push currently opened database to server + Invia il database corrente al server + + + + DBHub.io + DBHub.io + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + <html><head/><body><p>In questo pannello, possono essere aggiunti a DB Browser for SQLite i database dal sito web dbhub.io. Prima hai bisogno di un'identità:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Accedi al sito web dbhub.io (usa le tue credenziali GitHub o qualsiasi cosa tu voglia)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Clicca il pulsante per &quot;Generare un certificato cliente&quot; (la tua identità). Questo di darà un file certificato (da salvare sul to disco locale).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Vai alla scheda Remoto nelle preferenze di DB Browser for SQLite. Clicca il pulsante per aggiungere un nuovo certificato a DB Browser for SQLite e scegli il file di certificato appena scaricato.</li></ol><p>Ora il pannello Remoto ti mostrerà la tua identità e potrai aggiungere database remoti.</p></body></html> + + + + Local + Locale + + + + Current Database + Database Corrente + + + + Clone + Clona + + + + User + Utente + + + + Database + Database + + + + Branch + Ramo + + + + Commits + Invii + + + + Commits for + Invii per + + + + Delete Database + Elimina Database + + + + Delete the local clone of this database + Elimina il clone locale di questo database + + + + Open in Web Browser + Apri in nel Web Browser + + + + Open the web page for the current database in your browser + Apre la pagina web per il database corrente nel tuo browser + + + + Clone from Link + Clona dal collegamento + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + Usa questo per scaricare un database remoto per modificarlo in locale usando un URL come fornito sulla pagina web del database. + + + + Refresh + Aggiorna + + + + Reload all data and update the views + Ricarica tutti i dati e aggiorna le viste + + + + F5 + + + + + Clone Database + Clona Database + + + + Open Database + Apri Database + + + + Open the local copy of this database + Apre una copia locale di questo database + + + + Check out Commit + Scarica invio + + + + Download and open this specific commit + Scarica e apre questo specifico invio + + + + Check out Latest Commit + Scarica l'ultimo invio + + + + Check out the latest commit of the current branch + Scarica l'invio più recente per il ramo corrente + + + + Save Revision to File + Salva la revisione su file + + + + Saves the selected revision of the database to another file + Salva la revisione selezionata del database s'un altro file + + + + Upload Database + Carica Database + + + + Upload this database as a new commit + Carica questo database come nuovo invio + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html><head/><body><p>Stai attulamente utilizzando un profilo interno in sola lettura. Per caricare i tuoi database, devi configurare e usare un account DBHub.io.</p><p>Non hai ancora un account DBHub.io? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Creane uno adesso</span></a> e importa il tuo certificato <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">qui</span></a> per condividere i tuoi databases.</p><p>Per aiuto online clicca <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">qui</span></a>.</p></body></html> + + + + Back + Indietro + + + + Select an identity to connect + Seleziona un'identità per connetterti + + + + Public + Pubblico + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + Questo scarica un database ad un server remoto per modificarlo localmente. +Si prega d'inserire l'URL da clonare. Puoi generare questa URL cliccando +il pulsante 'Clona Database in DB4S' sulla pagina web del database. + + + + Invalid URL: The host name does not match the host name of the current identity. + URL non valida: Il nome dell'host non corrisponde al nome dell'host dell'identità corrente. + + + + Invalid URL: No branch name specified. + URL non valida: Nessun ramo specificato. + + + + Invalid URL: No commit ID specified. + URL non valida: Nessun ID Invio specificato. + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + Hai modificato il clone locale del database. Recuperare questo commit sovrascriverà le modifiche locali. +Sei sicuro di voler proseguire? + + + + The database has unsaved changes. Are you sure you want to push it before saving? + Il database ha delle modifiche non salvate. Sei sicuro di volerlo inviare prima di salvare? + + + + The database you are trying to delete is currently opened. Please close it before deleting. + Il database che stai provando a cancellare è attualmente aperto. Si prega di chiuderlo prima d'eliminarlo. + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + Questo elimina la versione locale di questo database con tutte le modifiche che non hai ancora inviato. Sei sicuro di voler eliminare questo database? + + + + RemoteLocalFilesModel + + + Name + Nome + + + + Branch + Ramo + + + + Last modified + Ultima modifca + + + + Size + Dimensione + + + + Commit + Invio + + + + File + File + + + + RemoteModel + + + Name + Nome + + + + Commit + Commit + + + + Last modified + Ultima modifca + + + + Size + Dimensione + + + + Size: + Dimensione: + + + + Last Modified: + Ultima modifica: + + + + Licence: + Licenza: + + + + Default Branch: + Ramo di default: + + + + RemoteNetwork + + + Choose a location to save the file + Scegli una posizione per salvare il file + + + + Error opening remote file at %1. +%2 + Errore aprendo il file remoto a %1. +%2 + + + + Error: Invalid client certificate specified. + Errore: specificato certificato invalido per il client. + + + + Please enter the passphrase for this client certificate in order to authenticate. + Si prega d'inserire la passphrase per questo certificato di client in modo da permetterne l'autenticazione. + + + + Cancel + Annulla + + + + Uploading remote database to +%1 + Carico il database remoto in +%1 + + + + Downloading remote database from +%1 + Scarico il database remoto da +%1 + + + + + Error: The network is not accessible. + Errore: Rete non disponibile. + + + + Error: Cannot open the file for sending. + Errore:Impossibile aprire il file per l'invio. + + + + RemotePushDialog + + + Push database + Invia database + + + + Database na&me to push to + No&me del database a cui inviare + + + + Commit message + Messaggio di commit + + + + Database licence + Licenza database + + + + Public + Pubblico + + + + Branch + Branch + + + + Force push + Forza invio + + + + Username + Nome utente + + + + Database will be public. Everyone has read access to it. + Il database sarà pubblico. Chiunque potrà accedere in lettura. + + + + Database will be private. Only you have access to it. + Il database sarà privato. Solo tu potrai accedervi. + + + + Use with care. This can cause remote commits to be deleted. + Usa con cautela. Questo può eliminare dei commit remoti. + + + + RunSql + + + Execution aborted by user + Esecuzione terminata dall'utente + + + + , %1 rows affected + , %1 righe modificate + + + + query executed successfully. Took %1ms%2 + query eseguita con successo. Impiegati %1ms%2 + + + + executing query + query in esecuzione + + + + SelectItemsPopup + + + A&vailable + &Disponibile + + + + Sele&cted + Se&lezionato + + + + SqlExecutionArea + + + Form + + + + + Find previous match [Shift+F3] + Trova corrispondenza precedente [Shift+F3] + + + + Find previous match with wrapping + Trova la corrispondenza precedente con reinizio + + + + Shift+F3 + + + + + The found pattern must be a whole word + Il pattern trovato deve essere una parola intera + + + + Whole Words + Parole intere + + + + Text pattern to find considering the checks in this frame + Il pattern da cercare considerando le spunte in quest'area + + + + Find in editor + Trova nell'editor + + + + The found pattern must match in letter case + Il patter trovato deve corrispondere esattamente (maiuscole/minuscole) incluse + + + + Case Sensitive + Case Sensitive + + + + Find next match [Enter, F3] + Trova la prossima corrispondenza [Invio, F3] + + + + Find next match with wrapping + Trova la prossima corrispondenza con reinizio + + + + F3 + + + + + Interpret search pattern as a regular expression + Interpreta il pattern di ricerca come un'espressione regolare + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Quando selezionato, la stringa del testo viene interpretata come una RegExp Unix. Vedi <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Espressioni regolari su Wikibooks (in inglese)</a>.</p></body></html> + + + + Regular Expression + Espressione regolare + + + + + Close Find Bar + Chiudi la barra di ricerca + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html><head/><body><p>Risultati degli ultimi statements eseguiti.</p><p>Potresti voler rimpicciolire questo pannello e usare la casella <span style=" font-style:italic;">SQL Log</span> con la selezione dell'<span style=" font-style:italic;">Utente</span>.</p></body></html> + + + + Results of the last executed statements + Risultato degli 'ultimi statement eseguiti + + + + This field shows the results and status codes of the last executed statements. + Questo campo mostra i risultati e i codici di stato degli ultimi statements eseguiti. + + + + Couldn't read file: %1. + Impossibile leggere il file: %1. + + + + + Couldn't save file: %1. + Impossibile salvare il file: %1. + + + + Your changes will be lost when reloading it! + Le tue modifiche andranno perse quando ricaricherai! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + Il file "%1" è stato modificato da un altro programma. Vuoi ricaricarlo?%2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) La funzione abs(X) ritorna il valore assoluto dell'argomento numerico X. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () La funzione changes() ritorna il numero delle righe di database che sono state modificate o inserite o eliminate dallo statement INSERT, DELETE o UPDATE più recente. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1, X2,...) La funzione char(X1,X2,...,XN) ritorna una stringa composta dai caratteri unicode rappresentati dai valori interi da X1 a XN. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) La funzione coalesce(X,Y,...) ritorna una copia del suo primo argomento non NULL oppure NULL se tutti gli argomenti sono NULL + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) La funzione glob(X,Y) è equivalente all'espressione "Y GLOB X". + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) La funzione ifnull(X,Y) ritorno una copia del suo primo argomento non NULL o NULL se entrambi gli argomenti sono NULL. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) La funzione intstr(X,Y) trova la prima occorrenza della stringa Y all'interno della stringa X e ritorna il numero dei caratteri precedenti più 1 o 0 se Y non si trova all'interno di X. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) La funzione hex() interpreta i suoi argomenti come un BLOB e ritorna una stringa corrispondente al rendering esadecimale maiuscolo del contenuto di quel blob. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () La funzione last_insert_rowid() ritorna il ROWID dell'ultima riga inserita nella connessione database che ha invocato la funzione. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) La funzione lenght(X) ritorna per una stringa X, il numero di caratteri (non bytes) di X prima del primo carattere NUL. + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X,Y) La funzione like(X,Y) è utilizzata per implementare l'espressione "Y LIKE X". + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) La funzione like(X,Y,Z) è utilizzata per implementare l'espressione "Y LIKE X ESCAPE Z". + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) La funzione load_extension(X) carica l'estensione SQLite da un file di libreria condivisa di nome X. +L'utilizzo di questa funzione dev'essere permesso tramite le Preferenze. + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X,Y) La funzione load_extension(X,Y) carica un'estensione SQLite da un file di libreria condivisa di nome X utilizzando il punto d'ingresso Y. +L'utilizzo di questa funzione dev'essere permesso tramite le Preferenze. + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) La funzione lower(X) ritorna una copia della stringa X con tutti i caratteri ASCII convertiti in minuscolo. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) La funzione ltrim(X) rimuove gli spazi dal lato sinistro di X. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) La funzione ltrim(X,Y) ritorna una stringa formata rimuovendo tutti i caratteri che compaiono in Y dal lato sinistro di X. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) La funzione multi-argomento max(X,Y,...) ritorna l'argomento con valore massimo o ritorna NULL se tutti gli argomenti sono NULL. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) La funzione multi-argomento min(X,Y,...) ritorna l'argomento con valore minore o NULL se tutti gli argomenti sono NULL. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) La funzione nullif(X,Y) ritorna il primo argomento se gli argomenti sono diversi e NULL se gli argomenti sono uguali. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) La funzione SQL printf(FORMAT,...) si comporta come la funzione del linguaggio C sqlite3_mprintf() e la funzione printf() della libreria standard C. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) La funzione quote(X) ritorna il testo di un literale SQL il cui valore può essere incluso in uno statement SQL. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () La funzione random() ritorna un numero intero pseudo-casuale tra -9223372036854775808 e +9223372036854775807. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) La funzione randomblob(N) ritorna un blob di N-bytes contenenti dati pseudo-casuali. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) La funzione replace(X,Y,Z) ritorna una striga formata sostituendo la stringa Z in ogni occorrenza della stringa Y nella stringa X. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) La funzione round(X) ritorna un valore in virgola mobile X arrotondato a 0 cifre decimali. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) La funzione round(X,Y) ritorna un numero in virgola mobile X arrotondato a Y cifre decimali. + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) La funzione rtrim(X) rimuove gli spazi dalla destra di X. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) La funzione rtrim(X,Y) ritorna una stringa formata rimuovendo tutti i caratteri che compaiono in Y dal lato destro di X. + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) La funzione soundex(X) ritorna una stringa che rappresenta la codifica soundex della stringa X. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) La funzione substr(X,Y) ritorna tutti i caratteri dalla fine della stringa X iniziando dall'Y-esimo. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y,Z) La funzione substr(X,Y,Z) ritorna una sotto-stringa di X che inizia dal carattere Y-esimo e lunga Z caratteri. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () La funzione total_changes() ritorna il numero di righe modificate da INSERT, UPDATE o DELETE dall'apertura della connessione al database. + + + + (X) trim(X) removes spaces from both ends of X. + (X) La funzione trim(X) rimuove gli spazi da entrambi i lati di X. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) La funzione trim(X,Y) ritorna una stringa formata rimuovendo tutti i caratteri che compaiono in Y da entrambi i termini di X. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) La funzione typeof(X) ritorna una stringa che indica il tipo di dato dell'espressione X. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) La funzione unicode(X) ritorna il valore numerico in unicode corrispondente al primo carattere della stringa X. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) La funzione upper(X) ritorna una copia della stringa X in cui tutti i caratteri minuscoli ASCII sono stati converiti in maiuscolo. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) La funizione zeroblob(N) ritorna un BLOB di N byte di 0x00. + + + + + + + (timestring,modifier,modifier,...) + (stringa data,modificatore,modificatore,...) + + + + (format,timestring,modifier,modifier,...) + (formato,stringa data-ora,modificatore,modificatore,...) + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) La funzione avg(X) ritorna il valore medio di tutti gli X non-NULL in un gruppo. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) La funzione count(X) ritorna il numero di volte che X non è NULL in un gruppo. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) La funzione group_concat(X) ritorna una stringa rappresentante la concatenazione di tutti i valori di X non-NULL. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) La funzione group_concat(X,Y) ritorna una stringa rappresentate la concatenazione di tutti i valori di X non-NULL. Se il parametro Y è presente allora è utilizzato come separatore tra le istanze di X. + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) La funzione aggregata max(X) ritorna il valore massimo di tutti i valori nel gruppo. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) La funzione aggregata min(X) ritorna il minore non-NULL tra tutti i valori del gruppo. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) Le funzioni aggregate sum(X) e total(X) ritornano la somma di tutti i valori non-NULL nel gruppo. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () Il numero di righe all'interno della partizione corrente. Le righe sono numerate partendo da 1 nell'ordine definito dalla clausula ORDER BY nella finestra definizione, o altrimenti in ordine arbitrario. + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Il row_number() del primo peer in ogni gruppo - il rango della riga corrente con intervalli. Se non ci sono clausule ORDER BY, allora tutte le righe sono considerate peer e questa funzione ritorna 1. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Il numero di peer nel gruppo della riga corrente all'interno della sua partizione - il rango della riga corrente senza intervalli. Le partizioni sono numerate a partire da 1 nell'ordine definito dalla clausula ORDER BY nella finestra definizione. Se non ci sono clausule ORDER BY allora tutte le righe sono considerate peer e questa funzione ritorna 1. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () A dispetto del nome, questa funzione ritorna sempre un valore tra 0.0 e 1.0 uguale a (rango - 1)/(righe della partizione - 1), dove rango è il valore ritornato dalla funzione interna rank() e le "righe della partizione" sono il numero di righe nella partizione. Se la partizione contiene solo una riga, questa funzione ritorna 0.0. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () La distribuzione cumulativa. Calcolata come "numero di righe"/"righe della partizione", dove "numero di righe" è il valore ritornato dalla funzione row_number() per l'utimo peer nel gruppo. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) L'argomento N è gestito come valore intero. Questa funzione divide la partizione in N gruppi il più uniformemente possibile e assegna un'intero tra 1 e N ad ogni gruppo, nell'ordine definito dalla clausula ORDER BY o altrimenti in ordine arbitrario. Se necessario i gruppi più grandi compariranno per primi. Questa funzione ritorna il valore intero assegnato al gruppo di cui fa parte la riga corrente. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) Ritorna il risultato della valutazione dell'espressione expr sulla riga precedente della partizione o, se non esiste una riga precedente (perché la riga è la prima), NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr, offset) Se l'argomento offset viene fornito, allora dev'essere un intero non negativo. In questo caso il valore ritornato è il risultato della valutazione dell'espressione expr sulla riga "offset" posizioni antecedente nella partizione. Se offset è 0 allora expr viene valutata sulla riga corrente. Se non ci sono offset righe antecedenti viene ritornato NULL. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,offset,default) Se viene fornito anche default, allora viene ritornato al posto di NULL se la riga identificata da offset non esiste. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) Ritorna il risultato della valutazione dell'espressione expr con la riga successiva nella partizione o, se non c'è una riga successiva (perché la riga corrente è l'utlima) NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,offset) Se viene fornito l'argomento offset, dev'essere un intero non negativo. In questo caso il valore ritornato è il risultato della valutazione dell'espressione expr sulla riga "offset" posizioni successiva a quella corrente nella partizione. Se offset è 0, allora expr viene valutata sulla riga corrente. Se non c'è una riga "offset" posizioni successive, NULL viene restituito. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) Questa funzione interna calcola la cornice della finestra di ciascuna riga allo stesso modo di una funzione finestra aggregata. Ritorna il valore della valutazione di expr sulla prima riga nella cornice della finestra per ciascuna riga. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) Questa funzione interna calcola la cornice della finestra per ciascuna riga allo stesso modo della funzione finestra aggregata. Ritorna il valore dell'espressione expr valutata sull'ultima riga della cornice della finestra per ciascuna riga. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr,N) Questa funzione interna calcola la cornice della finestra per ciascuna riga allo stesso modo della funzione aggregata finestra. Ritorna il valore della valutazione dell'espressione expr sulla riga N della cornice della finestra. Le righe sono numerate dalla cornice della finestra partendo da 1 nell'ordine definito dalla clausula ORDER BY se presente o in modo arbitrario. Se non esiste la riga Nesima nella partizione, viene ritornato NULL. + + + + SqliteTableModel + + + reading rows + leggo le righe + + + + loading... + caricamento... + + + + References %1(%2) +Hold %3Shift and click to jump there + Riferimenti %1(%2) +Tieni premuto %3Shift e clicca per saltare lì + + + + Error changing data: +%1 + Errore nella modifica dei dati: +%1 + + + + retrieving list of columns + recupero la lista delle colonne + + + + Fetching data... + Recupero dati... + + + + + Cancel + Annulla + + + + TableBrowser + + + Browse Data + Naviga nei dati + + + + &Table: + &Tabella: + + + + Select a table to browse data + Seleziona una tabella per navigare tra i dati + + + + Use this list to select a table to be displayed in the database view + Usa questa lista per selezionare una tabella da visualizzare nella vista del database + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + Questa è la vista della tabella del database. Puoi eseguire le seguenti operazioni: + - Inizia a scrivere per modificare i valori. + - Doppio-click su qualsiasi valore per modificarne il contenuto nella finestra di editor della cella. + - Alt+Del per eliminare il contenuto della cella e portarlo a NULL. + - Ctrl+" per duplicare il valore corrente. + - Ctrl+' per copiare il valore dalla cella soprastante. + - Operazioni di selezione e copia/incolla. + + + + Text pattern to find considering the checks in this frame + Il pattern da cercare considerando le spunte in quest'area + + + + Find in table + Trova nella tabella + + + + Find previous match [Shift+F3] + Trova corrispondenza precedente [Shift+F3] + + + + Find previous match with wrapping + Trova la corrispondenza precedente con reinizio + + + + Shift+F3 + + + + + Find next match [Enter, F3] + Trova la prossima corrispondenza [Invio, F3] + + + + Find next match with wrapping + Trova la prossima corrispondenza con reinizio + + + + F3 + + + + + The found pattern must match in letter case + Il pattern trovato deve corrispondere esattamente (maiuscole/minuscole) incluse + + + + Case Sensitive + Case Sensitive + + + + The found pattern must be a whole word + Il pattern trovato deve essere una parola intera + + + + Whole Cell + Cella completa + + + + Interpret search pattern as a regular expression + Interpreta il pattern di ricerca come un'espressione regolare + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Quando selezionata, il pattern da trovare viene interpretato come un'espressione regolare UNIX. Vedi: <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + Regular Expression + Espressione regolare + + + + + Close Find Bar + Chiudi la barra di ricerca + + + + Text to replace with + Testo da usare per la sostituzione + + + + Replace with + Sostituisci con + + + + Replace next match + Sostituisci la prossima corrispondenza + + + + + Replace + Sostituisci + + + + Replace all matches + Sostituisci tutte le corrispondenze + + + + Replace all + Sostituisci tutto + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Scorri all'ìinizio</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Cliccare questo pulsante scorre la vista all'inizio della tabella.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + Scorri di una pagina in su + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>Cliccando questo pulsante la vista scorre le righe di una pagina verso l'inizio della tabella.</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 di 0 + + + + Scroll one page downwards + Scorri di una pagina in giù + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>Cliccando questo pulsante la vista scorre le righe di una pagina verso il fondo della tabella.</p></body></html> + + + + > + > + + + + Scroll to the end + Scorri alla fine + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + <html><head/><body><p>Cliccando questo pulsante la vista scorre al fondo della tabella.</p></body></html> + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>Clicca qui per saltare alla riga specificata</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>Questo pulsante è utilizzato per navigare alla riga impostata nell'area "Vai a".</p></body></html> + + + + Go to: + Vai a: + + + + Enter record number to browse + Inserisci il numero di riga a cui scorrere + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Inserisci un numero in quest'area e clicca sul pul pulsante "Vai a" per visualizzare la riga selezionata + + + + 1 + 1 + + + + Show rowid column + Mostra colonna rowid + + + + Toggle the visibility of the rowid column + Mostra/nasconde la colonna rowid + + + + Unlock view editing + Sblocca la modifica della vista + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + Sblocca la vista corrente per modificarla. Per poterla modificare avrai comunque bisogno degli appropriati trigger. + + + + Edit display format + Modifica formato di visualizzazione + + + + Edit the display format of the data in this column + Modifica il formato di visualizzazione dei dati in questa colonna + + + + + New Record + Nuova Riga + + + + + Insert a new record in the current table + Inserisci un nuovo valore nella tabella corrente + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>Questo pulsante crea una nuova riga nel database. Mantieni premuto il tasto del mouse per ottenere più opzioni:</p><ul><li><span style=" font-weight:600;">Nuova Riga</span>: inserisce una nuova riga con i valori predefiniti.</li><li><span style=" font-weight:600;">Inserisci Valori...</span>: apre una finestra per inserire i valori prima che vengano immessi nel database. Questo permette che l'immissione dei valori rispetti diversi limiti (constraints). Questa finestra si apre anche se l'opzione <span style=" font-weight:600;">Nuova Riga</span> fallisce a causa di questi limiti (constraints).</li></ul></body></html> + + + + + Delete Record + Elimina Riga + + + + Delete the current record + Elimina il valore corrente + + + + + This button deletes the record or records currently selected in the table + Questo pulsante elimina la/e righe selezionate nella tabella + + + + + Insert new record using default values in browsed table + Inserisce un nuovo record utilizzando i valori di default della tabella + + + + Insert Values... + Inserisci Valori... + + + + + Open a dialog for inserting values in a new record + Apre una finestra per l'inermento di valori all'interno di un nuovo record + + + + Export to &CSV + Esporta in &CSV + + + + + Export the filtered data to CSV + Esporta i dati filtrati in CSV + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + Questo pulsante esporta i dati della tabella così come visualizzati (applicando filtri, formati e ordine delle colonne) in un file CSV. + + + + Save as &view + Salva come &vista + + + + + Save the current filter, sort column and display formats as a view + Salva il filtro corrente, ordine colonne e formati dati come vista + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + Questo pulsante salva le impostazioni della tabella visualizzata (filtri, formati e ordine colonne) in una vista SQL che puoi successivamente navigare o utilizzare in statement SQL. + + + + Save Table As... + Salva Tabella Come... + + + + + Save the table as currently displayed + Salva la tabella così come visualizzata + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>Questo menù fornisce le seguenti opzioni applicabili alla tabella filtrata e visualizzata correntemente:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Esporta in CSV: questa opzione esporta i dati della tabella così come visualizzati (con filtri, riordine delle colonne e formati) in un file CSV.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Salva come vista: questa opzione salva le impostazioni correnti della tabella visualizzata (filtri, riordine delle colonne e formati) come vista SQL che puoi successivamente visualizzare o utilizzare come statement.</li></ul></body></html> + + + + Hide column(s) + Nascondi colonna(e) + + + + Hide selected column(s) + Nasconde la(e) colonna(e) selezionata(e) + + + + Show all columns + Mostra tutte le colonne + + + + Show all columns that were hidden + Mostra tutte le colonne nascoste + + + + + Set encoding + Imposta codifica + + + + Change the encoding of the text in the table cells + Modifica la codifica del testo nelle celle della tabella + + + + Set encoding for all tables + Imposta la codifica per tutte le tabelle + + + + Change the default encoding assumed for all tables in the database + Modifica il valore predefinito di codifica per tutte le tabelle del database + + + + Clear Filters + Pulisci Filtri + + + + Clear all filters + Cancella tutti i filtri + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + Questo pulsante pulisce tutti i filtri impostati nella riga d'intestazione per la tabella corrente. + + + + Clear Sorting + Ripristina Ordinamento + + + + Reset the order of rows to the default + Ripristina l'ordine delle righe predefinito + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + Questo pulsante ripristina l'ordinamento delle colonne predefinito per la tabella corrente. + + + + Print + Stampa + + + + Print currently browsed table data + Stampa i dati della tabella attualmente in esplorazione + + + + Print currently browsed table data. Print selection if more than one cell is selected. + Stampa i dati visualizzati. Stampa la selezione se più di una cella è selezionata. + + + + Ctrl+P + + + + + Refresh + Aggiorna + + + + Refresh the data in the selected table + Aggiorna i dati della tabella selezionata + + + + This button refreshes the data in the currently selected table. + Questo pulsante aggiorna i dati della tabella selezionata. + + + + F5 + + + + + Find in cells + Trova nelle celle + + + + Open the find tool bar which allows you to search for values in the table view below. + Apre la barra di ricerca che ti permette di cercare valori nella tabella visualizzata qui sotto. + + + + + Bold + Grassetto + + + + Ctrl+B + + + + + + Italic + Corsivo + + + + + Underline + Sottolinea + + + + Ctrl+U + + + + + + Align Right + Allinea a Destra + + + + + Align Left + Allinea a Sinistra + + + + + Center Horizontally + Centra Orizzontalmente + + + + + Justify + Giustifica + + + + + Edit Conditional Formats... + Modifica Formattazione Condizionale... + + + + Edit conditional formats for the current column + Modifica formattazione condizionale per la colonna corrente + + + + Clear Format + Ripristina formattazione + + + + Clear All Formats + Ripristina Tutte le Formattazioni + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + Ripristina la formattazione di tutte le celle selezionate e tutte le formattazioni condizionali delle colonne selezionate + + + + + Font Color + Colore Testo + + + + + Background Color + Colore Sfondo + + + + Toggle Format Toolbar + Mostra/Nascondi barra dei formati + + + + Show/hide format toolbar + Mostra/nascondi barra dei formati + + + + + This button shows or hides the formatting toolbar of the Data Browser + Questo pulsante mostra o nasconde la barra dei formati per il Browser dei dati + + + + Select column + Seleziona colonna + + + + Ctrl+Space + + + + + Replace text in cells + Sostituisci testo nelle celle + + + + Filter in any column + Filtra in qualsiasi colonna + + + + Ctrl+R + + + + + %n row(s) + + %n riga + %n righe + + + + + , %n column(s) + + , %n colonna + , %n colonne + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . Somma: %1; Media: %2; Min: %3; Max: %4 + + + + Conditional formats for "%1" + Formattazione condizionale per '%1' + + + + determining row count... + determino il numero di righe... + + + + %1 - %2 of >= %3 + %1 - %2 di >= %3 + + + + %1 - %2 of %3 + %1 - %2 di %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + Si prega d'inserire una pseudo-chiave primaria in modo da abilitare le modifiche su questa vista. Deve corrispondere al nome di una colonna univoca nella vista. + + + + Delete Records + Elimina i Records + + + + Duplicate records + Duplica i records + + + + Duplicate record + Duplica il record + + + + Ctrl+" + + + + + Adjust rows to contents + Adatta le righe al contenuto + + + + Error deleting record: +%1 + Errore eliminando le righe: +%1 + + + + Please select a record first + Si prega di selezionare prima un record + + + + There is no filter set for this table. View will not be created. + Non c'è filtro impostato per questa tabella. La vista non sarà creata. + + + + Please choose a new encoding for all tables. + Si prega di scegliere una nuova codifica per tutte le tabelle. + + + + Please choose a new encoding for this table. + Si prega di scegliere una nuova codifica per questa tabella. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Lasciare il campo vuoto per utilizzare la codifica del database. + + + + This encoding is either not valid or not supported. + Questa codifica non è valida o non è supportata. + + + + %1 replacement(s) made. + %1 sostituzione(i) effettuata(e). + + + + VacuumDialog + + + Compact Database + Compatta Database + + + + Warning: Compacting the database will commit all of your changes. + Attenzione: Compattare il database salverà tutte le tue modifiche. + + + + Please select the databases to co&mpact: + Si prega di selezionare il database da co&mpattare: + + + diff --git a/ConfigFiles/translations/sqlb_ja.qm b/ConfigFiles/translations/sqlb_ja.qm new file mode 100644 index 0000000..536ea32 Binary files /dev/null and b/ConfigFiles/translations/sqlb_ja.qm differ diff --git a/ConfigFiles/translations/sqlb_ja.ts b/ConfigFiles/translations/sqlb_ja.ts new file mode 100644 index 0000000..a379f4c --- /dev/null +++ b/ConfigFiles/translations/sqlb_ja.ts @@ -0,0 +1,7019 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + DB Browser for SQLite について + + + + Version + バージョン + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB Browser for SQLite は SQLite データベースを作成、デザイン、編集できる、オープンソースで無料のヴィジュアルツールです。</p><p>このソフトウェアは Mozilla Public License Version 2 と the GNU General Public License Version 3 (もしくはそれ以降のもの) の2つでライセンスされています。あなたはこれらのライセンスの条件の下でこのソフトウェアを変更、もしくは、再配布できます。</p><p>詳細は <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> と <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> をご覧ください。</p><p>このプログラムのさらなる情報は、私たちのウェブサイトをご覧ください。: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">このソフトウェアは GPL/LGPL Qt Toolkit を使用しています。 </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>ライセンス条項や情報は </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> をご覧ください。</span></p><p><span style=" font-size:small;">また、 Mark James の Silk icon set を Creative Commons Attribution 2.5 and 3.0 license の元で使用しています。<br/>詳細は </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> をご覧ください。</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + 新しいレコードを追加 + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + 制約を考慮して新しいレコードに値を入力します。太字のフィールドは必須です。 + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + 「値」列では、「名前」列で識別されたフィールドの値を指定できます。「データ型」列はフィールドのデータ型を示します。 デフォルト値はNULL値と同じスタイルで表示されます。 + + + + Name + 名前 + + + + Type + データ型 + + + + Value + + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + 挿入する値。変更されない限り、事前入力されたデフォルト値が自動的に挿入されます。 + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + 上のフレームで値を編集すると、この新しいレコードを挿入する SQL クエリーがここに表示されます。保存する前にこのクエリーを手動で編集できます。 + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">保存</span>は表示されている新しいレコードを挿入するSQL文をデータベースに適用します。</p><p><span style=" font-weight:600;">デフォルトに戻す</span>は<span style=" font-weight:600;">「値」</span>列を初期値に戻します。</p><p><span style=" font-weight:600;">キャンセル</span>はクエリーを実行せずにダイアログを閉じます。</p></body></html> + + + + Auto-increment + + 自動増加 + + + + + Unique constraint + + 一意性制約 + + + + + Check constraint: %1 + + 検査誓約: %1 + + + + + Foreign key: %1 + + 外部キー: %1 + + + + + Default value: %1 + + デフォルト値: %1 + + + + + Error adding record. Message from database engine: + +%1 + レコード追加でエラー。データベースエンジンからのメッセージ: + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + 入力した値をすべてデフォルトに戻しますか? + + + + Application + + + Possible command line arguments: + 使用可能なコマンドライン引数: + + + + Usage: %1 [options] [<database>|<project>] + + 使い方: %1 [オプション] [<DB>|<プロジェクト>] + + + + + -h, --help Show command line options + -h, --help コマンドラインのオプションを表示 + + + + -q, --quit Exit application after running scripts + -q, --quit スクリプト実行後にアプリケーションを終了 + + + + -s, --sql <file> Execute this SQL file after opening the DB + -s, --sql <ファイル> DBを開いた後、このSQLファイルを実行 + + + + -t, --table <table> Browse this table after opening the DB + -t, --table <テーブル> DBを開いた後このテーブルを閲覧 + + + + -R, --read-only Open database in read-only mode + -R, --read-only 読み取り専用モードでデータベースを開く + + + + -o, --option <group>/<setting>=<value> + -o, --option <グループ>/<設定>=<値> + + + + Run application with this setting temporarily set to value + 一時的にこの値を設定してアプリケーションを実行 + + + + -O, --save-option <group>/<setting>=<value> + -O, --save-option <グループ>/<設定>=<値> + + + + Run application saving this value for this setting + この値の設定を保存してアプリケーションを実行 + + + + -v, --version Display the current version + -v, --version 現在のバージョンを表示 + + + + <database> Open this SQLite database + <データベース> このSQLiteデータベースを開く + + + + <project> Open this project file (*.sqbpro) + <プロジェクト> このプロジェクトファイル(*.sqbpro)を開く + + + + The -s/--sql option requires an argument + -s/--sql オプションは引数が必要です + + + + The file %1 does not exist + ファイル %1 が存在しません + + + + The -t/--table option requires an argument + -t/--table オプションは引数が必要です + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + -o/--option と -O/--save-optionオプションは グループ/設定=値 の形式で引数が必要です + + + + SQLite Version + SQLite バージョン + + + + SQLCipher Version %1 (based on SQLite %2) + SQLCipher バージョン %1 (SQLite %2 がベース) + + + + DB Browser for SQLite Version %1. + DB Browser for SQLite バージョン %1. + + + + Built for %1, running on %2 + %1 向けビルド, %2 で動作中 + + + + Qt Version %1 + Qt バージョン %1 + + + + Invalid option/non-existant file: %1 + 不正なオプション/存在しないファイルです: %1 + + + + CipherDialog + + + SQLCipher encryption + SQLCipher 暗号化 + + + + &Password + パスワード(&P) + + + + &Reenter password + パスワードの再入力(&R) + + + + Passphrase + パスフレーズ + + + + Raw key + 生のキー + + + + Encr&yption settings + 暗号化設定(&Y) + + + + SQLCipher &3 defaults + SQLCipher 3 デフォルト(&3) + + + + SQLCipher &4 defaults + SQLCipher 4 デフォルト(&4) + + + + Custo&m + カスタム(&M) + + + + Page si&ze + ページサイズ(&Z) + + + + &KDF iterations + KDF反復回数(&K) + + + + HMAC algorithm + HMACアルゴリズム + + + + KDF algorithm + KDFアルゴリズム + + + + Plaintext Header Size + プレーンテキストヘッダーサイズ + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + データベースを暗号化するキーを設定してください。 +そのほかの任意の設定を変更すると、データベースファイルを開くときは毎回再入力が必要になることに注意してください。 +暗号化を無効にするにはパスワード欄を空白にします。 +暗号化工程には少し時間がかかるでしょう。データベースのバックアップを作成するべきです! 保存していない変更は暗号化の前に反映されます。 + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + データベースの暗号化に使用するキーを入力してください。 +このデータベースファイルの他の設定が変更された場合は、この情報も指定する必要があります。 + + + + ColumnDisplayFormatDialog + + + Choose display format + 表示書式を選択 + + + + Display format + 表示書式 + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + カラム '%1' の表示形式を選択してください。これは表示前に各値に適用されます。 + + + + Default + デフォルト + + + + Decimal number + 十進数 + + + + Exponent notation + 指数表記 + + + + Hex blob + 十六進Blob + + + + Hex number + 十六進数 + + + + Octal number + 八進数 + + + + Round number + 概数 + + + + Apple NSDate to date + Apple NSDate を日付に + + + + Java epoch (milliseconds) to date + Java エポック (ミリ秒) を日付に + + + + .NET DateTime.Ticks to date + .NET DateTime.Ticks を日付に + + + + Julian day to date + ユリウス日を日付に + + + + Unix epoch to date + Unix エポックを日付に + + + + Unix epoch to local time + Unix エポックを地方時に + + + + Windows DATE to date + Windows DATE を日付に + + + + Date as dd/mm/yyyy + 日付(dd/mm/yyyy) + + + + Lower case + 小文字 + + + + Upper case + 大文字 + + + + Custom + カスタム + + + + Custom display format must contain a function call applied to %1 + カスタム表示形式には、%1 に適用される関数呼び出しが含まれている必要があります + + + + Error in custom display format. Message from database engine: + +%1 + カスタム表示形式でエラー。データベースエンジンからのメッセージ: + +%1 + + + + Custom display format must return only one column but it returned %1. + カスタム表示形式はただ1つのカラムを返す必要がありますが、%1 が返ってきました。 + + + + CondFormatManager + + + Conditional Format Manager + 条件付き書式管理 + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + このダイアログで条件付き書式の作成と編集ができます。それぞれのセルスタイルはセルのデータが最初に一致した条件のものが選択されます。条件付き書式は上下に移動でき、上の行は下の行に優先します。条件の構文はフィルターと同じで、空白の条件は全ての値に適用されます。 + + + + Add new conditional format + 新しい条件付き書式を追加します + + + + &Add + 追加(&A) + + + + Remove selected conditional format + 選択した条件付き書式を削除します + + + + &Remove + 削除(&R) + + + + Move selected conditional format up + 選択した条件付き書式を上へ移動します + + + + Move &up + 上へ(&U) + + + + Move selected conditional format down + 選択した条件付き書式を下へ移動します + + + + Move &down + 下へ(&D) + + + + Foreground + 前景 + + + + Text color + 文字色 + + + + Background + 背景 + + + + Background color + 背景色 + + + + Font + フォント + + + + Size + サイズ + + + + Bold + 太字 + + + + Italic + イタリック + + + + Underline + 下線 + + + + Alignment + 配置 + + + + Condition + 条件 + + + + + Click to select color + クリックで色を選択 + + + + Are you sure you want to clear all the conditional formats of this field? + 本当にこのフィールドの条件付き書式をすべて削除しますか? + + + + DBBrowserDB + + + This database has already been attached. Its schema name is '%1'. + このデータベースには既に接続しています。このスキーマの名前は '%1' です。 + + + + Please specify the database name under which you want to access the attached database + 接続したデータベースへのアクセス時に使用するデータベース名を指定してください + + + + Invalid file format + 不正なファイルフォーマット + + + + Do you really want to close this temporary database? All data will be lost. + 本当にこの一時データベースを閉じますか? すべてのデータは喪失します。 + + + + Do you want to save the changes made to the database file %1? + データベースファイル '%1' への変更を保存しますか? + + + + Database didn't close correctly, probably still busy + データベースが正常に閉じられませんでした。多分まだビジー状態です + + + + The database is currently busy: + データベースは現在ビジー状態です: + + + + Do you want to abort that other operation? + 他の操作を中断しますか? + + + + Exporting database to SQL file... + データベースをSQLファイルにエクスポート... + + + + + Cancel + キャンセル + + + + + No database file opened + データベースファイルを開いていません + + + + Executing SQL... + SQLを実行... + + + + Action cancelled. + 操作をキャンセルしました。 + + + + + Error in statement #%1: %2. +Aborting execution%3. + この文でエラー #%1: %2。 +実行を中断%3。 + + + + + and rolling back + ロールバックしました + + + + didn't receive any output from %1 + %1 から出力を得られませんでした + + + + could not execute command: %1 + コマンド: %1 を実行できませんでした + + + + Cannot delete this object + このオブジェクトは削除できません + + + + Cannot set data on this object + このオブジェクトにデータ設定はできません + + + + + A table with the name '%1' already exists in schema '%2'. + 名前が '%1' のテーブルはスキーマ '%2' に既に存在します。 + + + + No table with name '%1' exists in schema '%2'. + スキーマ '%2' に名前が '%1' のテーブルがありません。 + + + + + Cannot find column %1. + カラム %1 が見つかりません。 + + + + Creating savepoint failed. DB says: %1 + セーブポイントの作成に失敗。DBの反応: %1 + + + + Renaming the column failed. DB says: +%1 + カラム名変更に失敗。DBの反応: +%1 + + + + + Releasing savepoint failed. DB says: %1 + セーブポイントの解放に失敗。DBの反応: %1 + + + + Creating new table failed. DB says: %1 + 新しいテーブルの作成に失敗。DBの反応: %1 + + + + Copying data to new table failed. DB says: +%1 + 新しいテーブルへのデータのコピーに失敗。DBの反応: +%1 + + + + Deleting old table failed. DB says: %1 + 古いテーブルの削除に失敗。DBの反応: %1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + テーブル名の '%1' から '%2' への変更でエラー。 +データベースエンジンからのメッセージ: +%3 + + + + could not get list of db objects: %1 + DBオブジェクトの一覧を取得できません: %1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + このテーブルに関連するオブジェクトの復元に失敗しました。これはおそらく一部のカラム名が変更されたためです。このSQL文を手動で修正し実行してください。 +Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + + + + could not get list of databases: %1 + データベースの一覧を取得できません: %1 + + + + Error setting pragma %1 to %2: %3 + プラグマ %1 を %2 に設定時にエラー: %3 + + + + File not found. + ファイルが見つかりません。 + + + + Error loading extension: %1 + 拡張の読み込みでエラー: %1 + + + + could not get column information + カラム情報が取得できませんでした + + + + DbStructureModel + + + Name + 名前 + + + + Object + オブジェクト + + + + Type + データ型 + + + + Schema + スキーマ + + + + Database + データベース + + + + Browsables + 表示可能 + + + + All + すべて + + + + Temporary + 一時 + + + + Tables (%1) + テーブル (%1) + + + + Indices (%1) + インデックス (%1) + + + + Views (%1) + ビュー (%1) + + + + Triggers (%1) + トリガー (%1) + + + + EditDialog + + + Edit database cell + データベースのセルを編集 + + + + Mode: + モード: + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + これはサポートしているセル編集モードの一覧です。現在のセルデータの表示修正に使用するモードを選んでください。 + + + + Text + テキスト + + + + RTL Text + RTL テキスト + + + + Binary + バイナリー + + + + + Image + 画像 + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + 編集モードを読み込んだデータ型に自動的に調整 + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + このチェックボタンは編集モードの自動切り替えを有効/無効にします。新しいセルが選択されるか新しいデータがインポートされた時に自動切り替えが有効だと、検出したデータ型にモードを調整します。その後、編集モードは手動で変更できます。セル間の移動時に手動で変更したモードを維持したいならば、このボタンをオフにします。 + + + + Auto-switch + 自動切替 + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + この編集モードは構文強調して、プレーンテキストだけでなく、JSONやXMLデータを編集しやすくします。保存前に自動的に整形と検証をします。 + +エラーは赤い破線で示されます。 + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + このQtエディターは右書きの文章に使われます。これはデフォルトのテキストエディターではサポートされていません。右書きの文字の存在が検知されると、このエディターモードが自動的に選択されます。 + + + + Apply data to cell + セルにデータを適用 + + + + Open preview dialog for printing the data currently stored in the cell + 現在セルにあるデータを印刷するプレビューダイアログを開く + + + + Auto-format: pretty print on loading, compact on saving. + 自動整形: きれいに表示、圧縮して保存。 + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + 有効にすると、自動整形機能は読み込み時にデータの可読性を高める改行とインデントを加えます。データの保存時には、改行と不要な空白を取り除きデータを圧縮します。 + + + + Word Wrap + ワードラップ + + + + Wrap lines on word boundaries + 単語単位でワードラップ + + + + + Open in default application or browser + デフォルトのアプリケーションかブラウザーで開く + + + + Open in application + アプリケーションで開く + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + 値はファイルかURLと解釈され、デフォルトのアプリケーションかウェブブラウザで開かれます。 + + + + Save file reference... + ファイル参照を保存... + + + + Save reference to file + 参照をファイルに保存 + + + + + Open in external application + 外部のアプリケーションで開く + + + + Autoformat + 自動整形 + + + + &Export... + エクスポート(&E)... + + + + + &Import... + インポート(&I)... + + + + + Import from file + ファイルからインポート + + + + + Opens a file dialog used to import any kind of data to this database cell. + このデータベースのセルに任意の種類のデータをインポートするファイルダイアログを開きます。 + + + + Export to file + ファイルへエクスポート + + + + Opens a file dialog used to export the contents of this database cell to a file. + このデータベースのセルの内容をファイルにエクスポートするファイルダイアログを開きます。 + + + + Erases the contents of the cell + セルの内容を削除 + + + + Set as &NULL + NULLに設定(&N) + + + + This area displays information about the data present in this database cell + このデータベースのセルに存在するデータの情報をここに表示 + + + + Type of data currently in cell + 現在セルにあるデータの種類 + + + + Size of data currently in table + 現在テーブルにあるデータのサイズ + + + + This button saves the changes performed in the cell editor to the database cell. + このボタンはエディターで行われた変更をデータベースのセルに保存します。 + + + + Apply + 適用 + + + + + Print... + 印刷... + + + + Open preview dialog for printing displayed image + 表示された画像を印刷するプレビューダイアログを開く + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + 表示されたテキストを印刷するプレビューダイアログを開く + + + + Copy Hex and ASCII + 十六進数とASCIIをコピー + + + + Copy selected hexadecimal and ASCII columns to the clipboard + 選択した十六進数とASCIIのカラムをクリップボードにコピー + + + + Ctrl+Shift+C + + + + + + Image data can't be viewed in this mode. + 画像データはこのモードでは表示できません。 + + + + + Try switching to Image or Binary mode. + 画像/バイナリーモードに切り替えてみてください。 + + + + + Binary data can't be viewed in this mode. + バイナリーデータはこのモードでは表示できません。 + + + + + Try switching to Binary mode. + バイナリーモードに切り替えてみてください。 + + + + + Image files (%1) + 画像ファイル (%1) + + + + Binary files (*.bin) + バイナリーファイル (*.bin) + + + + Choose a file to import + インポートするファイルを選択 + + + + %1 Image + %1 画像 + + + + Choose a filename to export data + エクスポートデータのファイル名を選択 + + + + Invalid data for this mode + このモードでは不正なデータ + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + セルに不正なデータ %1 があります。理由: %2。本当にセルに適用しますか? + + + + + Type of data currently in cell: Text / Numeric + 現在セルにあるデータの種類: テキスト / 数値 + + + + + + %n character(s) + + %n 文字 + + + + + Type of data currently in cell: %1 Image + 現在セルにあるデータの種類: %1 画像 + + + + %1x%2 pixel(s) + %1x%2 ピクセル + + + + Type of data currently in cell: NULL + 現在セルにあるデータの種類: NULL + + + + + %n byte(s) + + %n バイト + + + + + Type of data currently in cell: Valid JSON + 現在セルにあるデータの種類: 正規なJSON + + + + Type of data currently in cell: Binary + 現在セルにあるデータの種類: バイナリー + + + + Couldn't save file: %1. + ファイルを保存できません: %1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + データは一時ファイルに保存され、デフォルトのアプリケーションで開かれました。すぐにファイルを編集でき、準備ができたら、保存した新しいデータをセルエディターに適用するか、変更をキャンセルできます。 + + + + EditIndexDialog + + + Edit Index Schema + インデックスのスキーマを編集 + + + + &Name + 名前(&N) + + + + &Table + テーブル(&T) + + + + &Unique + 一意(&U) + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + インデックスをテーブルの一部のみに制限する場合は、その部分を選択するWHERE節をここに指定します + + + + Partial inde&x clause + インデックス指定節(&X) + + + + Colu&mns + カラム(&M) + + + + Table column + テーブルのカラム + + + + Type + データ型 + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + 新しい式カラムをインデックスに加える。式カラムはカラム名でなくSQL式を持ちます。 + + + + Index column + インデックスカラム + + + + Order + 順番 + + + + Deleting the old index failed: +%1 + 古いインデックスの削除に失敗: +%1 + + + + Creating the index failed: +%1 + インデックスの作成に失敗: +%1 + + + + EditTableDialog + + + Edit table definition + テーブルの定義を編集 + + + + Table + テーブル + + + + Advanced + 高度な設定 + + + + Without Rowid + Rowidなし + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + テーブルをrowidなしで作成します。これを設定するには、主キーに設定された自動増加なしのINTEGERフィールドが必要です。 + + + + Fields + フィールド + + + + Database sche&ma + データベーススキーマ(&M) + + + + Add + 追加 + + + + Remove + 削除 + + + + Move to top + 先頭へ + + + + Move up + 上へ + + + + Move down + 下へ + + + + Move to bottom + 末尾へ + + + + + Name + 名前 + + + + + Type + データ型 + + + + NN + NN + + + + Not null + 非null + + + + PK + PK + + + + Primary key + 主キー + + + + AI + AI + + + + Autoincrement + 自動増加 + + + + U + U + + + + + + Unique + 一意 + + + + Default + デフォルト + + + + Default value + デフォルト値 + + + + + + Check + 検査 + + + + Check constraint + 検査制約 + + + + Collation + 照合順序 + + + + + + Foreign Key + 外部キー + + + + Constraints + 制約 + + + + Add constraint + 制約を追加 + + + + Remove constraint + 制約を削除 + + + + Columns + カラム + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">警告: </span>テーブル定義に構文解析できないものがあります。このテーブルを変更し保存すると問題が起きるかもしれません。.</p></body></html> + + + + + Primary Key + 主キー + + + + Add a primary key constraint + 主キー制約を追加 + + + + Add a foreign key constraint + 外部キー制約を追加 + + + + Add a unique constraint + 一意性制約を追加 + + + + Add a check constraint + 検査誓約を追加 + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + 主キーは各テーブルに一つだけ存在できます。替わりに既存の主キーを変更してください。 + + + + Error creating table. Message from database engine: +%1 + テーブル作成でエラー。データベースエンジンからのメッセージ: +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + この名前は既に別のフィールドに使用されています。既存のフィールド名を変更するか、別の名前を付けてください。 + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + このカラムはテーブル %1 の外部キーに参照されているので、名前を変更できません。 + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + 少なくとも1つの行でこのフィールドにNULLが設定されています。そのため、非NULLを設定するのは不可能です。先にテーブルのデータを変更してください。 + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + 少なくとも1つの行でこのフィールドにINTEGERでない値が設定されています。そのため、自動増加を設定するのは不可能です。先にテーブルのデータを変更してください。 + + + + Column '%1' has duplicate data. + + カラム '%1' に重複データがあります。 + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + 一意にするのは不可能です。重複データを削除すると、一意にできるようになります。 + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + 本当にフィールド '%1' を削除しますか? +現在このフィールドにあるすべてのデータは失われます。 + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + rowidをなしにして、以下の条件に合うフィールドを追加してください。 + - 主キーにする + - 自動増加なし + + + + ExportDataDialog + + + Export data as CSV + データをCSVにエクスポート + + + + Tab&le(s) + テーブル(&L) + + + + Colu&mn names in first line + 先頭行をカラム名に(&M) + + + + Fie&ld separator + フィールド区切り(&L) + + + + , + , + + + + ; + ; + + + + Tab + タブ + + + + | + | + + + + + + Other + その他 + + + + &Quote character + 引用符文字(&Q) + + + + " + " + + + + ' + ' + + + + New line characters + 改行文字 + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + 整形 + + + + Export data as JSON + データをJSONにエクスポート + + + + exporting CSV + CSVにエクスポート + + + + + Could not open output file: %1 + 出力ファイルを開けません: %1 + + + + exporting JSON + JSONにエクスポート + + + + + Choose a filename to export data + エクスポートデータのファイル名を選択 + + + + Please select at least 1 table. + 少なくとも1つのテーブルを選択してください。 + + + + Choose a directory + ディレクトリーを選択 + + + + Export completed. + エクスポート完了。 + + + + ExportSqlDialog + + + Export SQL... + SQLにエクスポート... + + + + Tab&le(s) + テーブル(&L) + + + + Select All + すべて選択 + + + + Deselect All + すべて非選択 + + + + &Options + オプション(&O) + + + + Keep column names in INSERT INTO + INSERT INTO にカラム名を保持 + + + + Multiple rows (VALUES) per INSERT statement + INSERT文に複数行(VALUES) + + + + Export everything + すべてエクスポート + + + + Export schema only + スキーマのみをエクスポート + + + + Export data only + データのみをエクスポート + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + 古いスキーマを保持 (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + 古いスキーマを上書き (DROP TABLE した後に CREATE TABLE) + + + + Please select at least one table. + 少なくとも1つのテーブルを選択してください。 + + + + Choose a filename to export + エクスポートするファイル名を選択 + + + + Export completed. + エクスポート完了。 + + + + Export cancelled or failed. + エクスポートをキャンセルまたは失敗しました。 + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + 検索... + + + + Find and Replace... + 検索と置換... + + + + Print... + 印刷... + + + + ExtendedTableWidget + + + Use as Exact Filter + 抽出フィルターに使う + + + + Containing + 含む + + + + Not containing + 含まない + + + + Not equal to + 等しくない + + + + Greater than + より大きい + + + + Less than + 未満 + + + + Greater or equal + 以上 + + + + Less or equal + 以下 + + + + Between this and... + これとの間... + + + + Regular expression + 正規表現 + + + + Edit Conditional Formats... + 条件付き書式を編集... + + + + Set to NULL + NULLに設定 + + + + Copy + コピー + + + + Copy with Headers + ヘッダーを含めてコピー + + + + Copy as SQL + SQLとしてコピー + + + + Paste + 貼り付け + + + + Print... + 印刷... + + + + Use in Filter Expression + フィルター式を使用 + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + クリップボードの内容は選択された範囲より大きいです. +それでも挿入しますか? + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>読み込まれていないデータがあります。<b>すべての行を選択する前に、すべてのデータを読み込みますか?</b><p><p>答えが <b>いいえ</b> ならば、データは読み込まれず、選択は実行されません。<br/>答えが <b>はい</b> ならば、時間がかかりますが、すべてのデータを読み込み、選択が実行されます。</p>警告: 大きいテーブルにあるすべてのデータの読み込みにはかなりの記憶領域を必要とします。 + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + 選択範囲にNULLを設定できません。カラム %1 には非NULL制約があります。 + + + + FileExtensionManager + + + File Extension Manager + ファイル拡張子管理 + + + + &Up + 上へ(&U) + + + + &Down + 下へ(&D) + + + + &Add + 追加(&A) + + + + &Remove + 削除(&R) + + + + + Description + 説明 + + + + Extensions + 拡張子 + + + + *.extension + *.拡張子 + + + + FilterLineEdit + + + Filter + フィルター + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + この入力欄は現在選択したテーブルの即席フィルターになります。 +デフォルトでは入力テキストが含まれる行が抽出されます。 +以下の演算子にも対応しています。: +% ワイルドカード +> より大きい +< 未満 +>= 以上 +<= 以下 += 等しい: 完全に一致 +<> 等しくない: 不一致 +x~y 範囲: xとyの間 +/regexp/ 正規表現に一致する値 + + + + Set Filter Expression + フィルター式を設定 + + + + What's This? + これは何? + + + + Is NULL + NULL + + + + Is not NULL + NULLでない + + + + Is empty + 空文字 + + + + Is not empty + 空文字でない + + + + Not containing... + 含まない... + + + + Equal to... + 等しい... + + + + Not equal to... + 等しくない... + + + + Greater than... + より大きい... + + + + Less than... + 未満... + + + + Greater or equal... + 以上... + + + + Less or equal... + 以下... + + + + In range... + 範囲内... + + + + Regular expression... + 正規表現... + + + + Clear All Conditional Formats + すべての条件付き書式を削除 + + + + Use for Conditional Format + 条件付き書式を使う + + + + Edit Conditional Formats... + 条件付き書式を編集... + + + + FindReplaceDialog + + + Find and Replace + 検索と置換 + + + + Fi&nd text: + 検索文字列(&N): + + + + Re&place with: + 置換文字列(&P): + + + + Match &exact case + 大/小文字を区別(&E) + + + + Match &only whole words + 単語一致のみ(&O) + + + + When enabled, the search continues from the other end when it reaches one end of the page + 有効にすると、ページの最後に到達すると先頭に戻って検索します + + + + &Wrap around + 折り返しあり(&W) + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + 設定するとカーソル位置から戻って検索します。設定しないとカーソル位置の先を検索します + + + + Search &backwards + 戻って検索(&B) + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>設定すると、現在選択した範囲のみを検索します。</p></body></html> + + + + &Selection only + 選択範囲のみ(&S) + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>設定すると、検索文字列はUNIX正規表現と解釈されます。以下を参照 <a href="https://ja.wikibooks.org/wiki/%E6%AD%A3%E8%A6%8F%E8%A1%A8%E7%8F%BE">Wikibooksの正規表現</a>。</p></body></html> + + + + Use regular e&xpressions + 正規表現を使用(&X) + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + カーソル位置から"戻って検索"で設定した方向にある、次に一致する文字列を検索します + + + + &Find Next + 次を検索(&F) + + + + F3 + + + + + &Replace + 置換(&R) + + + + Highlight all the occurrences of the text in the page + ページ内のすべての一致する文字列を強調 + + + + F&ind All + すべて検索(&I) + + + + Replace all the occurrences of the text in the page + ページ内のすべての一致する文字列を置換 + + + + Replace &All + すべて置換(&A) + + + + The searched text was not found + 検索文字列は見つかりませんでした + + + + The searched text was not found. + 検索文字列は見つかりませんでした。 + + + + The searched text was found one time. + 検索文字列が1つありました。 + + + + The searched text was found %1 times. + 検索文字列が%1つありました。 + + + + The searched text was replaced one time. + 検索文字列を1つ置き換えました。 + + + + The searched text was replaced %1 times. + 検索文字列を%1つ置き換えました。 + + + + ForeignKeyEditor + + + &Reset + リセット(&R) + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + 外部キー節 (ON UPDATE, ON DELETE など。) + + + + ImportCsvDialog + + + Import CSV file + CSVファイルをインポート + + + + Table na&me + テーブル名(&M) + + + + &Column names in first line + 先頭行をカラム名に(&C) + + + + Field &separator + フィールド区切り(&S) + + + + , + , + + + + ; + ; + + + + + Tab + タブ + + + + | + | + + + + Other + その他 + + + + &Quote character + 引用符文字(&Q) + + + + + Other (printable) + その他 (印刷可能) + + + + + Other (code) + その他 (文字コード) + + + + " + " + + + + ' + ' + + + + &Encoding + エンコード(&E) + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + フィールドをトリムする? + + + + Separate tables + テーブルを分ける + + + + Advanced + 高度な設定 + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + 空値をCSVファイルから既存のテーブルのデフォルト値があるカラムにインポートすると、デフォルト値が挿入されます。このオプションを有効にすると代わりに空値が挿入されます。 + + + + Ignore default &values + デフォルト値を無視(&V) + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + このオプションを有効にすると、デフォルト値がなく NOT NULL なカラムに空値をインポートしようとしたときに、インポートを中止します。 + + + + Fail on missing values + 値がない場合中止 + + + + Disable data type detection + データ型検出を無効 + + + + Disable the automatic data type detection when creating a new table. + 新しいテーブルを作るときに自動データ型検出を無効にします。 + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + 主キー、一意性制約、一意なインデックスがある既存のテーブルにインポートすると、競合が発生する可能性があります。このオプションで、競合の解決方法を選択できます。デフォルトではインポートを中止しロールバックしますが、無視を選択して競合した行をインポートしない、もしくは、テーブル内の既存の行を置き換えることもできます。 + + + + Abort import + インポートを中止 + + + + Ignore row + 行を無視 + + + + Replace existing row + 既存の行を置き換え + + + + Conflict strategy + 競合の解決方法 + + + + + Deselect All + すべて非選択 + + + + Match Similar + 類似に一致 + + + + Select All + すべて選択 + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + 名前が '%1' のテーブルは既に存在しています。既存のテーブルへのインポートはカラムの数が一致する場合のみ可能です。 + + + + There is already a table named '%1'. Do you want to import the data into it? + 名前が '%1' のテーブルは既に存在しています。データをこれにインポートしますか? + + + + Creating restore point failed: %1 + 復元ポイントの作成に失敗: %1 + + + + Creating the table failed: %1 + テーブルの作成に失敗: %1 + + + + importing CSV + CSVのインポート + + + + Inserting row failed: %1 + 行の挿入に失敗: %1 + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + ファイル '%1' のインポートに %2msかかりました。内 %3ms は行関数に費やされました。 + + + + MainWindow + + + DB Browser for SQLite + DB Browser for SQLite + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + データベース構造 + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + これは開いているデータベースの構造です。 +SQL文をオブジェクト行からドラッグしほかのアプリケーションや'DB Browser for SQLite'の他のインスタンスにドロップできます。 + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + データ閲覧 + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + プラグマ編集 + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + 警告: このプラグマは読み取り可能でなく、この値は推定です。プラグマを書き込んでも、SQLite 拡張などで上書きされるかもしれません。 + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + SQL実行 + + + + toolBar1 + ツールバー1 + + + + &File + ファイル(&F) + + + + &Import + インポート(&I) + + + + &Export + エクスポート(&E) + + + + &Edit + 編集(&E) + + + + &View + ビュー(&V) + + + + &Help + ヘルプ(&H) + + + + &Tools + ツール(&T) + + + + DB Toolbar + DBツールバー + + + + Edit Database &Cell + データベースのセルを編集(&C) + + + + SQL &Log + SQLログ(&L) + + + + Show S&QL submitted by + 表示するSQLの送信元は(&Q) + + + + User + ユーザー + + + + Application + アプリケーション + + + + Error Log + エラーログ + + + + This button clears the contents of the SQL logs + このボタンでSQLログの内容を消去します + + + + &Clear + 消去(&C) + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + このパネルでアプリケーションやあなたが発行した全てのSQLコマンドのログを調査できます + + + + &Plot + プロット(&P) + + + + DB Sche&ma + DBスキーマ(&M) + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + これは開いているデータベースの構造です。 +複数のオブジェクト名を名前カラムからドラッグしSQLエディターにドロップできます。ドロップした名前のプロパティはコンテキストメニューで調節できます。これはSQL文の作成に役立ちます。 +SQL文をスキーマカラムからSQLエディターや他のアプリケーションにドロップできます。 + + + + + &Remote + リモート(&R) + + + + + Project Toolbar + プロジェクトツールバー + + + + Extra DB toolbar + 追加DBツールバー + + + + + + Close the current database file + 現在のデータベースファイルを閉じます + + + + &New Database... + 新しいデータベース(&N)... + + + + + Create a new database file + 新しいデータベースファイルを作成します + + + + This option is used to create a new database file. + このオプションは新しいデータベースファイルを作成するために使います。 + + + + Ctrl+N + + + + + + &Open Database... + データベースを開く(&O)... + + + + + + + + Open an existing database file + 既存のデータベースファイルを開きます + + + + + + This option is used to open an existing database file. + このオプションは既存のデータベースファイルを開くために使います。 + + + + Ctrl+O + + + + + &Close Database + データベースを閉じる(&C) + + + + This button closes the connection to the currently open database file + このボタンで現在開いているデータベースファイルとの接続を閉じます + + + + Open SQL file(s) + SQLファイルを開く + + + + This button opens files containing SQL statements and loads them in new editor tabs + このボタンでSQL文を含むファイルを新しいエディタータブに開きます + + + + Execute line + 行を実行 + + + + Sa&ve Project + プロジェクトを保存(&V) + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + このボタンで開いているDBに関連付けられる全ての設定をSQLiteプロジェクトファイルに保存します + + + + This button lets you open a DB Browser for SQLite project file + このボタンでSQLiteプロジェクトファイルを開きます + + + + Ctrl+Shift+O + + + + + Find + 検索 + + + + Find or replace + 検索と置換 + + + + Print text from current SQL editor tab + 現在のSQLエディタータブのテキストを印刷します + + + + Print the structure of the opened database + 開いているデータベースの構造を印刷します + + + + Un/comment block of SQL code + SQLコードのブロックをコメント/非コメントに + + + + Un/comment block + ブロックをコメント/非コメント + + + + Comment or uncomment current line or selected block of code + 現在行かコードの選択されたブロックをコメント/非コメントにします + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + 選択された行か、選択がないならば現在行をコメント/非コメントにします。ブロック全体はその先頭行に従いコメント/非コメントされます。 + + + + Ctrl+/ + + + + + Stop SQL execution + SQLの実行を中止 + + + + Stop execution + 実行を中止 + + + + Stop the currently running SQL script + 現在実行中の SQL スクリプトを中止します + + + + &Save Project As... + プロジェクトに名前を付けて保存(&S)... + + + + + + Save the project in a file selected in a dialog + ダイアログで選択したファイルにプロジェクトを保存します + + + + Save A&ll + すべて保存(&L) + + + + + + Save DB file, project file and opened SQL files + DBファイル、プロジェクトファイル、開いているSQLファイルを保存します + + + + Ctrl+Shift+S + + + + + Browse Table + テーブルを閲覧 + + + + + Ctrl+W + + + + + &Revert Changes + 変更を取り消し(&R) + + + + + Revert database to last saved state + 最後に保存した状態へデータベースを戻します + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + このオプションは現在のデータベースファイルを最後に保存した状態に戻すために使います。最後の保存の後に行われたすべての変更は失われます。 + + + + &Write Changes + 変更を書き込み(&W) + + + + + Write changes to the database file + データベースファイルに変更を書き込みます + + + + This option is used to save changes to the database file. + このオプションはデータベースファイルに変更を保存するために使います。 + + + + Ctrl+S + + + + + Compact &Database... + データベースを圧縮(&D)... + + + + Compact the database file, removing space wasted by deleted records + 削除されたレコードが残っているスペースを取り除き、データベースファイルを圧縮します + + + + + Compact the database file, removing space wasted by deleted records. + 削除されたレコードが残っているスペースを取り除き、データベースファイルを圧縮します。 + + + + E&xit + 終了(&X) + + + + Ctrl+Q + + + + + &Database from SQL file... + SQLファイルからデータベースへ(&D)... + + + + Import data from an .sql dump text file into a new or existing database. + SQLダンプテキストファイルからデータを、新しいもしくは既存のデータベースにインポートします。 + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + このオプションでSQLダンプテキストファイルからデータを、新しいもしくは既存のデータベースにインポートできます。SQLダンプファイルは、MySQLやPostgreSQLなど、ほとんどのデータベースエンジンで作成できます。 + + + + &Table from CSV file... + CSVファイルからテーブルへ(&T)... + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + カンマ区切りのテキストファイルのデータをデータベースのテーブルにインポートするウィザードを開きます。 + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + カンマ区切りのテキストファイルのデータをデータベースのテーブルにインポートするウィザードを開きます。CSVファイルはほとんどのデータベースや表計算アプリケーションで作成できます。 + + + + &Database to SQL file... + データベースをSQLファイルへ(&D)... + + + + Export a database to a .sql dump text file. + データベースを .sql ダンプテキストファイルにエクスポートします。 + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + このオプションでデータベースを .sql ダンプテキストファイルにエクスポートできます。SQLダンプファイルはデータベースの再作成に必要なすべてのデータを含み、MySQLやPostgreSQLなど、ほとんどのデータベースエンジンで利用できます。 + + + + &Table(s) as CSV file... + テーブルをCSVファイルへ(&T)... + + + + Export a database table as a comma separated text file. + データベースのテーブルをカンマ区切りのテキストファイルにエクスポートします。 + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + データベースのテーブルをカンマ区切りのテキストファイルにエクスポートします。他のデータベースや表計算アプリケーションでインポートできます。 + + + + &Create Table... + テーブルを作成(&C)... + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + データベースに新しいテーブルの名前とフィールドを定義できる、テーブル作成ウイザードを開きます + + + + &Delete Table... + テーブルを削除(&D)... + + + + + Delete Table + テーブルを削除 + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + 削除するデータベーステーブルを選択できる、テーブル削除ウィザードをひらきます。 + + + + &Modify Table... + テーブルを変更(&M)... + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + 既存のテーブル名を変更できる、テーブル変更ウィザードを開きます。テーブルのフィールドを追加削除したり、フィールド名やデータ型の変更もできます。 + + + + Create &Index... + インデックスの作成(&I)... + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + 既存のデータベーステーブルに新しいインデックスを定義できる、インデックスウィザードを開きます。 + + + + &Preferences... + 設定(&P)... + + + + + Open the preferences window. + 設定ウィンドウを開きます。 + + + + &DB Toolbar + DBツールバー(&D) + + + + Shows or hides the Database toolbar. + データベースツールバーを表示/非表示します。 + + + + Ctrl+T + + + + + W&hat's This? + これは何(&H)? + + + + Ctrl+F4 + + + + + Shift+F1 + + + + + &About + DB Browser for SQLite について(&A) + + + + &Recently opened + 最近開いたファイル(&R) + + + + Open &tab + タブを開く(&T) + + + + This button opens a new tab for the SQL editor + このボタンでSQLエディターの新しいタブを開きます + + + + &Execute SQL + SQLを実行(&E) + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + このボタンで現在選択しているSQL文を実行します。テキストが選択されていない場合、すべてのSQL文が実行されます。 + + + + + + Save SQL file + SQLファイルを保存 + + + + &Load Extension... + 拡張を読み込み(&L)... + + + + + Execute current line + 現在行を実行 + + + + This button executes the SQL statement present in the current editor line + このボタンは現在エディターの行にあるSQL文を実行します + + + + Shift+F5 + + + + + Export as CSV file + CSVファイルにエクスポート + + + + Export table as comma separated values file + テーブルをカンマ区切りのファイルにエクスポートします + + + + &Wiki + ウィキ(&W) + + + + F1 + + + + + Bug &Report... + バグレポート(&R)... + + + + Feature Re&quest... + 機能を要求(&Q)... + + + + Web&site + ウェブサイト(&S) + + + + &Donate on Patreon... + Patreonで寄付(&D)... + + + + + Save the current session to a file + 現在のセッションをファイルに保存します + + + + Open &Project... + プロジェクトを開く(&P)... + + + + + Load a working session from a file + 作業中のセッションをファイルから読み込みます + + + + &Attach Database... + データベースに接続(&A)... + + + + + Add another database file to the current database connection + 他のデータベースファイルを現在のデータベース接続に加えます + + + + This button lets you add another database file to the current database connection + このボタンで他のデータベースファイルを現在のデータベース接続に加えます + + + + &Set Encryption... + 暗号化を設定(&S)... + + + + + Save SQL file as + 名前を付けてSQLファイルを保存 + + + + This button saves the content of the current SQL editor tab to a file + このボタンは現在のSQLエディタータブの内容をファイルに保存します + + + + &Browse Table + テーブルを閲覧(&B) + + + + Copy Create statement + CREATE文をコピー + + + + Copy the CREATE statement of the item to the clipboard + このアイテムのCREATE文をクリップボードにコピーします + + + + SQLCipher &FAQ + SQLCipher FAQ(&F) + + + + Opens the SQLCipher FAQ in a browser window + SQLCipher の FAQ をブラウザで開きます + + + + Table(&s) to JSON... + テーブルをJSONへ(&S)... + + + + Export one or more table(s) to a JSON file + 1つ以上のテーブルをJSONファイルにエクスポートします + + + + Open Data&base Read Only... + データベースを読み取り専用で開く(&B)... + + + + Open an existing database file in read only mode + 既存のデータベースファイルを読み取り専用モードで開きます + + + + Save results + 結果を保存 + + + + Save the results view + 結果のビューを保存 + + + + This button lets you save the results of the last executed query + このボタンで最後に実行したクエリーの結果を保存します + + + + + Find text in SQL editor + SQLエディターの文字列を検索 + + + + This button opens the search bar of the editor + このボタンはエディターの検索バーを開きます + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + SQLエディターの文字列を検索/置換します + + + + This button opens the find/replace dialog for the current editor tab + このボタンは現在のエディタータブの検索/置換ダイアログを開きます + + + + Ctrl+H + + + + + Export to &CSV + CSVにエクスポート(&C) + + + + Save as &view + ビューとして保存(&V) + + + + Save as view + ビューとして保存 + + + + Shows or hides the Project toolbar. + プロジェクトツールバーを表示/非表示します。 + + + + Extra DB Toolbar + 追加DBツールバー + + + + New In-&Memory Database + 新しいインメモリーデータベース(&M) + + + + Drag && Drop Qualified Names + 正規化名前をドラッグ&&ドロップ + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + オブジェクトをドラッグしエディターにドロップしたときに、正規化名称(例 "Table"."Field")を使います + + + + Drag && Drop Enquoted Names + クォートされた名前をドラッグ&&ドロップ + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + オブジェクトをドラッグしエディターにドロップしたときに、エスケープされた名前(例 "Table1")を使います + + + + &Integrity Check + 整合性検査(&I) + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + 開いているデータベースの整合性検査プラグマを実行し、結果をSQL実行タブに出力します。このプラグマはすべてのデータベースの整合性検査を行います。 + + + + &Foreign-Key Check + 外部キー検査(&F) + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + 開いているデータベースの外部キー検査プラグマを実行し、結果をSQL実行タブに出力します + + + + &Quick Integrity Check + 即時整合性検査(&Q) + + + + Run a quick integrity check over the open DB + 開いているDBの高速整合性検査を実行します + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + 開いているデータベースの高速整合性検査プラグマを実行し、結果をSQL実行タブに出力します。このコマンドは(通常の)整合性検査PRAGMAの大部分を行いますが、より高速に動作します。 + + + + &Optimize + 最適化(&O) + + + + Attempt to optimize the database + データベースの最適化を試みます + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + 開いているデータベースの最適化プラグマを実行します。このプラグマは将来のクエリーの性能を改善させます。 + + + + + Print + 印刷 + + + + Open a dialog for printing the text in the current SQL editor tab + 現在のSQLエディタータブの文字列を印刷するダイアログを開きます + + + + Open a dialog for printing the structure of the opened database + 開いているデータベースの構造を印刷するダイアログを開きます + + + + + Ctrl+P + + + + + Execute all/selected SQL + すべて/選択したSQLを実行 + + + + Ctrl+Return + Ctrl+Return + + + + Ctrl+L + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Ctrl+E + + + + + Window Layout + ウィンドウレイアウト + + + + Reset Window Layout + ウィンドウレイアウトをリセット + + + + Alt+0 + + + + + Simplify Window Layout + ウィンドウレイアウトをシンプルに + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + ウィンドウを下にドッキング + + + + Dock Windows at Left Side + ウィンドウを左にドッキング + + + + Dock Windows at Top + ウィンドウを上にドッキング + + + + The database is currenctly busy. + データベースは現在ビジー状態です。 + + + + Click here to interrupt the currently running query. + ここをクリックして、現在実行中のクエリーを中断します。 + + + + Encrypted + 暗号化 + + + + Database is encrypted using SQLCipher + データベースはSQLCipherで暗号化されています + + + + Read only + 読み取り専用 + + + + Database file is read only. Editing the database is disabled. + データベースは読み取り専用です。データベースの編集はできません。 + + + + Database encoding + データベースのエンコード + + + + + Choose a database file + データベースファイルを選択 + + + + Could not open database file. +Reason: %1 + データベースファイルを開けません。 +理由: %1 + + + + + + Choose a filename to save under + セーブするファイル名を下から選択 + + + + In-Memory database + インメモリーデータベース + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + まだSQL文を実行中です。今、データベースを閉じると、実行が中止され、データベースに一貫性がない状態を残すかもしれません。本当にデータベースを閉じますか? + + + + Edit View %1 + ビュー %1 を編集 + + + + Edit Trigger %1 + トリガー %1 を編集 + + + + Opened '%1' in read-only mode from recent file list + 最近使ったファイルリストから読み取り専用モードで '%1' を開きました + + + + Opened '%1' from recent file list + 最近使ったファイルリストから '%1' を開きました + + + + Could not find resource file: %1 + リソースファイルが見つかりません: %1 + + + + Could not open project file for writing. +Reason: %1 + 書き込むプロジェクトファイルを開くことができません。 +理由: %1 + + + + Project saved to file '%1' + プロジェクトをファイル '%1' に保存しました + + + + This action will open a new SQL tab with the following statements for you to edit and run: + この操作はこの文の編集と実行ができる新しいSQLタブを開きます: + + + + Busy (%1) + ビジー (%1) + + + + Rename Tab + タブ名を変更 + + + + Duplicate Tab + タブを複製 + + + + Close Tab + タブを閉じる + + + + Opening '%1'... + '%1' を開いています... + + + + There was an error opening '%1'... + '%1' を開くときにエラーがありました... + + + + Value is not a valid URL or filename: %1 + 値は正規のURLもしくはファイル名でありません: %1 + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + 本当にテーブル '%1' を削除しますか? +テーブルに関連するすべてのデータは失われます。 + + + + Are you sure you want to delete the view '%1'? + 本当にビュー '%1' を削除しますか? + + + + Are you sure you want to delete the trigger '%1'? + 本当にトリガー '%1' を削除しますか? + + + + Are you sure you want to delete the index '%1'? + 本当にインデックス '%1' を削除しますか? + + + + Error: could not delete the table. + エラー: テーブルを削除できませんでした。 + + + + Error: could not delete the view. + エラー: ビューを削除できませんでした。 + + + + Error: could not delete the trigger. + エラー: トリガーを削除できませんでした。 + + + + Error: could not delete the index. + エラー: インデックスを削除できませんでした。 + + + + Message from database engine: +%1 + データベースエンジンからのメッセージ。 +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + テーブルの編集には保留中のすべての変更を今保存する必要があります。 +本当にデータベースを保存しますか? + + + + Error checking foreign keys after table modification. The changes will be reverted. + デーブル変更後の外部キー検査でエラー。変更は元に戻ります。 + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + このテーブルは外部キー検査に合格しませんでした。<br/>'ツール | 外部キー検査' を実行し、報告された問題を解決します。 + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + SQL文は既に実行中です。替わりに現在の文を実行するため、中止しますか? 注意: これはデータベースに一貫性がない状態を残すかもしれません。 + + + + -- EXECUTING SELECTION IN '%1' +-- + -- '%1 内の選択部分を実行中' +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- '%1 内の行を実行中' +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- '%1 内をすべて実行中' +-- + + + + Result: %1 + 結果: %1 + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + PRAGMA 値の設定やバキュームは現在のトランザクションをコミットします。 +本当に行いますか? + + + + %1 rows returned in %2ms + %1 行が %2ms で返されました + + + + + At line %1: + %1 行目: + + + + Result: %2 + 結果: %2 + + + + Choose text files + テキストファイルを選択 + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + データベースの保存中にエラー。これは全ての変更がデータベースに保存されていなかったためです。まず、以下のエラーを解決してください。 + +%1 + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + 本当にデータベースファイル '%1' への最後の保存後に行われたすべての変更を元に戻しますか? + + + + Choose a file to import + インポートするファイルを選択 + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (読み取り専用) + + + + Open Database or Project + データベース化プロジェクトを開く + + + + Attach Database... + データベースに接続... + + + + Import CSV file(s)... + CSVファイルをインポート... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + ドロップされたファイルに対して行う操作を選択してください。 <br/>注意: 'インポート' のみが複数ファイルを処理できます。 + + + + + Do you want to save the changes made to SQL tabs in a new project file? + 新しいプロジェクトファイルにSQLタブで行われた変更を保存しますか? + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + プロジェクトファイル '%1' にSQLタブで行われた変更を保存しますか? + + + + Do you want to save the changes made to the SQL file %1? + 変更をSQLファイル %1 に保存しますか? + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + このタブの文はまだ実行中です。タブを閉じると実行が中止されます。これはデータベースに一貫性がない状態を残すかもしれません。本当にタブを閉じますか? + + + + Text files(*.sql *.txt);;All files(*) + テキストファイル(*.sql *.txt);;すべてのファイル(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + インポートしたデータを保持する新しいデータベースを作成しますか +いいえを選択すると、SQLファイルからのデータを現在のデータベースにインポートしようとします。 + + + + Do you want to save the changes made to the project file '%1'? + プロジェクトファイル '%1' に変更を保存しますか? + + + + Execution finished with errors. + エラーがありましたが、実行が終了しました。 + + + + Execution finished without errors. + エラーなしで実行が終了しました。 + + + + File %1 already exists. Please choose a different name. + ファイル %1 は既に存在しています。違う名前を選んでください。 + + + + Error importing data: %1 + データのインポートでエラー: %1 + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + インポートが終了しました。いくつかの外部キー制約に違反があります。保存前に修正してください。 + + + + Import completed. + インポート完了。 + + + + Delete View + ビューを削除 + + + + Modify View + ビューを変更 + + + + Delete Trigger + トリガーを削除 + + + + Modify Trigger + トリガーを変更 + + + + Delete Index + インデックスを削除 + + + + Modify Index + インデックスを変更 + + + + Modify Table + テーブルを変更 + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + PRAGMA 値の設定は現在のトランザクションをコミットします。 +本当に行いますか? + + + + Select SQL file to open + 開くSQLファイルを選択 + + + + Select file name + ファイル名を選択 + + + + Select extension file + 拡張ファイルを選択 + + + + Extension successfully loaded. + 拡張の読み込みに成功しました。 + + + + Error loading extension: %1 + 拡張の読み込みでエラー: %1 + + + + + Don't show again + 二度と表示しない + + + + New version available. + 新しいバージョンがあります。 + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + 新しいバージョンの DB Browser for SQLite (%1.%2.%3)があります。<br/><br/><a href='%4'>%4</a>からダウンロードしてください。 + + + + Choose a project file to open + 開くプロジェクトファイルを選択 + + + + DB Browser for SQLite project file (*.sqbpro) + DB Browser for SQLite プロジェクトファイル (*.sqbpro) + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + このプロジェクトファイルは DB Browser for SQLite version 3.10 以下のバージョンで使われた、古いファイルフォーマットを使用しています。このファイルフォーマットの読み込みはいまだ完全にサポートされていますが、将来古いフォーマットのサポートはなくなるため、すべてのプロジェクトファイルを新しいフォーマットに変換することをおすすめします。ファイルを変換するには単純にファイルを開き再保存します。 + + + + Collation needed! Proceed? + 照合順序が必要です!続行しますか? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + このデータベースにあるテーブルは特別な照合順序関数 '%1' が必要ですが、このアプリケーションは更なる知識なしでは提供できません。 +続行すると、データベースに何か悪いことがあるかもしれません。 +バックアップを作成してください! + + + + creating collation + 照合順序の作成中 + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + SQLタブに新しい名前を設定してください。'&&'の文字を使うと、その次の文字をキーボードショートカットにできます。 + + + + Please specify the view name + ビューの名前を指定してください + + + + There is already an object with that name. Please choose a different name. + その名前のオブジェクトは既に存在します。別の名前を選んでください。 + + + + View successfully created. + ビューの作成に成功しました。 + + + + Error creating view: %1 + ビューの作成でエラー: %1 + + + + This action will open a new SQL tab for running: + この操作は実行のため新しいSQLタブを開きます: + + + + Press Help for opening the corresponding SQLite reference page. + ヘルプを押すと、対応する SQLite のリファレンスページを開きます。 + + + + NullLineEdit + + + Set to NULL + NULL に設定 + + + + Alt+Del + Alt+Del + + + + PlotDock + + + Plot + プロット + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>このペインは現在閲覧中のテーブルか直前に実行したクエリーのカラムの一覧を表示します。下のプロットペインでXもしくはY軸として使用されるカラムを選択できます。表は結果のプロットに使用できる軸の種類を表示します。Y軸には数値のカラムのみ選択できますが、X軸にはこれらが選択できます:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">日時</span>: &quot;yyyy-MM-dd hh:mm:ss&quot; もしくは &quot;yyyy-MM-ddThh:mm:ss&quot; 形式の文字列</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">日付</span>: &quot;yyyy-MM-dd&quot; 形式の文字列</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">時刻</span>: &quot;hh:mm:ss&quot; 形式の文字列</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">ラベル</span>: その他の形式の文字列。これをX軸に選択すると、カラムの値を棒グラフのラベルとして表示します</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">数値</span>: INTEGER か REAL の値</li></ul><p>Yのセルをダブルクリックすると、グラフに使用する色を変更できます。</p></body></html> + + + + Columns + カラム + + + + X + X + + + + Y1 + Y1 + + + + Y2 + Y2 + + + + Axis Type + 軸のデータ型 + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + 上でXとY軸を選択すると、ここにグラフが描画されます。 + +点をクリックすると、点と該当するテーブルの値が選択できます。Ctrl+クリックで点を範囲選択できます。 + +マウスホイールでズーム、ドラッグで軸の範囲を変更できます。 + +軸か軸のラベルを選択すると、ズームやドラッグの方向を限定できます。 + + + + Line type: + 線の種類: + + + + + None + なし + + + + Line + 直線 + + + + StepLeft + 階段(左値) + + + + StepRight + 階段(右値) + + + + StepCenter + 階段(最近値) + + + + Impulse + インパルス + + + + Point shape: + 点の形状: + + + + Cross + × + + + + Plus + + + + + Circle + + + + + Disc + + + + + Square + + + + + Diamond + + + + + Star + + + + + Triangle + + + + + TriangleInverted + + + + + CrossSquare + ×+□ + + + + PlusSquare + ++□ + + + + CrossCircle + ×+○ + + + + PlusCircle + ++○ + + + + Peace + 静謐 + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>現在のプロットを保存...</p><p>ファイルフォーマットは拡張子 (png, jpg, pdf, bmp) から選択されます</p></body></html> + + + + Save current plot... + 現在のプロットを保存... + + + + + Load all data and redraw plot + すべてのデータを読み込み再描画 + + + + Copy + コピー + + + + Print... + 印刷... + + + + Show legend + 凡例を表示 + + + + Stacked bars + 値を積み重ねる + + + + Date/Time + 日時 + + + + Date + 日付 + + + + Time + 時刻 + + + + + Numeric + 数値 + + + + Label + ラベル + + + + Invalid + 不正 + + + + + + Row # + 行 # + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + すべてのデータを読み込み再描画します。 +警告: 部分的なフェッチ機構により、まだテーブルからすべてのデータがフェッチされているわけではありません。 + + + + Choose an axis color + 軸の色を選択 + + + + Choose a filename to save under + 以下を保存するファイル名を選択 + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;すべてのファイル(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + このプロットには未ソートなデータがあります。選択した線の種類はX軸でソートされたデータのみに適用できます。テーブルやクエリーをX軸でソートするか、未ソートのデータでも使用できる、 なし や 直線 形式を選択してください。 + + + + Loading all remaining data for this table took %1ms. + このテーブルの残っているデータすべての読み込みに %1ms かかりました。 + + + + PreferencesDialog + + + Preferences + 設定 + + + + &General + 全般(&G) + + + + Default &location + デフォルトのフォルダー(&L) + + + + Remember last location + 最後に使用したディレクトリーを記憶 + + + + Always use this location + 常にこのディレクトリーを使用 + + + + Remember last location for session only + セッションだけで最後に使用したディレクトリーを記憶 + + + + + + ... + ... + + + + Lan&guage + 言語(&L) + + + + Toolbar style + ツールバー形式 + + + + + + + + Only display the icon + アイコンのみ表示 + + + + + + + + Only display the text + 文字のみ表示 + + + + + + + + The text appears beside the icon + アイコンの横に文字を表示 + + + + + + + + The text appears under the icon + アイコンの下に文字を表示 + + + + + + + + Follow the style + スタイルに従う + + + + Show remote options + リモートオプションを表示する + + + + + + + + + + + + enabled + 有効 + + + + Automatic &updates + 自動アップデート(&U) + + + + DB file extensions + DBファイル拡張子 + + + + Manage + 管理 + + + + Main Window + メインウィンドウ + + + + Database Structure + データベース構造 + + + + Browse Data + データ閲覧 + + + + Execute SQL + SQL実行 + + + + Edit Database Cell + データベースセル編集 + + + + When this value is changed, all the other color preferences are also set to matching colors. + この値が変更されると、他の色設定すべても一致する色に設定されます。 + + + + Follow the desktop style + デスクトップスタイルに従う + + + + Dark style + ダークスタイル + + + + Application style + アプリケーションスタイル + + + + This sets the font size for all UI elements which do not have their own font size option. + これは独自のフォントサイズオプションを持たない全てのUI要素のフォントサイズを設定します。 + + + + Font size + フォントサイズ + + + + &Database + データベース(&D) + + + + Database &encoding + データベースのエンコード(&E) + + + + Open databases with foreign keys enabled. + 外部キーを有効にしてデータベースを開く。 + + + + &Foreign keys + 外部キー(&F) + + + + Remove line breaks in schema &view + スキーマビューから改行を取り除く(&V) + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + 有効にすると、DB構造タブのカラムスキーマ、ドックや印刷された出力にある改行が取り除かれます。 + + + + Prefetch block si&ze + 先読みブロックサイズ(&Z) + + + + SQ&L to execute after opening database + データベースを開いた後に実行するSQL(&L) + + + + Default field type + デフォルトのフィールドデータ形式 + + + + Database structure font size + データベース構造のフォントサイズ + + + + Data &Browser + データ閲覧(&B) + + + + Font + フォント + + + + &Font + フォント(&F) + + + + Font si&ze + フォントサイズ(&Z) + + + + Content + 内容 + + + + Symbol limit in cell + セル内のシンボル上限 + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + これはいくつかの計算負荷の高い機能を有効にできる項目の最大数です。 +カラム内の現在値に基づいた値補完を有効にする、テーブル内の行の最大数。 +選択内の合計と平均を計算するインデックスの最大数。 +0に設定するとこの機能を無効にできます。 + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + これは現在の値を基にしたカラムの値補完を有効にしたときのテーブル内の行数の最大値です。 + + + + Field display + フィールド表示 + + + + Displayed &text + 表示されたテキスト(&T) + + + + Binary + バイナリー + + + + NULL + NULL + + + + Regular + 通常 + + + + + + + + + Click to set this color + クリックでこの色を設定 + + + + Text color + 文字色 + + + + Background color + 背景色 + + + + Preview only (N/A) + 閲覧のみ(設定不可) + + + + Filters + フィルター + + + + Escape character + エスケープ文字 + + + + Delay time (&ms) + 遅延時間 (ms) (&M) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + 新しいフィルターの値が適用される前の待機時間を設定します。0にすると待機しません。 + + + + &SQL + SQL(&S) + + + + Settings name + 設定名 + + + + Context + 内容 + + + + Colour + + + + + Bold + 太字 + + + + Italic + イタリック + + + + Underline + 下線 + + + + Keyword + キーワード + + + + Function + 関数 + + + + Table + テーブル + + + + Comment + コメント + + + + Identifier + 識別子 + + + + String + 文字列 + + + + Current line + 現在行 + + + + Background + 背景 + + + + Foreground + 前景 + + + + SQL editor &font + SQLエディターフォント(&F) + + + + SQL &editor font size + SQLエディターフォントサイズ(&E) + + + + SQL &results font size + SQL結果フォントサイズ(&R) + + + + Tab size + タブサイズ + + + + &Wrap lines + ワードラップ(&W) + + + + Never + しない + + + + At word boundaries + 単語で + + + + At character boundaries + 文字で + + + + At whitespace boundaries + 空白で + + + + &Quotes for identifiers + 識別子のクォート(&Q) + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + アプリケーションがSQLコード内で識別子をクォートする仕組みを選択します。 + + + + "Double quotes" - Standard SQL (recommended) + "ダブルクォート" - 一般的な SQL (推奨) + + + + `Grave accents` - Traditional MySQL quotes + `グレイヴアクセント` - 伝統的な MySQL のクォート + + + + [Square brackets] - Traditional MS SQL Server quotes + [角括弧] - 伝統的な MS SQL Server のクォート + + + + Code co&mpletion + コード補完(&M) + + + + Keywords in &UPPER CASE + キーワードを大文字に(&U) + + + + When set, the SQL keywords are completed in UPPER CASE letters. + 設定すると、SQLキーワードを大文字に補完します。 + + + + Error indicators + エラー指摘 + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + 設定すると、最後の実行でエラーが起きたSQLコードの行が強調され、結果フレームがバックグラウンドでエラーを指摘します + + + + Hori&zontal tiling + 横に並べる(&Z) + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + 有効にすると、重ねる代わりに、SQLコードエディターと結果タブビューが並んで表示されます。 + + + + Close button on tabs + タブ上の閉じるボタン + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + 可能ならば、SQLエディタータブに閉じるボタンを表示します。どのような場合でも、コンテキストメニューやキーボートショートカットを使って閉じることはできます。 + + + + &Extensions + 拡張(&E) + + + + Select extensions to load for every database: + すべてのデータベースで読み込む拡張を選択: + + + + Add extension + 拡張を追加 + + + + Remove extension + 拡張を削除 + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>REGEXP演算子がサポートされている間、SQLite は正規表現を実装しませんが、実行中のアプリケーションをコールバックします。DB Browser for SQLite はこれを実装しているので、REGEXP をすぐに使えます。しかし、これには複数の実装があり、アプリケーションの実装を無効にし拡張を使って他の実装を読み込むことが自由にできます。アプリケーションの再起動が必要です。</p></body></html> + + + + Disable Regular Expression extension + 正規表現拡張を無効 + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html><head/><body><p>SQLite は共有ライブラリファイルから拡張を読み込むSQL関数を提供します。SQLコードから<span style=" font-style:italic;">load_extension()</span>関数を使いたいならば、.これを有効にします。</p><p>セキュリティー上の理由から、拡張の読み込みはデフォルトで無効になっており、使用するにはこの設定を有効にする必要があります。このオプションが無効でも、GUIを通じて拡張を読み込むことは常にできます。</p></body></html> + + + + Allow loading extensions from SQL code + SQLコードで拡張の読み込みを許可する + + + + Remote + リモート + + + + CA certificates + 認証局証明書 + + + + Proxy + プロキシ + + + + Configure + 設定 + + + + + Subject CN + 対象CN + + + + Common Name + Common Name + + + + Subject O + 対象O + + + + Organization + Organization + + + + + Valid from + 証明開始 + + + + + Valid to + 証明終了 + + + + + Serial number + シリアル番号 + + + + Your certificates + あなたの証明書 + + + + Threshold for completion and calculation on selection + 補完と選択範囲内の計算の閾値 + + + + Show images in cell + セル内に画像を表示 + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + このオプションを有効にすると、セル内の画像データを含む BLOB のプレビューができます。しかし、これはデータ閲覧の性能に影響します。 + + + + File + ファイル + + + + Subject Common Name + 対象Common Name + + + + Issuer CN + 発行者CN + + + + Issuer Common Name + 発行者Common Name + + + + Clone databases into + ここにデータベースを複製 + + + + + Choose a directory + ディレクトリーを選択 + + + + The language will change after you restart the application. + アプリケーションを再起動すると、言語が変更されます。 + + + + Select extension file + 拡張ファイルを選択 + + + + Extensions(*.so *.dylib *.dll);;All files(*) + 拡張(*.so *.dylib *.dll);;すべてのファイル(*) + + + + Import certificate file + 証明書ファイルをインポート + + + + No certificates found in this file. + このファイルに証明書が見つかりません。 + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + 本当にこの証明書を削除しますか? すべての証明書データはこのアプリケーション設定から削除されます! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + 本当に保存された設定を削除しますか? +すべての設定は失われ、デフォルト値が使用されます。 + + + + ProxyDialog + + + Proxy Configuration + プロキシ設定 + + + + Pro&xy Type + プロキシタイプ(&X) + + + + Host Na&me + ホスト名(&M) + + + + Port + ポート + + + + Authentication Re&quired + 認証が必要(&Q) + + + + &User Name + ユーザー名(&U) + + + + Password + パスワード + + + + None + なし + + + + System settings + システム設定 + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + All files (*) + すべてのファイル (*) + + + + Error importing data + データのインポートでエラー + + + + from record number %1 + レコード番号 %1 で + + + + . +%1 + . +%1 + + + + Importing CSV file... + CSVファイルをインポート中... + + + + Cancel + キャンセル + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + SQLite データベースファイル (*.db *.sqlite *.sqlite3 *.db3) + + + + Left + + + + + Right + + + + + Center + 中央 + + + + Justify + 均等 + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + SQLite データベースファイル (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + DB Browser for SQLite プロジェクトファイル (*.sqbpro) + + + + SQL Files (*.sql) + SQL ファイル (*.sql) + + + + All Files (*) + すべてのファイル (*) + + + + Text Files (*.txt) + テキストファイル (*.txt) + + + + Comma-Separated Values Files (*.csv) + カンマ区切りファイル (*.csv) + + + + Tab-Separated Values Files (*.tsv) + タブ区切りファイル (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + 区切りファイル (*.dsv) + + + + Concordance DAT files (*.dat) + 用語索引 DAT ファイル (*.dat) + + + + JSON Files (*.json *.js) + JSONファイル (*.json *.js) + + + + XML Files (*.xml) + XMLファイル (*.xml) + + + + Binary Files (*.bin *.dat) + バイナリーファイル (*.bin *.dat) + + + + SVG Files (*.svg) + SVG ファイル (*.svg) + + + + Hex Dump Files (*.dat *.bin) + 十六進ダンプファイル (*.dat *.bin) + + + + Extensions (*.so *.dylib *.dll) + 拡張 (*.so *.dylib *.dll) + + + + RemoteCommitsModel + + + Commit ID + コミットID + + + + Message + メッセージ + + + + Date + 日付 + + + + Author + 作者 + + + + Size + サイズ + + + + Authored and committed by %1 + %1 が作成・コミットしました + + + + Authored by %1, committed by %2 + %1 が作成, %2 がコミットしました + + + + RemoteDatabase + + + Error opening local databases list. +%1 + ローカルデータベースの一覧を開くときにエラー。 +%1 + + + + Error creating local databases list. +%1 + ローカルデータベースの一覧の作成でエラー。 +%1 + + + + RemoteDock + + + Remote + リモート + + + + Identity + アイデンティティー + + + + Push currently opened database to server + 現在開いているデータベースをサーバーにプッシュします + + + + DBHub.io + DBHub.io + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + <html><head/><body><p>このペインでは、dbhub.io ウェブサイトのリモートデータベースを DB Browser for SQLite に追加します。最初にアイデンティティーが必要です。:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">dbhub.io ウェブサイトにログインします。(GitHubかあなたが望む認証情報を使います)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">ボタンをクリックし&quotクライアント証明書を作成&quotします(これがあなたのアイデンティティです)。 証明書ファイルが与えられます(あなたのローカルディスクに保存します)。</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> +DB Browser for SQLite 設定のリモートタブに行き、新しい証明書を DB Browsser for SQLite に追加するボタンをクリックし、ダウンロードした証明書ファイルを選択します。</li></ol><p>これで、リモートパネルにあなたのアイデンティティが表示され、リモートデータベースが追加できます。</p></body></html> + + + + Local + ローカル + + + + Current Database + 現在のデータベース + + + + Clone + クローン + + + + User + ユーザー + + + + Database + データベース + + + + Branch + ブランチ + + + + Commits + コミット + + + + Commits for + これにコミット + + + + Delete Database + データベースを削除 + + + + Delete the local clone of this database + このデータベースのローカルクローンを削除 + + + + Open in Web Browser + ウェブブラウザーで開く + + + + Open the web page for the current database in your browser + ブラウザで現在のデータベースのウェブページを開く + + + + Clone from Link + リンクからクローン + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + データベースのウェブページで提供されるURLを使って、ローカル編集用のリモートデータベースをダウンロードするには、これを使います。 + + + + Refresh + 更新 + + + + Reload all data and update the views + 全てのデータを再読み込みしビューを更新する + + + + F5 + + + + + Clone Database + データベースをクローン + + + + Open Database + データベースを開く + + + + Open the local copy of this database + このデータベースのローカルコピーを開く + + + + Check out Commit + コミットをチェックアウト + + + + Download and open this specific commit + この特定のコミットをダウンロードし開く + + + + Check out Latest Commit + 最新のコミットをチェックアウト + + + + Check out the latest commit of the current branch + 現在のブランチの最新のコミットをチェックアウト + + + + Save Revision to File + リヴィジョンをファイルに保存 + + + + Saves the selected revision of the database to another file + データベースの選択したリヴィジョンをほかのファイルに保存 + + + + Upload Database + データベースをアップロード + + + + Upload this database as a new commit + このデータベースを新しいコミットとしてアップロード + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html><head/><body><p>あなたは現在組み込みの読み込み専用のアイデンティティーを使用しています。あなたのデータベースをアップロードするには、あなたの DBHub.io アカウントを設定し使う必要があります。</p><p>DBHub.io のアカウントがまだない? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">今すぐアカウントを作り</span></a>、あなたの証明書を<a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">ここから</span></a>インポートしてデータベースを共有してください。</p><p>オンラインのヘルプは<a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">ここ</span></a>を見てください。</p></body></html> + + + + Back + 戻る + + + + Select an identity to connect + 接続するアイデンティティーを選択 + + + + Public + 公開 + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + これはローカル編集用にリモートサーバーからデータベースをダウンロードします。 +クローン元のURLを入力してください。このURLはデータベースの +ウェブページにある 'Clone Database in DB4S' ボタンを +クリックして生成できます。 + + + + Invalid URL: The host name does not match the host name of the current identity. + 不正なURL: ホスト名が現在のアイデンティティーのホスト名と一致しません。 + + + + Invalid URL: No branch name specified. + 不正なURL: ブランチ名が指定されていません。 + + + + Invalid URL: No commit ID specified. + 不正なURL: コミットIDが指定されていません。 + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + データベースのローカルクローンが編集されています。このコミットをフェッチするとローカルの変更が無視されます。 +本当に実行しますか? + + + + The database has unsaved changes. Are you sure you want to push it before saving? + データベースに保存されていない変更があります。本当に保存前にプッシュしますか? + + + + The database you are trying to delete is currently opened. Please close it before deleting. + 削除しようとしたデータベースは現在開かれています。削除前に閉じてください。 + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + これはこのデータベースのローカルバージョンをまだコミットしていない変更と共に削除します。本当にこのデータベースを削除しますか? + + + + RemoteLocalFilesModel + + + Name + 名前 + + + + Branch + ブランチ + + + + Last modified + 最終変更 + + + + Size + サイズ + + + + Commit + コミット + + + + File + ファイル + + + + RemoteModel + + + Name + 名前 + + + + Commit + コミット + + + + Last modified + 最終変更 + + + + Size + サイズ + + + + Size: + サイズ: + + + + Last Modified: + 最終変更: + + + + Licence: + ライセンス: + + + + Default Branch: + デフォルトブランチ: + + + + RemoteNetwork + + + Choose a location to save the file + ファイルを保存する場所を選択 + + + + Error opening remote file at %1. +%2 + %1 のリモートファイルを開くときにエラー. +%2 + + + + Error: Invalid client certificate specified. + エラー: 不正なクライアント証明書が指定されました。 + + + + Please enter the passphrase for this client certificate in order to authenticate. + このクライアント証明書を確認するためパスフレーズを入力してください。 + + + + Cancel + キャンセル + + + + Uploading remote database to +%1 + リモートデータベースをここにアップロード中 +%1 + + + + Downloading remote database from +%1 + リモートデータベースをここからダウンロード中 +%1 + + + + + Error: The network is not accessible. + エラー: ネットワークにアクセスできません。 + + + + Error: Cannot open the file for sending. + エラー: 送信するファイルを開けません。 + + + + RemotePushDialog + + + Push database + データベースをプッシュ + + + + Database na&me to push to + プッシュするデータベースの名前(&M) + + + + Commit message + コミットメッセージ + + + + Database licence + データベースライセンス + + + + Public + 公開 + + + + Branch + ブランチ + + + + Force push + 強制プッシュ + + + + Username + ユーザー名 + + + + Database will be public. Everyone has read access to it. + データベースを公開にします。すべての人がアクセスできます。 + + + + Database will be private. Only you have access to it. + データベースを非公開にします。あなただけがアクセスできます。 + + + + Use with care. This can cause remote commits to be deleted. + 注意して使用してください。これはリモートコミットが削除される可能性があります。 + + + + RunSql + + + Execution aborted by user + 実行はユーザーにより中止されました + + + + , %1 rows affected + , %1 行に影響を与えました + + + + query executed successfully. Took %1ms%2 + クエリーの実行に成功しました。 %1ms%2 かかりました + + + + executing query + 実行クエリー + + + + SelectItemsPopup + + + A&vailable + 使用可能(&V) + + + + Sele&cted + 選択済(&C) + + + + SqlExecutionArea + + + Form + フォーム + + + + Find previous match [Shift+F3] + 前を検索 [Shift+F3] + + + + Find previous match with wrapping + ワードラップ込みで前を検索 + + + + Shift+F3 + + + + + The found pattern must be a whole word + 単語単位で検索します + + + + Whole Words + 単語単位 + + + + Text pattern to find considering the checks in this frame + このフレームでのチェックボックスを考慮した検索文字列 + + + + Find in editor + エディター内を検索 + + + + The found pattern must match in letter case + 大/小文字を区別します + + + + Case Sensitive + 大/小文字を区別 + + + + Find next match [Enter, F3] + 次を検索 [Enter, F3] + + + + Find next match with wrapping + マッピングで次を検索 + + + + F3 + + + + + Interpret search pattern as a regular expression + 正規表現で検索 + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>設定すると、検索条件はUNIX正規表現と解釈されます。以下を参照 <a href="https://ja.wikibooks.org/wiki/%E6%AD%A3%E8%A6%8F%E8%A1%A8%E7%8F%BE">Wikibooksの正規表現</a>。</p></body></html> + + + + Regular Expression + 正規表現 + + + + + Close Find Bar + 検索バーを閉じる + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html><head/><body><p>最後に実行した文の結果。</p><p>このパネルを折りたたんで、<span style=" font-style:italic;">SQL Log</span>ドックで<span style=" font-style:italic;">ユーザー</span>を選択して表示させることもできます。</p></body></html> + + + + This field shows the results and status codes of the last executed statements. + このフィールドには最後に実行した文の結果とステータスコードが表示されます。 + + + + Results of the last executed statements + 最後に実行した文の結果 + + + + Couldn't read file: %1. + ファイルを読めません: %1. + + + + + Couldn't save file: %1. + ファイルを保存できません: %1. + + + + Your changes will be lost when reloading it! + 再読み込みすると変更が失われます! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + ファイル "%1" は他のプログラムによって変更されました。再読み込みしますか?%2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) abs(X) 関数は、数値である引数 X の絶対値を返します。 + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () changes() 関数は、最後に成功した INSERT, DELETE, UPDATE 文で、変更、挿入、削除されたデータベースの行数を返します。 + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) char(X1,X2,...,XN) 関数は、それぞれの文字が Unicode 符号位置で整数値 X1 から XN を持つ文字列を返します。 + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) coalesce() 関数は NULL でない引数のうち、最も左の引数のコピーを返します。すべての引数が NULL ならば、NULL を返します + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) glob(X,Y) 関数は次の式と同値です。 "Y GLOB X". + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) ifnull() 関数は NULL でない引数のうち、最も左の引数のコピーを返します。両方の引数が NULL ならば、NULL を返します。 + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) instr(X,Y) 関数は文字列 X 内にある最初の文字列 Y を検索し、その前の文字数に1を加えた値を返します。X に Y がない場合は0を返します。 + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) hex() 関数は引数を BLOB と解釈し、その中身を大文字の十六進数の文字列として返します。 + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () last_insert_rowid() 関数は、この関数を呼び出したデータベース接続が最後に INSERT した行の ROWID を返します。of the last row insert from the database connection which invoked the function. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) 文字列 X に対し、length(X) 関数は、最初の NULL 文字の前にある文字数(バイト数でなく)を返します。 + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X,Y) like() 関数は "Y LIKE X" 式と同値です。 + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) like() 関数は "Y LIKE X ESCAPE Z" 式と同値です。 + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) load_extension(X) 関数は、名前が X の共有ライブラリからすぐに SQLite 拡張を読み込みます。. +この関数の使用には、設定ダイアログからの認証が必要です。 + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X) load_extension(X,Y) 関数は、名前が X の共有ライブラリのエントリーポイント Y からすぐに SQLite 拡張を読み込みます。. +この関数の使用には、設定ダイアログからの認証が必要です。 + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) lower(X) 関数は、すべて ASCII 文字である文字列 X を、すべて小文字に変換した文字列を返します。 + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ltrim(X) 関数は、X の左端にある空白を取り除きます。 + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) ltrim(X,Y)関数は、X の左端から、 Y に含まれる文字をすべて取り除いた文字列を返します。 + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) 複数の引数を持つ max() 関数は引数の最大値を返します。引数に NULL が含まれている場合は NULL を返します。 + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) 複数の引数を持つ min() 関数は引数の最小値を返します。引数に NULL が含まれている場合は NULL を返します。 + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) nullif(X,Y) 関数は、二つの引数が違う場合第一引数を、同じ場合は NULL を返します。 + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) printf(FORMAT,...) SQL 関数は、C言語の sqlite3_mprintf() 関数や、標準Cライブラリーの printf() 関数のように動作します。 + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) quote(X) 関数は、引数をSQL文に含めるのに適したSQLリテラルの文字にして返します。 + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () random() 関数は、範囲が -9223372036854775808 から +9223372036854775807 の整数である疑似乱数を返します。 + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) randomblob(N) 関数は、疑似乱数で構成された N バイトの BLOB を返します。function return an N-byte blob containing pseudo-random bytes. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) replace(X,Y,Z) 関数は、文字列 X に含まれる文字列 Y をすべて文字列 Z に置き換えて返します。 + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) round(X) 関数は、浮動小数点数 X の小数点以下を四捨五入して返します。 + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) round(X,Y) 関数は、浮動小数点数 X を小数点第 Y 位までになるように四捨五入して返します。 + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) rtrim(X) 関数は、X の右端にある空白を取り除きます。 + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) rtrim(X,Y) 関数は、X の右端から、 Y に含まれる文字をすべて取り除いた文字列を返します。 + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) soundex(X) 関数は、文字列 X を soundex にエンコードした文字列を返します。 + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) substr(X,Y) 関数は、文字列 Xの、先頭から Y 番目から末尾までの文字列を返します。 + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y,Z) substr(X,Y,Z) 関数は、文字列 X の、先頭から Y 番目から Z 文字の文字列を返します。 + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () total_changes() 関数は、現在開かれた接続のあるデータベースにおいて、INSERT、UPDATE、DELETEで変更された行数を返します。 returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + + + + (X) trim(X) removes spaces from both ends of X. + (X) trim(X) 関数は、X の両端にある空白を取り除きます。 + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) trim(X,Y) 関数は、X の両端から、 Y に含まれる文字をすべて取り除いた文字列を返します。 + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) typeof(X) 関数は、式 X のデータ型を示す文字列を返します。 + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) unicode(X) 関数は、文字列 X の最初の文字に対応する Unicode 符号位置を返します。 + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) upper(X) 関数は、すべて ASCII 文字である文字列 X を、すべて大文字に変換した文字列を返します。 + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) zeroblob(N) 関数は、すべて 0x00 で埋められた、N バイトの BLOB を返します。 + + + + + + + (timestring,modifier,modifier,...) + (時刻文字列, 修飾子, 修飾子,...) + + + + (format,timestring,modifier,modifier,...) + (フォーマット, 時刻文字列, 修飾子, 修飾子,...) + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) avg() 関数は、グループ内の非NULLな値の平均を返します。 + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) count(X) 関数はグループ内にある、NULLでない X の件数を返します。 + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) group_concat() 関数は、非NULLなすべての X を連結した文字列を返します。 + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) group_concat() 関数は、非NULLなすべての X を連結した文字列を返します。もし、引数 Y が存在するならば、X を連結するときの区切り文字として使用します。 + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) max() 集計関数は、グループ内の(非NULLである)最大値を返します。 + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) min() 集計関数は、グループ内の(非NULLである)最小値を返します。 + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) sum() と total() 集計関数は、グループ内の非NULLな値の合計を返します。 + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () 現在の分割内の行番号。行は、ウィンドウ定義の ORDER BY 句やそれ以外の任意の順序に従い、1 から順に番号付けされます。 + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () 各グループの順位 - 同値は同順位で、次の値は重複分だけ順位がずれます。もし、ORDER BY 句がなければ、すべての行を同順位とみなし、常に 1 を返します。 + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () 各グループの順位 - 同値は同順位で、次の値は重複に関わらず前の順位+1になります。パーティションはウィンドウ定義の ORDER BY 句やそれ以外の任意の順序に従い、1 から順に番号付けされます。もし、ORDER BY 句がなければ、すべての行を同順位とみなし、常に 1 を返します。 + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () その名前にも関わらず、この関数は常に 0.0 から 1.0 の値を返します。この値は、(rank - 1)/(パーティション行数 - 1) です。ここで、rank は組み込みウィンドウ関数の rank()、パーティション行数はパーティション内の行の数です。もし、パーティションに1行しか含まれていなければ、この関数は 0.0 を返します。 + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () 累積分布。(行番号)/(パーティション行数) で計算されます。ここで行番号はグループ内で row_number() で返された値、パーティション行数はパーティション内の行の数です。 + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) 引数 N はINTEGERとして扱われます。この関数はパーティションを ORDER BY 句やそれ以外の任意の順序に従い N 個のグループに可能な限り等分し、それぞれのグループに 1 から N のINTEGERをつけます。必要があれば、先頭のほうにあるグループの件数を多くするように割り当てられます。この関数は現在の行が含まれるグループに割り当てられたINTEGERを返します。 + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) パーティション内の前の行に対して式 expr を評価した結果を返します。(先頭行のため)前の行がなければ、NULLを返します。 + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr,offset) 引数 offset が与えられる場合、非負のINTEGERである必要があります。この場合、パーティション内の offset だけ前の行に対して式 expr を評価した結果を返します。offset が 0 ならば、現在行に対して評価します。前の行がなければ、NULLを返します。 + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,offset,default) default が与えられる場合、該当の行がなければ、NULL の代わりに defaul 値を返します。 + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) パーティション内の次の行に対して式 expr を評価した結果を返します。(最終行のため)次の行がなければ、NULLを返します。 + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,offset) 引数 offset が与えられる場合、非負のINTEGERである必要があります。この場合、パーティション内の offset だけ次の行に対して式 expr を評価した結果を返します。offset が 0 ならば、現在行に対して評価します。次の行がなければ、NULLを返します。 + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) この組み込みウィンドウ関数は、同じ集計ウィンドウ関数を使ってそれぞれの行のウィンドウフレームを計算します。各行のウィンドウフレームの最初の行に対して評価される expr の値を返します。 + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) この組み込みウィンドウ関数は、同じ集計ウィンドウ関数を使ってそれぞれの行のウィンドウフレームを計算します。各行のウィンドウフレームの最後の行に対して評価される expr の値を返します。 + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr,N) この組み込みウィンドウ関数は、同じ集計ウィンドウ関数を使ってそれぞれの行のウィンドウフレームを計算します。各行のウィンドウフレームの N 番目の行に対して評価される expr の値を返します。行は、ウィンドウ定義の ORDER BY 句やそれ以外の任意の順序に従い、1 から順に番号付けされます。 N 番目の行がパーティションにない場合、NULL が返されます。 + + + + SqliteTableModel + + + reading rows + 行を読み込み中 + + + + loading... + 読み込み中... + + + + References %1(%2) +Hold %3Shift and click to jump there + これを参照 %1(%2) +%3Shift を保持しクリックでジャンプ + + + + Error changing data: +%1 + データの変更でエラー: +%1 + + + + retrieving list of columns + カラムの一覧を取得中 + + + + Fetching data... + データを取得中... + + + + + Cancel + キャンセル + + + + TableBrowser + + + Browse Data + データ閲覧 + + + + &Table: + テーブル(&T): + + + + Select a table to browse data + 閲覧するデータのテーブルを選択 + + + + Use this list to select a table to be displayed in the database view + この一覧を使ってデータベースビューに表示するテーブルを選択 + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + これはデータベーステーブルのビューです。以下の操作ができます: + - 値をインライン編集できます。 + - レコードをダブルクリックすると、セル編集ウィンドウで内容を編集できます。 + - Alt+Del でセルの内容をNULLにできます。 + - Ctrl+" で現在のレコードを複製できます。 + - Ctrl+' で上のセルの値をコピーできます。 + - 通常の操作で、選択/コピー/貼り付けができます。 + + + + Text pattern to find considering the checks in this frame + このフレームでのチェックボックスを考慮した検索文字列 + + + + Find in table + テーブルを検索 + + + + Find previous match [Shift+F3] + 前を検索 [Shift+F3] + + + + Find previous match with wrapping + 折り返して前を検索 + + + + Shift+F3 + + + + + Find next match [Enter, F3] + 次を検索 [Enter, F3] + + + + Find next match with wrapping + 折り返して次を検索 + + + + F3 + + + + + The found pattern must match in letter case + 大/小文字を区別します + + + + Case Sensitive + 大/小文字を区別 + + + + The found pattern must be a whole word + 単語単位で検索します + + + + Whole Cell + セル全体に一致 + + + + Interpret search pattern as a regular expression + 正規表現で検索 + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>設定すると、検索条件はUNIX正規表現と解釈されます。以下を参照 <a href="https://ja.wikibooks.org/wiki/%E6%AD%A3%E8%A6%8F%E8%A1%A8%E7%8F%BE">Wikibooksの正規表現</a>。</p></body></html> + + + + Regular Expression + 正規表現 + + + + + Close Find Bar + 検索バーを閉じる + + + + Text to replace with + この文字列で置き換える + + + + Replace with + 置換 + + + + Replace next match + 次に一致したものを置き換え + + + + + Replace + 置換 + + + + Replace all matches + 一致したものすべてを置き換え + + + + Replace all + すべて置換 + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + 先頭へ + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>このボタンをクリックすると、上のテーブルビューを先頭まで移動します。</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + 1ページ前へ + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>このボタンをクリックすると、上のテーブルビューを1ページ前へ移動します。</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 of 0 + + + + Scroll one page downwards + 1ページ後へ + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>このボタンをクリックすると、上のテーブルビューを1ページ後へ移動します。</p></body></html> + + + + > + > + + + + Scroll to the end + 末尾へ + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + <html><head/><body><p>このボタンをクリックすると、上のテーブルビューを末尾まで移動します。</p></body></html> + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>ここをクリックして指定のレコードまで移動</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>このボタンは ここへ移動 の入力欄で指定された番号のレコードへ移動するために使用します。</p></body></html> + + + + Go to: + ここへ移動: + + + + Enter record number to browse + 閲覧するレコードの番号を入力 + + + + Type a record number in this area and click the Go to: button to display the record in the database view + この欄にレコードの番号を入力し、ここへ移動ボタンをクリックすると、データベースビューにレコードが表示されます + + + + 1 + 1 + + + + Show rowid column + rowidカラムを表示 + + + + Toggle the visibility of the rowid column + rowidカラムの表示を切り替えます + + + + Unlock view editing + ビューの編集を開放 + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + これは現在のビューで編集できるようにします。しかし、編集時のトリガーに対応する必要があります。 + + + + Edit display format + 表示書式を編集 + + + + Edit the display format of the data in this column + このカラムのデータの表示書式を編集します + + + + + New Record + 新しいレコード + + + + + Insert a new record in the current table + 新しいレコードを現在のテーブルに挿入 + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>このボタンは新しいレコードをデータベースに作成します。マウスボタンを押したままにすると、違うオプションのポップアップメニューが開きます:</p><ul><li><span style=" font-weight:600;">新しいレコード</span>: データベースにデフォルト値で新しいレコードを挿入します。</li><li><span style=" font-weight:600;">値を挿入...</span>: データベースに挿入する前にデータを入力するダイアログを開きます。これで他の制約を満たす値が入力できます。このダイアログは<span style=" font-weight:600;">新しいレコード</span>オプションがそれらの制約のせいで失敗したときにも開きます。</li></ul></body></html> + + + + + Delete Record + レコードを削除 + + + + Delete the current record + 現在のレコードを削除 + + + + + This button deletes the record or records currently selected in the table + このボタンはテーブルにある現在選択中のレコードを削除します + + + + + Insert new record using default values in browsed table + 閲覧中のテーブルのデフォルト値を使い新しいレコードを挿入します + + + + Insert Values... + 値を挿入... + + + + + Open a dialog for inserting values in a new record + 新しいレコードに値を挿入するダイアログを開きます + + + + Export to &CSV + CSVにエクスポート(&C) + + + + + Export the filtered data to CSV + フィルターされたデータをCSVにエクスポート + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + このボタンは閲覧中のテーブルのデータを現在の表示通り(フィルター、表示形式、カラム順番)にCSVファイルにエクスポートします。 + + + + Save as &view + ビューとして保存(&V) + + + + + Save the current filter, sort column and display formats as a view + 現在のフィルター、カラム順番、表示形式をビューに保存 + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + このボタンは閲覧中のテーブルの現在の表示設定(フィルター、表示形式、カラム順番)をSQLビューとして保存し、あとで閲覧やSQL文として使用できるようにします。 + + + + Save Table As... + テーブルに名前を付けて保存... + + + + + Save the table as currently displayed + 現在表示されているものをテーブルに保存 + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>このポップアップメニューは現在閲覧しているテーブルに適用される以下のオプションを提供します。:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">CSVにエクスポート: このオプションは閲覧中のテーブルのデータを現在の表示通り(フィルター、表示形式、カラム順番)にCSVファイルにエクスポートします。</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">ビューとして保存: このオプションは閲覧中のテーブルの現在の表示設定(フィルター、表示形式、カラム順番)をSQLビューとして保存し、あとで閲覧やSQL文として使用できるようにします。</li></ul></body></html> + + + + Hide column(s) + カラムを隠す + + + + Hide selected column(s) + 選択したカラムを隠す + + + + Show all columns + すべてのカラムを表示 + + + + Show all columns that were hidden + 隠されたすべてのカラムを表示 + + + + + Set encoding + エンコードの設定 + + + + Change the encoding of the text in the table cells + テーブルのセルにあるテキストのエンコードを変更します + + + + Set encoding for all tables + すべてのテーブルのエンコードの設定 + + + + Change the default encoding assumed for all tables in the database + データベース内のすべてのテーブルのデフォルトエンコードを変更します + + + + Clear Filters + フィルターを削除 + + + + Clear all filters + すべてのフィルターを消去 + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + このボタンで現在閲覧しているテーブルのヘッダー入力欄に設定されたすべてのフィルターを消去します。 + + + + Clear Sorting + 並べ替えを解除 + + + + Reset the order of rows to the default + 行の順番をデフォルトにリセットします + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + このボタンは、現在閲覧中のテーブルにある並び替えたカラムをデフォルトの順番に戻します。 + + + + Print + 印刷 + + + + Print currently browsed table data + 現在閲覧中のテーブルデータを印刷 + + + + Print currently browsed table data. Print selection if more than one cell is selected. + 現在閲覧中のテーブルデータを印刷します。複数のセルを選択している場合、選択範囲を印刷します。 + + + + Ctrl+P + + + + + Refresh + 更新 + + + + Refresh the data in the selected table + 選択したテーブルのデータを更新 + + + + This button refreshes the data in the currently selected table. + このボタンで現在選択しているテーブルのデータを更新します。 + + + + F5 + + + + + Find in cells + セル内を検索 + + + + Open the find tool bar which allows you to search for values in the table view below. + テーブルビューの下に値を検索するための検索ツールバーを開きます。 + + + + + Bold + 太字 + + + + Ctrl+B + + + + + + Italic + イタリック + + + + + Underline + 下線 + + + + Ctrl+U + + + + + + Align Right + 右揃え + + + + + Align Left + 左揃え + + + + + Center Horizontally + 中央揃え + + + + + Justify + 均等割付 + + + + + Edit Conditional Formats... + 条件付き書式を編集... + + + + Edit conditional formats for the current column + 現在のカラムの条件付き書式を編集します + + + + Clear Format + 書式を削除 + + + + Clear All Formats + すべての書式を削除 + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + 選択したセルのすべての書式を削除し、選択したカラムのすべての条件付き書式を削除します + + + + + Font Color + フォント色 + + + + + Background Color + 背景色 + + + + Toggle Format Toolbar + フォーマットツールバーを切り替え + + + + Show/hide format toolbar + フォーマットツールバーを表示/非表示します + + + + + This button shows or hides the formatting toolbar of the Data Browser + このボタンでデータ閲覧の書式ツールバーを表示/非表示します + + + + Select column + カラムを選択 + + + + Ctrl+Space + Ctrl+スペース + + + + Replace text in cells + セル内のテキストを置き換え + + + + Filter in any column + カラムをフィルター + + + + Ctrl+R + + + + + %n row(s) + + %n 行 + + + + + , %n column(s) + + , %n カラム + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . 合計: %1; 平均: %2; 最低: %3; 最高: %4 + + + + Conditional formats for "%1" + "%1" の条件付き書式 + + + + determining row count... + 行数を計算中... + + + + %1 - %2 of >= %3 + %1 - %2 of >= %3 + + + + %1 - %2 of %3 + %1 - %2 of %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + このビューでの編集を有効にするため、疑似主キーを入力してください。ビューに一意なカラムの名前が必要です。 + + + + Delete Records + レコードを削除 + + + + Duplicate records + レコードを複製 + + + + Duplicate record + レコードを複製 + + + + Ctrl+" + + + + + Adjust rows to contents + 行を内容に合わせ調整 + + + + Error deleting record: +%1 + レコードの削除でエラー: +%1 + + + + Please select a record first + 最初にレコードを選択してください + + + + There is no filter set for this table. View will not be created. + このテーブルにフィルターの設定はありません。ビューは作成されません。 + + + + Please choose a new encoding for all tables. + すべてのテーブルの新しいエンコードを選択してください。 + + + + Please choose a new encoding for this table. + すべてのテーブルの新しいエンコードを選択してください。 + + + + %1 +Leave the field empty for using the database encoding. + %1 +データベースのエンコードを使うため、フィールドを空にします。 + + + + This encoding is either not valid or not supported. + このエンコードは不正かサポートされていません。 + + + + %1 replacement(s) made. + %1 つ置き換えました。 + + + + VacuumDialog + + + Compact Database + データベースを圧縮 + + + + Warning: Compacting the database will commit all of your changes. + 警告: データベースの圧縮はあなたの変更をすべてコミットします。 + + + + Please select the databases to co&mpact: + 圧縮するデータベースを選択してください(&M): + + + diff --git a/ConfigFiles/translations/sqlb_ko_KR.qm b/ConfigFiles/translations/sqlb_ko_KR.qm new file mode 100644 index 0000000..c4fc876 Binary files /dev/null and b/ConfigFiles/translations/sqlb_ko_KR.qm differ diff --git a/ConfigFiles/translations/sqlb_ko_KR.ts b/ConfigFiles/translations/sqlb_ko_KR.ts new file mode 100644 index 0000000..e0d1881 --- /dev/null +++ b/ConfigFiles/translations/sqlb_ko_KR.ts @@ -0,0 +1,7012 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + ~에 대하여.. 보다는 ~~ 정보 라는 표현을 요즘에 많이 사용함. + DB Browser for SQLite 정보 + + + + Version + 버전 + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB Browser for SQLite는 오픈소스, 프리웨어로 SQLite 데이터베이스 파일들을 생성, 설계하고 수정을 하기 위한 비주얼 툴입니다.</p><p>이 프로그램은 이중 라이센스로 Mozilla Public License Version 2과 GNU General Public License Version 3 또는 그 이후 버전을 따릅니다. 따라서 이 프로그램은 이 라이센스를 충족하는 범위 내에서 수정하고 재배포 할 수 있습니다.</p><p>자세한 사항은 <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a>과 <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a>를 참고하시기 바랍니다. </p><p>이 프로그램에 대한 좀 더 자세한 정보는 우리 웹사이트에서 확인하실 수 있습니다: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">이 소프트웨어는 GPL/LGPL Qt Toolkit을 사용합니다.</span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>라이센스 사항과 정보는 </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;">를 참고하시기 바랍니다.</span></p><p><span style=" font-size:small;">또한 이 프로그램은 Mark James의 Silk icon set를 Creative Commons Attribution 2.5와 3.0 라이센스 아래에서 사용하고 있습니다.<br/> 자세한 정보는 </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;">를 참고하시기 바랍니다.</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + 새 레코드 추가 + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + 제약 조건을 고려하여 새 레코드를 위한 값을 입력하세요. 진하게 처리된 필드는 반드시 입력해야 합니다. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + 값 필드에는 이름 필드에 대응하는 값을 입력 할 수 있습니다. 타입 필드는 필드의 타입을 의미합니다. 기본 값은 NULL값과 같은 스타일로 표시됩니다. + + + + Name + 이름 + + + + Type + 타입 + + + + Value + + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + 추가할 값들입니다. 기본 값들이 미리 입력되어 있어 수정하지 않는다면 자동적으로 들어갑니다. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + 위 프레임의 값을 수정하면, 수정사항이 반영된 레코드 추가 SQL쿼리가 여기에 나타납니다. 저장하기 전이라면 직접 쿼리를 수정할 수도 있습니다. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">저장하기</span>는 새 레코드를 데이터베이스에 추가하기 위해 작성되어 나타나 있는 SQL 구문을 반영합니다.</p><p><span style=" font-weight:600;">초기값 복원하기</span>는 <span style=" font-weight:600;">값</span> 필드를 초기 값으로 복원합니다.</p><p><span style=" font-weight:600;">취소하기</span>는 쿼리의 실행 없이 이 창을 닫습니다.</p></body></html> + + + + Auto-increment + + 자동 증가(Auti-increment) + + + + + Unique constraint + + 유니크 제약 + + + + + Check constraint: %1 + + 제약 조건: %1 + + + + + Foreign key: %1 + + 외래키: %1 + + + + + Default value: %1 + + 기본 값: %1 + + + + + Error adding record. Message from database engine: + +%1 + 레코드 추가 도중 에러가 발생했습니다. 데이터베이스 엔진 메시지: + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + 정말로 모든 입력한 값들을 초기 값으로 복원합니까? + + + + Application + + + Possible command line arguments: + 사용할 수 있는 명령줄 매개변수: + + + + Usage: %1 [options] [<database>|<project>] + + 사용법: %1 [옵션] [<데이터베이스>|<프로젝트>] + + + + + -h, --help Show command line options + -h, --help 명령줄 옵션을 보여줍니다 + + + + -q, --quit Exit application after running scripts + -q, --quit 스크립트 실행 후 프로그램을 종료합니다 + + + + -s, --sql <file> Execute this SQL file after opening the DB + -s, --sql <파일> DB를 연 다음 SQL 파일을 실행합니다 + + + + -t, --table <table> Browse this table after opening the DB + -t, --table <table> DB를 연 다음 이 테이블을 탐색합니다 + + + + -R, --read-only Open database in read-only mode + -R, --read-only 데이터베이스를 읽기 전용 모드로 열기합니다 + + + + -o, --option <group>/<setting>=<value> + -o, --option <그룹>/<설정>=<값> + + + + Run application with this setting temporarily set to value + 설정 값을 임시적으로 저장한 후 프로그램 실행합니다 + + + + -O, --save-option <group>/<setting>=<value> + -O, --save-option <그룹>/<설정>=<값> + + + + Run application saving this value for this setting + 설정 값을 저장하면서 프로그램을 실행합니다 + + + + -v, --version Display the current version + -v, --version 현재 버전을 출력합니다 + + + + <database> Open this SQLite database + <데이터베이스> 이 SQLite 데이터베이스를 엽니다 + + + + <project> Open this project file (*.sqbpro) + <프로젝트> 이 프로젝트 파일을 엽니다 (*.sqbpro) + + + + The -s/--sql option requires an argument + -s/--sql 옵션은 실행할 SQL 파일명을 같이 지정해주어야 합니다 + + + + The file %1 does not exist + %1 파일이 존재하지 않습니다 + + + + The -t/--table option requires an argument + -t/--table 옵션의 대상이 되는 테이블 명을 입력하세요 + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + -o/--option 또는 -O/--save-option 옵션은 group/setting=value 형식의 인수가 필요합니다 + + + + Invalid option/non-existant file: %1 + 잘못된 옵션을 사용하였거나 파일이 존재하지 않습니다: %1 + + + + SQLite Version + SQLite 버전 + + + + SQLCipher Version %1 (based on SQLite %2) + SQLCipher 버전 %1 (SQLite %2 기반) + + + + DB Browser for SQLite Version %1. + DB Browser for SQLite 버전 %1. + + + + Built for %1, running on %2 + %1 환경을 위해 빌드됨, %2 환경에서 실행 중 + + + + Qt Version %1 + Qt 버전 %1 + + + + CipherDialog + + + SQLCipher encryption + SQLCipher 암호화 + + + + &Password + 암호(&P) + + + + &Reenter password + 암호 재입력(&R) + + + + Encr&yption settings + 암호화 설정(&Y) + + + + SQLCipher &3 defaults + SQLCipher &3 기본값 + + + + SQLCipher &4 defaults + SQLCipher &4 기본값 + + + + Custo&m + 수동(&M) + + + + Page si&ze + 페이지 크기(&Z) + + + + &KDF iterations + &KDF 반복 횟수 + + + + HMAC algorithm + HMAC 알고리즘 + + + + KDF algorithm + KDF 알고리즘 + + + + Plaintext Header Size + 평문 헤더 크기 + + + + Passphrase + 암호 + + + + Raw key + Raw 키 + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + 데이터베이스를 암호화할 때 사용할 키를 지정해주세요. +[주의] 여러분이 추가적인 설정을 변경한다면, 데이터베이스 파일을 열 때마다 암호를 매번 입력해야합니다. +그러한 불편함을 피하기 위해 암호화를 하지 않으려면 암호 필드를 비워두세요 +암호화 작업은 시간이 좀 걸릴 수 있습니다. 그리고 꼭 여러분의 데이터베이스 백업본을 반드시 만들어두세요! 암호화 작업 이전에 한 저장되지 않은 변경 사항도 반영되니 주의하세요. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + 데이터베이스를 암호화기 위해 사용할 키를 다시 입력해주세요. +데이터베이스 파일을 변경하기 위해서는 이 정보를 다시 입력해야만 합니다. + + + + ColumnDisplayFormatDialog + + + Choose display format + 표시 형식을 선택하세요 + + + + Display format + 표시 형식 + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + '%1' 컬럼의 표시 형식을 선택하세요. + + + + Default + 일반 + + + + Decimal number + 숫자 + + + + Exponent notation + 지수 + + + + Hex blob + 이진 데이터 + + + + Hex number + 16진수 + + + + Apple NSDate to date + Apple NSDate 날짜 + + + + Java epoch (milliseconds) to date + Java 시간(밀리초)을 날짜로 + + + + .NET DateTime.Ticks to date + .NET DateTime Ticks를 날짜로 + + + + Julian day to date + 날짜 + + + + Unix epoch to local time + 유닉스 시간(타임스탬프)을 지역 시간으로 + + + + Date as dd/mm/yyyy + 날짜를 dd/mm/yyyy 형태로 + + + + Lower case + 소문자 + + + + Custom display format must contain a function call applied to %1 + 사용자 정의 표시 형식은 %1에 적용된 함수 호출을 포함해야 합니다 + + + + Error in custom display format. Message from database engine: + +%1 + 사용자 정의 표시 형식에서 에러가 발생했습니다. 데이터베이스 엔진의 메시지: +%1 + + + + Custom display format must return only one column but it returned %1. + 사용자 지정 표시 형식은 하나의 열만 반환해야 하지만 %1개를 반환했습니다. + + + + Octal number + 8진수 + + + + Round number + 라운드 수 + + + + Unix epoch to date + 유닉스 시간(타임스탬프)을 날짜로 + + + + Upper case + 대문자 + + + + Windows DATE to date + Windows 날짜 + + + + Custom + 사용자 지정 + + + + CondFormatManager + + + Conditional Format Manager + 조건부 서식 관리자 + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + 이 대화상자에서는 조건부 형식을 추가하고 수정할 수 있습니다. 각 셀 스타일은 해당 셀 데이터의 첫번째 조건에 의해 지정됩니다. 조건부 서식은 위/아래로 이동할 수 있으며, 상위 행에 있는 형식은 하위 행에 있는 형식보다 우선됩니다. 조건 구문은 필터와 동일하며 빈 조건은 모든 값에 대해 적용됩니다. + + + + Add new conditional format + 새 조건부 서식을 추가합니다 + + + + &Add + 추가(&A) + + + + Remove selected conditional format + 선택한 조건부 서식을 삭제합니다 + + + + &Remove + 삭제(&R) + + + + Move selected conditional format up + 선택한 조건부 서식을 위로 이동합니다 + + + + Move &up + 위로 올리기(&U) + + + + Move selected conditional format down + 선택한 조건부 서식을 아래로 이동합니다 + + + + Move &down + 아래로 내리기(&D) + + + + Foreground + 전경색 + + + + Text color + 글자색 + + + + Background + 배경색 + + + + Background color + 배경색 + + + + Font + 글꼴 + + + + Size + 크기 + + + + Bold + 진하게 + + + + Italic + 기울임 + + + + Underline + 밑줄 + + + + Alignment + 정렬 + + + + Condition + 조건 + + + + + Click to select color + 색상을 선택하세요 + + + + Are you sure you want to clear all the conditional formats of this field? + 이 필드의 모든 조건부 서식을 정말로 삭제하시겠습니까? + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + 데이터베이스 연결을 위해 불러올 데이터베이스의 별칭을 지정해주세요 + + + + Invalid file format + 잘못된 파일 포맷입니다 + + + + Do you want to save the changes made to the database file %1? + %1 데이터베이스 파일을 생성하기 위해 변경사항을 저장하겠습니까? + + + + Exporting database to SQL file... + 데이터베이스를 SQL 파일로 내보내는 중... + + + + + Cancel + 취소 + + + + Executing SQL... + SQL 실행 중... + + + + Action cancelled. + 실행이 취소되었습니다. + + + + Do you really want to close this temporary database? All data will be lost. + 이 임시 데이터베이스를 닫을까요? 모든 데이터가 사라집니다. + + + + This database has already been attached. Its schema name is '%1'. + 이 데이터베이스는 이미 연결되었습니다. 스키마 이름은 '%1' 입니다. + + + + Database didn't close correctly, probably still busy + 데이터베이스가 제대로 닫히지 않았습니다, 아마도 아직 사용 중일 것입니다 + + + + The database is currently busy: + 이 데이터베이스는 현재 사용 중입니다: + + + + Do you want to abort that other operation? + 이 명령을 취소하시겠습니까? + + + + + No database file opened + 열린 데이터베이스 파일이 없습니다 + + + + + Error in statement #%1: %2. +Aborting execution%3. + #%1: %2 구문에 에러가 있어 실행이 중단되었습니다%3. + + + + + and rolling back + 그리고 롤백합니다 + + + + didn't receive any output from %1 + %1에서 아무런 출력을 받지 못했습니다 + + + + could not execute command: %1 + 명령을 실행할 수 없습니다: %1 + + + + Cannot delete this object + 이 객체를 삭제할 수 없습니다 + + + + Cannot set data on this object + 이 객체에는 데이터를 저장할 수 없습니다 + + + + + A table with the name '%1' already exists in schema '%2'. + '%1' 이름의 테이블이 이미 스키마 '%2'에 존재합니다. + + + + No table with name '%1' exists in schema '%2'. + 스키마 '%2'에 이름이 '%1'인 테이블이 없습니다. + + + + + Cannot find column %1. + %1 컬럼을 찾을 수 없습니다. + + + + Creating savepoint failed. DB says: %1 + 세이브 포인트를 생성하지 못했습니다. DB 메시지: %1 + + + + Renaming the column failed. DB says: +%1 + 열 이름을 변경하지 못했습니다. DB 메시지: +%1 + + + + + Releasing savepoint failed. DB says: %1 + 세이브 포인트를 해제하지 못했습니다. DB 메시지: %1 + + + + Creating new table failed. DB says: %1 + 새 테이블을 생성하지 못했습니다. DB 메시지: %1 + + + + Copying data to new table failed. DB says: +%1 + 새 테이블에 데이터를 복사하지 못했습니다. DB 메시지: +%1 + + + + Deleting old table failed. DB says: %1 + 이전 테이블을 삭제하지 못했습니다. DB 메시지: %1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + 테이블 '%1'의 이름을 '%2'(으)로 변경하는 동안 오류가 발생했습니다. +데이터베이스 엔진 메시지: +%3 + + + + could not get list of db objects: %1 + DB 개체 목록을 가져알 수 없습니다: %1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + 이 테이블에 관련된 몇 개의 객체를 복원하는데 실패했습니다. 이러한 경우는 대부분 몇 개의 필드명이 변경되어서 발생 했을 가능성이 큽니다. 아래 SQL 구문을 참고하면 직접 수동으로 고쳐서 실행할 수 있을 것입니다: + + + + + + could not get list of databases: %1 + 데이터베이스 목록을 가져올 수 없습니다: %1 + + + + Error loading extension: %1 + 확장기능을 불러오기 에러: %1 + + + + could not get column information + 열 정보를 가져올 수 없습니다 + + + + Error setting pragma %1 to %2: %3 + pragma 설정을 %1에서 %2로 변경하는데 에러: %3 + + + + File not found. + 파일을 찾을 수 없습니다. + + + + DbStructureModel + + + Name + 이름 + + + + Object + 객체 + + + + Type + 타입 + + + + Schema + 스키마 + + + + Database + 데이터베이스 + + + + Browsables + 열기 + + + + All + 모두 선택 + + + + Temporary + 임시 + + + + Tables (%1) + 테이블 (%1) + + + + Indices (%1) + 인덱스 (%1) + + + + Views (%1) + 뷰 (%1) + + + + Triggers (%1) + 트리거 (%1) + + + + EditDialog + + + Edit database cell + 데이터베이스 데이터 값을 수정하기 + + + + Mode: + 모드: + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + 셀 에디터에서 지원되는 모델들 목록입니다. 현재 셀의 데이터를 보거나 수정하기 위한 모드를 선택하세요. + + + + RTL Text + RTL Text + + + + + Image + 이미지 + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + 불러온 데이터 타입을 에디터 모드에 자동 적용 + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + 이 체크 버튼은 에디터 모드를 자동으로 변경하는 기능을 키거나 끕니다. 새 셀이 선택되거나 새로운 데이터가 가져와지면 자동 변경 기능이 켜져서 데이터 타입을 인식하여 적절한 모드를 적용합니다. 그 후에 여러분은 모드를 수동으로 변경할 수 있습니다. 만약 셀들을 이동할 때 모드를 직접 변경하고자 한다면, 이 버튼을 비활성화하세요. + + + + Auto-switch + 자동 전환 + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + 텍스트 편집기 모드를 사용하면 저장하기 전에 구문 강조 표시, 자동 서식 지정 및 유효성 검사를 사용하여 JSON 또는 XML 데이터뿐만 아니라 일반 텍스트도 편집할 수 있습니다. +오류는 빨간색 물결 밑줄로 표시됩니다. + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + 이 Qt 편집기는 기본 텍스트 편집기에서 지원하지 않는 오른쪽에서 왼쪽으로 쓰는 스크립트에 사용됩니다. 오른쪽에서 왼쪽으로 작성되는 문자가 감지되면 이 편집기 모드가 자동으로 선택됩니다. + + + + Apply data to cell + 셀에 데이터 적용 + + + + Open preview dialog for printing displayed image + 표시된 이미지에 대한 인쇄 미리보기 창을 엽니다 + + + + Open preview dialog for printing the data currently stored in the cell + 현재 셀에 저장된 데이터에 대한 인쇄 미리보기 대화상자 열기 + + + + Auto-format: pretty print on loading, compact on saving. + 자동포맷: 불러올 때 예쁘게 프린트되고, 저장할 때 용량을 줄입니다. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + 활성화되면, 자동포맷 기능이 데이터를 불러올 때 포맷을 지정하여 긴 문장을 여러 행으로 만들고 들여쓰기를 해서 가독성을 향상합니다. 데이터를 저장할 때는 자동포맷 기능은 개행 문자를 제거하여 데이터를 줄이고 필요 없는 공백을 삭제합니다. + + + + Word Wrap + 개행 + + + + Wrap lines on word boundaries + 단어 경계마다 개행 + + + + + Open in default application or browser + 기본 응용 프로그램 또는 브라우저에서 열기 + + + + Open in application + 응용 프로그램에서 열기 + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + 값은 파일 또는 URL로 해석되며 기본 애플리케이션 또는 웹 브라우저에서 열립니다. + + + + Save file reference... + 참조를 파일에 저장... + + + + Save reference to file + 파일에 참조 저장 + + + + + Open in external application + 외부 프로그램에서 열기 + + + + Autoformat + 자동포맷 + + + + &Export... + 내보내기(&E)... + + + + + &Import... + 가져오기(&I)... + + + + + Import from file + 파일에서 가져오기 + + + + + Opens a file dialog used to import any kind of data to this database cell. + 이 데이터베이스 셀로 데이터를 가져오기 위하여 대화상자를 엽니다. + + + + Export to file + 파일로 내보내기 + + + + Opens a file dialog used to export the contents of this database cell to a file. + 이 데이터베이스 셀의 내용을 파일로 내보내는데 사용되는 대화 상자를 엽니다. + + + + + Print... + 인쇄하기... + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + 출력된 텍스트를 인쇄하기 위한 인쇄 미리보기 창을 엽니다 + + + + Copy Hex and ASCII + Hex와 ASCII를 복사합니다 + + + + Copy selected hexadecimal and ASCII columns to the clipboard + 선택된 16진수와 ASCII 필드를 클립보드로 복사합니다 + + + + Ctrl+Shift+C + + + + + Set as &NULL + NULL로 만들기(&N) + + + + This button saves the changes performed in the cell editor to the database cell. + 이 버튼은 데이터 셀에 셀 에디터의 변경 사항을 적용하여 저장하는 버튼입니다. + + + + Apply + 적용 + + + + Text + 문자열 + + + + Binary + 바이너리 + + + + Erases the contents of the cell + 셀의 데이터 값을 삭제합니다 + + + + This area displays information about the data present in this database cell + 이 영역은 이 데이터베이스 데이터 값에 대한 정보를 보여줍니다 + + + + Type of data currently in cell + 현재 셀에 있는 데이터 타입 + + + + Size of data currently in table + 현재 테이블에 있는 데이터 크기 + + + + Choose a filename to export data + 내보내기 할 데이터의 파일 이름을 선택하세요 + + + + + Image data can't be viewed in this mode. + 이미지 데이터는 이 모드에서는 볼 수 없습니다. + + + + + Try switching to Image or Binary mode. + 이미지나 바이너리 모드로 바꿔보세요. + + + + + Binary data can't be viewed in this mode. + 바이너리 데이터는 이 모드에서 볼 수 없습니다. + + + + + Try switching to Binary mode. + 바이너리 모드로 바꿔보세요. + + + + + Image files (%1) + 이미지 파일 (%1) + + + + Binary files (*.bin) + 바이너리 파일 (*.bin) + + + + Choose a file to import + 가져올 파일을 선택하세요 + + + + %1 Image + %1 이미지 + + + + Invalid data for this mode + 이 모드에 맞지 않는 데이터 + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + 이 셀에는 올바르지 않은 %1 데이터를 포함하고 있습니다. 이유: %2. 이 셀을 정말로 적용할까요? + + + + + + %n character(s) + + %n 자 + + + + + Type of data currently in cell: %1 Image + 현재 데이터 타입: %1 이미지 + + + + %1x%2 pixel(s) + %1x%2 픽셀 + + + + Type of data currently in cell: NULL + 현재 데이터 타입: 널 + + + + Type of data currently in cell: Valid JSON + 현재 데이터 타입: 유효한 JSON + + + + Couldn't save file: %1. + 파일을 저장할 수 없습니다: %1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + 현재 데이터는 임시 파일에 저장되었으며 기본 프로그램으로 열립니다. 이제 파일을 편집하고 준비되면 저장된 새 데이터를 셀 편집기에 적용하거나 변경 사항을 취소할 수 있습니다. + + + + + Type of data currently in cell: Text / Numeric + 현재 데이터 타입: 문자열 / 숫자 + + + + Type of data currently in cell: Binary + 현재 데이터 타입: 바이너리 + + + + + %n byte(s) + + %n 바이트 + + + + + EditIndexDialog + + + &Name + 이름(&N) + + + + Order + 정렬 순서 + + + + &Table + 테이블(&T) + + + + Edit Index Schema + 인덱스 스키마 수정 + + + + &Unique + 유니크(&U) + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + 인덱스를 테이블의 일부로만 제한하기 위해서 인덱싱 해야하는 테이블의 일부를 지정하는 WHERE 절을 지정할 수 있습니다 + + + + Partial inde&x clause + 부분(Partial) 인덱스절(&X) + + + + Colu&mns + 열(&M) + + + + Table column + 테이블 열 + + + + Type + 타입 + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + 인덱스에 새 표현식 컬럼을 추가하세요. 표현식 컬럼은 컬럼 이름 대신 SQL 표현식이 들어갑니다. + + + + Index column + 인덱스 컬럼 + + + + Deleting the old index failed: +%1 + 이전 인덱스를 삭제하는데 실패했습니다: %1 + + + + Creating the index failed: +%1 + 인덱스 생성에 실패했습니다: +%1 + + + + EditTableDialog + + + Edit table definition + 테이블 정의 변경 + + + + Table + 테이블 + + + + Advanced + 고급 + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + 이 테이블을 'rowid가 없는' 테이블로 생성합니다. 이 설정을 사용하려면 주 키(Primary Key)로 설정되고 자동 증가(Auto Increment)가 해제된 INTEGER 타입의 필드 하나가 필요합니다. + + + + Without Rowid + Rowid 필드 없음 + + + + Fields + 필드 + + + + Database sche&ma + 데이터베이스 스키마(&M) + + + + Add + 추가 + + + + Remove + 삭제 + + + + Move to top + 최상단으로 올리기 + + + + Move up + 위로 올리기 + + + + Move down + 아래로 내리기 + + + + Move to bottom + 최하단으로 내리기 + + + + + Name + 필드명 + + + + + Type + 타입 + + + + NN + NN + + + + Not null + Not null + + + + PK + PK + + + + Primary key + 기본 키 + + + + AI + AI + + + + Autoincrement + 자동 증가(Autoincrement) + + + + U + U + + + + + + Unique + 유니크(Unique) + + + + Default + 기본값 + + + + Default value + 기본값 + + + + + + Check + 체크 + + + + Check constraint + 제약조건(Check constraint) + + + + Collation + 콜레이션 + + + + + + Foreign Key + 외래키 + + + + Constraints + 제약 조건 + + + + Add constraint + 제약 조건 추가 + + + + Remove constraint + 제약 조건 삭제 + + + + Columns + 필드 + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>이 테이블 정의 중에 파서가 해석할 수 없는 부분이 있습니다. 이 테이블을 수정하거나 저장하면 문제가 발생할 수 있습니다.</p></body></html> + + + + + Primary Key + 기본 키 + + + + Add a primary key constraint + 기본 키 제약 조건 추가 + + + + Add a foreign key constraint + 외래 키 제약 조건 추가 + + + + Add a unique constraint + 유니크 제약 조건 추가 + + + + Add a check constraint + 체크 제약 조건 추가 + + + + Error creating table. Message from database engine: +%1 + 테이블 생성 에러. 데이터베이스 메시지: +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + 이미 다른 필드에서 사용중인 이름입니다. 다른 이름을 사용하거나 사용 중인 필드 이름을 바꾸세요. + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + 각 테이블마다 하나의 기본 키만 있을 수 있습니다. 기존 기본 키를 대신 수정하세요. + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + 이 필드는 테이블 %1 에 있는 외래키에 참조되어 있기 때문에 이름을 변경할 수 없습니다. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + 이 필드 값이 NULL로 되어 있는 레코드가 최소한 하나 이상 존재합니다. 이러한 상태에서는 변경이 불가능하니 테이블의 데이터를 먼저 수정해서 NULL 값을 삭제주세요. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + 이 필드 값이 숫자가 아닌 값으로 되어 있는 레코드가 최소 하나 이상 존재합니다. 이러한 상태에서는 변경이 불가능하니 테이블의 데이터 값을 먼저 변경해주세요. + + + + Column '%1' has duplicate data. + + %1 열에 중복된 데이터가 있습니다. + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + 이로 인해 유니크 플래그를 설정할 수 없습니다. 중복 데이터를 제거하여야 유니크 플래그를 설정할 수 있습니다. + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + 정말로 '%1' 필드를 삭제하시겠습니까? +이 필드에 저장된 모든 데이터가 같이 삭제됩니다. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + 'rowid 사용하지 않음'을 사용하기 위해서는 아래 두 가지 사항을 만족시키는 필드를 추가해주세요: + - 기본 키(Primary Key) 사용 + - 자동 증가(Auto Increment) 사용하지 않음 + + + + ExportDataDialog + + + Export data as CSV + 데이터를 CSV 파일로 내보내기 + + + + Tab&le(s) + 테이블(&l) + + + + Colu&mn names in first line + 첫 행이 필드 이름(&M) + + + + Fie&ld separator + 필드 구분자(&l) + + + + , + , + + + + ; + ; + + + + Tab + + + + + | + | + + + + + + Other + 기타 + + + + &Quote character + 문자열 묶음 기호(&Q) + + + + " + " + + + + ' + ' + + + + New line characters + 개행문자 + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + 인쇄하기 좋은 스타일 + + + + + Could not open output file: %1 + 내보낸 파일을 열 수 없습니다: %1 + + + + + Choose a filename to export data + 데이터를 내보낼 파일 이름을 정하세요 + + + + Export data as JSON + JSON으로 내보내기 + + + + exporting CSV + CSV로 내보내기 + + + + exporting JSON + JSON으로 내보내기 + + + + Please select at least 1 table. + 최소한 테이블 1개는 선택하세요. + + + + Choose a directory + 디렉터리를 선택하세요 + + + + Export completed. + 내보내기가 완료되었습니다. + + + + ExportSqlDialog + + + Export SQL... + SQL로 내보내기... + + + + Tab&le(s) + 테이블(&l) + + + + Select All + 모두 선택 + + + + Deselect All + 모두 선택 해제 + + + + &Options + 옵션(&O) + + + + Keep column names in INSERT INTO + INSERT INTO문에 필드명 넣기 + + + + Multiple rows (VALUES) per INSERT statement + 하나의 INSERT문에 여러줄 (VALUES) 사용하기 + + + + Export everything + 모두 내보내기 + + + + Export data only + 데이터만 내보내기 + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + 이전 스키마 유지하기 (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + 이전 스키마 덮어쓰기 (DROP TABLE, then CREATE TABLE) + + + + Export schema only + 스키마만 내보내기 + + + + Please select at least one table. + 최소한 한 개의 테이블을 선택해주세요. + + + + Choose a filename to export + 내보내기 할 파일명을 고르세요 + + + + Export completed. + 내보내기가 완료되었습니다. + + + + Export cancelled or failed. + 내보내기가 취소되었거나 실패했습니다. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + 찾기... + + + + Find and Replace... + 검색과 바꾸기... + + + + Print... + 인쇄하기... + + + + ExtendedTableWidget + + + Use as Exact Filter + 정확한 필터로 적용하기 + + + + Containing + 포함하는 + + + + Not containing + 포함하지 않는 + + + + Not equal to + 같지 않은 + + + + Greater than + 초과 + + + + Less than + 미만 + + + + Greater or equal + 이상 + + + + Less or equal + 이하 + + + + Between this and... + 이 값과 사이에... + + + + Regular expression + 정규 표현식 + + + + Edit Conditional Formats... + 조건부 서식 편집... + + + + Set to NULL + NULL로 변경하기 + + + + Copy + 복사하기 + + + + Copy with Headers + 헤더 포함 복사하기 + + + + Copy as SQL + SQL로 복사하기 + + + + Paste + 붙여넣기 + + + + Print... + 인쇄하기... + + + + Use in Filter Expression + 필터 표현식 적용하기 + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + 클립보드의 내용이 선택한 범위보다 큽니다. 어쨌든 추가할까요? + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>모든 데이터가 로드되지 않았습니다. <b>모든 행을 선택하기 전에 모든 데이터를 로드하시겠습니까?</b><p><p><b> 아니요</b>를 선택하면 더 이상 데이터가 로드되지 않고 선택이 수행되지 않습니다.<br/><b>예</b> 를 선택하면 데이터가 로드되는 동안 시간이 다소 걸릴 수 있지만 선택이 완료됩니다.</p>경고: 모든 데이터를 로드하려면 큰 테이블을 위해 많은 양의 메모리가 필요할 수 있습니다. + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + 선택 사항을 NULL로 설정할 수 없습니다. 열 %1에 NOT NULL 제약 조건이 있습니다. + + + + FileExtensionManager + + + File Extension Manager + 파일 확장자 관리자 + + + + &Up + 위로(&U) + + + + &Down + 아래로(&D) + + + + &Add + 추가하기(&A) + + + + &Remove + 삭제하기(&R) + + + + + Description + 설명 + + + + Extensions + 확장자 + + + + *.extension + *.확장자 + + + + FilterLineEdit + + + Filter + 필터 + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + 이 입력 필드는 현재 선택된 테이블에 빠르게 필터를 적용할 수 있게 해줍니다. +기본적으로 입력 박스에 들어가있는 조건에 맞는 행들이 표시됩니다. +아래와 같은 연산자들을 사용할 수 있습니다: +% 와일드카드 +> 초과 +< 미만 +>= 이상 +<= 이하 += 같음: 정확히 일치 +<> 같지않음: 정확히 불일치 +x~y 범위: x와 y값 사이 값 +/regexp/ 정규 표현식에 일치하는 값 + + + + Clear All Conditional Formats + 모든 조건부 서식 지우기 + + + + Use for Conditional Format + 조건부 서식 사용 + + + + Edit Conditional Formats... + 조건부 서식 편집... + + + + Set Filter Expression + 필터 표현식 설정하기 + + + + What's This? + 이건 무엇인가요? + + + + Is NULL + NULL임 + + + + Is not NULL + NULL이 아님 + + + + Is empty + 비어있음 + + + + Is not empty + 비어있지 않음 + + + + Not containing... + 포함하지 않는... + + + + Equal to... + 같은... + + + + Not equal to... + 같지 않은... + + + + Greater than... + 초과... + + + + Less than... + 미만... + + + + Greater or equal... + 이상... + + + + Less or equal... + 이하... + + + + In range... + 범위... + + + + Regular expression... + 정규 표현식... + + + + FindReplaceDialog + + + Find and Replace + 찾기와 바꾸기 + + + + Fi&nd text: + 찾을 텍스트(&N): + + + + Re&place with: + 바꾸려는 텍스트(&P): + + + + Match &exact case + 대소문자 일치 시(&E) + + + + Match &only whole words + 전체 단어 일치 시(&O) + + + + When enabled, the search continues from the other end when it reaches one end of the page + 활성화되면 페이지의 한쪽 끝에 도달했을 때 다른 쪽 끝에서 검색이 계속됩니다 + + + + &Wrap around + 전체 페이지 검색(&W) + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + 활성화되면 커서 위치 뒤로 검색합니다. 그렇지 않으면 앞으로 검색합니다 + + + + Search &backwards + 뒤로 찾기(&B) + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>할성화되면 현재 선택 항목에서만 찾습니다.</p></body></html> + + + + &Selection only + 선택 항목만(&S) + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>선택하면 찾을 패턴이 UNIX 정규 표현식으로 해석됩니다. <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>를 참고하십시오.</p></body></html> + + + + Use regular e&xpressions + 정규 표현식 사용(&X) + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + 커서 위치에서 "뒤로 찾기"에서 설정한 방향에 따라 다음 항목을 찾습니다 + + + + &Find Next + 다음 찾기(&F) + + + + F3 + + + + + &Replace + 바꾸기(&R) + + + + Highlight all the occurrences of the text in the page + 페이지 내 찾으려는 텍스트를 모두 강조 표시합니다 + + + + F&ind All + 모두 찾기(&I) + + + + Replace all the occurrences of the text in the page + 페이지 내 일치하는 모든 텍스트를 바꿉니다 + + + + Replace &All + 모두 바꾸기(&A) + + + + The searched text was not found + 찾으려는 텍스트를 찾을 수 없습니다 + + + + The searched text was not found. + 찾으려는 텍스트를 찾을 수 없습니다. + + + + The searched text was found one time. + 찾으려는 텍스트를 한 번 발견되었습니다. + + + + The searched text was found %1 times. + 찾으려는 텍스트가 %1번 발견되었습니다. + + + + The searched text was replaced one time. + 텍스트가 한 번 바뀌었습니다. + + + + The searched text was replaced %1 times. + %1개의 텍스트가 바뀌었습니다. + + + + ForeignKeyEditor + + + &Reset + 초기화(&R) + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + 외부 키(ON UPDATE, ON DELETE 등.) + + + + ImportCsvDialog + + + Import CSV file + CSV 파일 가져오기 + + + + Table na&me + 테이블 이름(&M) + + + + &Column names in first line + 첫 행에 필드명 포함(&C) + + + + Field &separator + 필드 구분자(&S) + + + + , + , + + + + ; + ; + + + + + Tab + + + + + | + | + + + + Other + 기타 + + + + &Quote character + 문자열 묶음 기호(&Q) + + + + + Other (printable) + 기타 (인쇄용) + + + + + Other (code) + 기타 (코드) + + + + " + " + + + + ' + ' + + + + &Encoding + 인코딩(&E) + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + 필드 앞뒤 공백 제거? + + + + Separate tables + 테이블 나누기 + + + + Advanced + 고급 + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + CSV 파일의 빈 값을 이 열의 기본 값이 있는 기존 테이블로 가져올 때 해당 기본값이 삽입됩니다. 대신 빈 값을 삽입하려면 이 옵션을 활성화하세요. + + + + Ignore default &values + 기본 값을 무시(&V) + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + 기본 값 없이 비어 있는 값을 NOT NULL 열로 가져오려고 할 때 가져오기를 중단하려면 이 옵션을 활성화하세요. + + + + Fail on missing values + 값 누락 시 실패 + + + + Disable data type detection + 데이터 타입 인식 끄기 + + + + Disable the automatic data type detection when creating a new table. + 새 테이블을 생성할 때 자동 데이터 타입 인식 기능을 끕니다. + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + 기본 키, 고유 제약 조건 또는 고유 인덱스를 사용하여 기존 테이블로 가져올 때 충돌 가능성이 있습니다. 이 옵션을 사용하면 해당 경우에 대한 대처 방안을 선택할 수 있습니다. 기본적으로는 가져오기가 중단되고 롤백되지만 충돌하는 행을 무시하고 가져오지 않거나 테이블의 기존 행을 바꾸도록 선택할 수도 있습니다. + + + + Abort import + 가져오기 취소 + + + + Ignore row + 열 무시 + + + + Replace existing row + 기존 행 바꾸기 + + + + Conflict strategy + 충돌 발생 시 + + + + + Deselect All + 모두 선택 해제 + + + + Match Similar + 비슷한거 찾기 + + + + Select All + 모두 선택 + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + 이미 '%1'이라는 이름을 가진 테이블이 존재하며 기존 테이블로 데이터를 가져오는 것은 필드의 수가 같을 때만 가능합니다. + + + + There is already a table named '%1'. Do you want to import the data into it? + 이미 '%1'라는 이름의 테이블이 존재합니다. 데이터를 이 테이블로 가져올까요? + + + + Creating restore point failed: %1 + 복원 포인트를 생성하는데 실패했습니다: %1 + + + + Creating the table failed: %1 + 테이블 생성에 실패했습니다: %1 + + + + importing CSV + CSV 가져오기 + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + 파일 '%1' 가져오는데 %2ms가 걸렸습니다. 이 중에서 행 기능을 적용하는데 %3ms가 걸렸습니다. + + + + Inserting row failed: %1 + 행 추가에 실패했습니다: %1 + + + + MainWindow + + + DB Browser for SQLite + DB Browser for SQLite + + + + toolBar1 + toolBar1 + + + + Opens the SQLCipher FAQ in a browser window + SQLCipher FAQ를 봅니다 + + + + Export one or more table(s) to a JSON file + 테이블을 JSON 파일로 내보냅니다 + + + + Find + 찾기 + + + + Find or replace + 검색과 바꾸기 + + + + Print text from current SQL editor tab + 현재 SQL 편집기 탭의 텍스트 인쇄 + + + + Print the structure of the opened database + 현재 열려 있는 데이터베이스의 구조 인쇄 + + + + Un/comment block of SQL code + SQL 코드 블럭 주석 처리/해제 + + + + Un/comment block + 블럭 주석 처리/해제 + + + + Comment or uncomment current line or selected block of code + 현재 줄 또는 선택된 블럭을 주석 처리 또는 해제합니다 + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + 선택된 줄을 주석 처리 또는 해제합니다. 선택 항목이 없는 경우 현재 줄을 처리합니다. 모든 블럭은 첫번째 줄을 통해 토글 할 수 있습니다. + + + + Ctrl+/ + + + + + Stop SQL execution + SQL 실행 중단 + + + + Stop execution + 실행 중단 + + + + Stop the currently running SQL script + 현재 실행 중인 SQL 스크립트 중단 + + + + Execute all/selected SQL + 전체 또는 선택한 SQL 실행 + + + + Open an existing database file in read only mode + 읽기 전용 모드로 존재하는 데이터베이스 파일을 엽니다 + + + + &File + 파일(&F) + + + + &Import + 가져오기(&I) + + + + &Export + 내보내기(&E) + + + + &Edit + 편집(&E) + + + + &View + 보기(&V) + + + + &Help + 도움말(&H) + + + + &Tools + 도구(&T) + + + + DB Toolbar + DB 툴바 + + + + Edit Database &Cell + 데이터베이스 셀 수정하기(&C) + + + + Error Log + 에러 로그 + + + + This button clears the contents of the SQL logs + 이 버튼은 SQL 로그 내용을 지웁니다 + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + 이 패널에서 응용 프로그램 또는 사용자가 실행한 모든 SQL 명령의 기록을 확인할 수 있습니다 + + + + DB Sche&ma + DB 스키마(&M) + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + 이것은 열린 데이터베이스의 구조입니다. +이름 열에서 여러 개체 이름을 끌어서 SQL 편집기에 놓을 수 있으며 컨텍스트 메뉴를 사용하여 끌어서 놓은 이름의 속성을 변경할 수 있습니다. +이것은 SQL 문을 작성하는데 도움이 됩니다. +스키마 열에서 SQL 문을 끌어서 SQL 편집기나 다른 응용 프로그램에 놓을 수도 있습니다. + + + + + &Remote + 원격(&R) + + + + This button executes the SQL statement present in the current editor line + 이 버튼은 현재 편집기 행에 있는 SQL 문을 실행합니다 + + + + Shift+F5 + + + + + Sa&ve Project + 프로젝트 저장하기(&V) + + + + User + 사용자 + + + + Application + 애플리케이션 + + + + &Clear + 지우기(&C) + + + + &New Database... + 새 데이터베이스(&N)... + + + + + Create a new database file + 새 데이터베이스 파일을 생성합니다 + + + + This option is used to create a new database file. + 이 옵션은 새 데이터베이스 파일을 생성하려고 할 때 사용합니다. + + + + Ctrl+N + + + + + + &Open Database... + 데이터베이스 열기(&O)... + + + + + + + + Open an existing database file + 기존 데이터베이스 파일을 엽니다 + + + + + + This option is used to open an existing database file. + 이 옵션은 기존 데이터베이스 파일을 열 때 사용합니다. + + + + Ctrl+O + + + + + &Close Database + 데이터베이스 닫기(&C) + + + + This button closes the connection to the currently open database file + 이 버튼은 현재 열려 있는 데이터베이스 파일에 대한 연결을 닫습니다 + + + + + Ctrl+W + + + + + + Revert database to last saved state + 마지막 저장된 상태로 데이터베이스를 되돌립니다 + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + 이 옵션은 현재 데이터베이스를 마지막 저장된 상태로 되돌릴 때 사용합니다. 저장 이후에 이루어진 모든 변경 사항을 되돌립니다. + + + + + Write changes to the database file + 변경 사항을 데이터베이스 파일에 반영합니다 + + + + This option is used to save changes to the database file. + 이 옵션은 데이터베이스 파일에 변경 사항을 저장하기 위해 사용됩니다. + + + + Ctrl+S + + + + + Compact the database file, removing space wasted by deleted records + 삭제된 레코드로 낭비되는 공간을 제거하여 데이터베이스 파일 압축 + + + + + Compact the database file, removing space wasted by deleted records. + 삭제된 레코드로 낭비되는 공간을 제거하여 데이터베이스 파일 압축. + + + + E&xit + 종료(&X) + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + .sql 덤프 문자열 파일에서 데이터를 새 데이터베이스나 기존 데이터베이스로 가져옵니다. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + 이 옵션은 .sql 덤프 문자열 파일에서 데이터를 새 데이터베이스나 기존 데이터베이스로 가져옵니다. SQL 덤프 파일은 MySQL이나 PostgreSQL 등 대부분의 데이터베이스 엔진에서 생성할 수 있습니다. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + 마법사를 사용하여 CSV 파일(쉼로 필드가 나누어진 문자열 파일)에서 데이터베이스 테이블로 데이터를 가져올 수 있습니다. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + 마법사를 사용하여 CSV 파일(쉼표로 필드가 나누어진 문자열 파일)에서 데이터베이스 테이블로 데이터를 가져올 수 있습니다. CSV 파일은 대부분의 데이터베이스와 스프레드시트 애플리케이션에서 생성할 수 있습니다. + + + + Export a database to a .sql dump text file. + 데이터베이스를 .sql 덤프 문자열 파일로 내보내기. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + 이 옵션은 데이터베이스를 .sql 덤프 문자열 파일로 내보낼 수 있습니다. SQL 덤프 파일은 MySQL과 PostgreSQL 등 대부분의 데이터베이스 엔진에서 데이터베이스를 재생성하기 위한 모든 필요한 데이터를 포함하고 있습니다. + + + + Export a database table as a comma separated text file. + 데이터베이스 테이블을 CSV(쉼표로 분리된 문자열 파일)로 내보내기. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + 데이터베이스 테이블을 CSV(쉼표로 분리된 문자열 파일)로 내보내기. 다른 데이터베이스나 스프레드시트 애플리케이션에서 가져와서 사용할 수 있습니다. + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + 테이블 생성 마법사를 사용하여 데이터베이스에서 새 테이블을 위한 이름과 필드를 정의할 수 있습니다 + + + + + Delete Table + 테이블 삭제하기 + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + 테이블 삭제 마법사를 사용하여 선택한 데이터베이스 테이블을 삭제할 수 있습니다. + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + 테이블 편집 마법사를 사용하여 기존 테이블의 이름을 변경하거나 테이블의 필드를 추가, 삭제, 필드명 변경 및 타입 변경을 할 수 있습니다. + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + 인덱스 생성 마법사를 사용하여 기존 데이터베이스 테이블에 새 인덱스를 정의할 수 있습니다. + + + + &Preferences... + 환경설정(&P)... + + + + + Open the preferences window. + 환경설정 창을 엽니다. + + + + &DB Toolbar + DB 툴바(&D) + + + + Shows or hides the Database toolbar. + 데이터베이스 툴바를 보이거나 숨깁니다. + + + + Shift+F1 + + + + + &Recently opened + 최근 열었던 파일들(&R) + + + + Open &tab + 탭 열기(&T) + + + + Ctrl+T + + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + 데이터베이스 구조 + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + 이것은 열려있는 데이터베이스의 구조입니다. +개체 행에서 SQL 문을 끌어서 다른 응용 프로그램이나 'DB Browser for SQLite'의 다른 인스턴스에 놓을 수 있습니다. + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + 데이터 보기 + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Pragma 수정 + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + 경고: 이 pragma는 읽기 전용이 아니며 이 값은 추측된 값입니다. pragma를 작성하면 SQLite에서 제공하는 재정의 된 LIKE를 덮어 쓸 수 있습니다. + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + SQL 실행 + + + + Ctrl+F4 + + + + + Compact &Database... + 데이터베이스 압축(&D)... + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + 이 버튼은 현재 선택되어 있는 SQL 명령문을 실행합니다. 만약 선택 항목이 없으면 모든 SQL 명령문이 실행됩니다. + + + + &Load Extension... + 확장도구 불러오기(&L)... + + + + Execute line + 줄 실행 + + + + &Wiki + 위키(&W) + + + + F1 + + + + + Bug &Report... + 버그 보고(&R)... + + + + Feature Re&quest... + 기능 제안(&Q)... + + + + Web&site + 웹 사이트(&S) + + + + &Donate on Patreon... + 후원하기(&D)... + + + + Open &Project... + 프로젝트 열기(&P)... + + + + &Attach Database... + 데이터베이스 연결(&A)... + + + + + Add another database file to the current database connection + 현재 데이터베이스 연결에 다른 데이터베이스 연결을 추가합니다 + + + + This button lets you add another database file to the current database connection + 이 버튼을 사용하면 현재 데이터베이스 연결에 다른 데이터베이스 파일을 추가할 수 있습니다 + + + + &Set Encryption... + 암호화 설정(&S)... + + + + SQLCipher &FAQ + SQLCipher FAQ(&F) + + + + Table(&s) to JSON... + 테이블을 JSON으로 내보내기(&S)... + + + + Browse Table + 테이블 탐색 + + + + Open Data&base Read Only... + 읽기 전용으로 데이터베이스 열기(&B)... + + + + Open SQL file(s) + SQL 파일 열기 + + + + This button opens files containing SQL statements and loads them in new editor tabs + 이 버튼은 SQL 문이 포함된 파일을 열고 새 편집기 탭에 로드합니다 + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + 이 버튼을 사용하면 열린 DB와 관련된 모든 설정을 DB Browser for SQLite 프로젝트 파일로 저장할 수 있습니다 + + + + This button lets you open a DB Browser for SQLite project file + 이 버튼을 사용하면 DB Browser for SQLite 프로젝트 파일을 열 수 있습니다 + + + + Ctrl+Shift+O + + + + + Save results + 결과 저장 + + + + Save the results view + 결과 뷰 저장 + + + + This button lets you save the results of the last executed query + 이 버튼은 마지막으로 실행한 쿼리의 결과값을 저장합니다 + + + + + Find text in SQL editor + SQL 편집기에서 텍스트 찾기 + + + + This button opens the search bar of the editor + 이 버튼은 편집기의 검색창을 엽니다 + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + SQL 편집기에서 텍스트 찾아 바꾸기 + + + + This button opens the find/replace dialog for the current editor tab + 이 버튼은 현재 열려 있는 편집기의 찾기 바꾸기 대화상자를 엽니다 + + + + Ctrl+H + + + + + Export to &CSV + CSV로 내보내기(&C) + + + + Save as &view + 뷰로 저장하기(&V) + + + + Save as view + 다른 이름의 뷰로 저장하기 + + + + Shows or hides the Project toolbar. + 프로젝트 툴바를 표시하거나 숨깁니다. + + + + Extra DB Toolbar + 확장 DB 툴바 + + + + New In-&Memory Database + In-Memory 데이터베이스 생성(&M) + + + + Drag && Drop Qualified Names + 정규화된 이름을 끌어서 놓기 + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + 개체를 끌어서 편집기에 놓을 때 정규화된 이름(예: "Table", "Field")을 사용합니다 + + + + Drag && Drop Enquoted Names + 인용된 이름을 끌어서 놓기 + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + 개체를 끌어서 편집기에 놓을 때 이스케이프된 식별자(예: "Table1")을 사용합니다 + + + + &Integrity Check + 무결성 검사(&I) + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + 열린 데이터베이스에 대해 integrity_check pragma를 실행하고 SQL 실행 탭에 결과를 반환합니다. 이 pragma는 전체 데이터베이스의 무결성 검사를 수행합니다. + + + + &Foreign-Key Check + 외래키 검사(&F) + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + 열린 데이터베이스에 대해 foreign_key_check pragma를 실행하고 SQL 실행 탭에 결과를 반환합니다 + + + + &Quick Integrity Check + 빠른 무결성 검사(&Q) + + + + Run a quick integrity check over the open DB + 열린 데이터베이스 대해 빠른 무결성 검사 실행 + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + 열린 데이터베이스에 대해 quick_check pragma를 실행하고 SQL 실행 탭에 결과를 반환합니다. 이 명령은 대부분의 PRAGMA integrity_check 검사를 수행하지만 훨씬 빠르게 실행됩니다. + + + + &Optimize + 최적화(&O) + + + + Attempt to optimize the database + 데이터베이스 최적화 + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + 열린 데이터베이스에 대해 최적화 pragma를 실행합니다. 이 pragma는 향후 쿼리의 성능을 향상시키는 최적화를 수행할 수 있습니다. + + + + + Print + 인쇄하기 + + + + &Save Project As... + 다른 이름으로 프로젝트 저장(&S)... + + + + + + Save the project in a file selected in a dialog + 대화상자에서 선택한 파일에 프로젝트 저장 + + + + Save A&ll + 모두 저장(&l) + + + + + + Save DB file, project file and opened SQL files + DB 파일, 프로젝트 파일 및 열린 SQL 파일 저장 + + + + Ctrl+Shift+S + + + + + Open a dialog for printing the text in the current SQL editor tab + 현재 SQL 편집기 탭에서 텍스트를 인쇄하기 위한 대화상자를 엽니다 + + + + Open a dialog for printing the structure of the opened database + 열린 데이터베이스의 구조를 인쇄하기 위한 대화상자를 엽니다 + + + + SQL &Log + SQL 로그(&L) + + + + Show S&QL submitted by + ~에 의해 실행된 SQL 보기(&Q) + + + + &Plot + 플롯(&P) + + + + + Project Toolbar + 프로젝트 툴바 + + + + Extra DB toolbar + 확장 DB 툴바 + + + + + + Close the current database file + 현재 데이터베이스 파일 닫기 + + + + &Revert Changes + 변경사항 취소하기(&R) + + + + &Write Changes + 변경사항 저장하기(&W) + + + + &Database from SQL file... + SQL 파일로부터 데이터베이스 가져오기(&D)... + + + + &Table from CSV file... + CSV 파일에서 테이블 가져오기(&T)... + + + + &Database to SQL file... + 데이터베이스를 SQL로 내보내기(&D)... + + + + &Table(s) as CSV file... + 테이블을 CSV 파일로 내보내기(&T)... + + + + &Create Table... + 테이블 생성하기(&C)... + + + + &Delete Table... + 테이블 삭제하기(&D)... + + + + &Modify Table... + 테이블 수정하기(&M)... + + + + Create &Index... + 인덱스 생성하기(&I)... + + + + W&hat's This? + 이건 무엇인가요?(&H) + + + + &About + 정보(&A) + + + + This button opens a new tab for the SQL editor + 이 버튼은 SQL 편집기의 새로운 탭을 엽니다 + + + + &Execute SQL + SQL 실행하기(&E) + + + + + + Save SQL file + SQL 파일 저장하기 + + + + + Execute current line + 현재 행 실행하기 + + + + Ctrl+E + + + + + Export as CSV file + CSV 파일로 내보내기 + + + + Export table as comma separated values file + 테이블을 CSV 파일로 내보내기 + + + + + Save the current session to a file + 현재 세션을 파일로 저장하기 + + + + + Load a working session from a file + 파일에서 작업 세션 불러오기 + + + + + Save SQL file as + SQL 파일 다름 이름으로 저장하기 + + + + This button saves the content of the current SQL editor tab to a file + 이 버튼은 현재 SQL 편집기의 내용을 파일로 저장합니다 + + + + &Browse Table + 테이블 보기(&B) + + + + Copy Create statement + 생성 구문 복사하기 + + + + Copy the CREATE statement of the item to the clipboard + 항목의 생성 구문을 클립보드에 복사합니다 + + + + Ctrl+Return + + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Encrypted + 암호화됨 + + + + Read only + 읽기 전용 + + + + Database file is read only. Editing the database is disabled. + 데이터베이스 파일이 읽기 전용입니다. 데이터베이스 수정 기능이 비활성화됩니다. + + + + Database encoding + 데이터베이스 인코딩 + + + + Database is encrypted using SQLCipher + 데이터베이스는 SQLCipher를 통해 암호화됩니다 + + + + + Choose a database file + 데이터베이스 파일을 선택하세요 + + + + + + Choose a filename to save under + 저장하려는 파일명을 선택하세요 + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + 데이터베이스 파일을 저장하던 중 에러가 발생했습니다. 이 말은 모든 변경사항들이 데이터베이스에 저장되지 못했음을 의미합니다. 다음에 나오는 에러를 먼저 해결하세요. +%1 + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + 정말로 데이터베이스 파일 '%1'의 모든 변경 사항을 마지막 저장된 상태로 되돌립니까? + + + + Choose a file to import + 가져올 파일을 선택하세요 + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (읽기 전용) + + + + Open Database or Project + 데이터베이스 또는 프로젝트 열기 + + + + Attach Database... + 데이터베이스 연결... + + + + Import CSV file(s)... + CSV 파일 가져오기... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + 드롭된 파일에 적용할 작업을 선택합니다. <br/>참고: '가져오기'만 두 개 이상의 파일을 처리합니다. + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + '%1' 프로젝트 파일에 SQL 탭을 추가하기 위해 변경사항을 저장하시겠습니까? + + + + Text files(*.sql *.txt);;All files(*) + 문자열 파일(*.sql *.txt);;모든 파일(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + 데이터를 가져와서 새 데이터베이스 파일을 생성하고 싶은신가요? +아니라면 SQL 파일의 데이터를 현재 데이터베이스로 가져오기를 할 것입니다. + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + 아직 SQL 명령문이 실행되는 중입니다. 데이터베이스를 닫으면 실행이 중단되어 데이터베이스가 일관성이 없어질 수 있습니다. 정말로 데이터베이스를 닫으시겠습니까? + + + + Do you want to save the changes made to the project file '%1'? + %1 데이터베이스 파일을 생성하기 위해 변경사항을 저장하시겠습니까? + + + + File %1 already exists. Please choose a different name. + 파일 %1이 이미 존재합니다. 다른 파일명을 선택하세요. + + + + Error importing data: %1 + 데이터 가져오기 에러: %1 + + + + Import completed. + 가져오기가 완료되었습니다. + + + + Delete View + 뷰 삭제하기 + + + + Modify View + 뷰 수정하기 + + + + Delete Trigger + 트리거 삭제하기 + + + + Modify Trigger + 트리거 수정하기 + + + + Delete Index + 인덱스 삭제하기 + + + + Modify Index + 인덱스 수정하기 + + + + Modify Table + 테이블 수정하기 + + + + Do you want to save the changes made to SQL tabs in a new project file? + 새 프로젝트 파일에 SQL 탭을 추가하기 위해 변경사항을 저장하시겠습니까? + + + + Do you want to save the changes made to the SQL file %1? + %1 SQL 파일을 생성하기 위해 변경사항을 저장하시겠습니까? + + + + Could not find resource file: %1 + 리소스 파일을 찾을 수 없습니다: %1 + + + + Choose a project file to open + 불러올 프로젝트 파일을 선택하세요 + + + + Could not open project file for writing. +Reason: %1 + 쓰기 모드로 프로젝트 파일을 열 수 없습니다. +원인: %1 + + + + Busy (%1) + 사용 중 (%1) + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + PRAGMA 설정을 변경하려면 여러분의 현재 트랜잭션을 커밋해야합니다. +동의하십니까? + + + + Window Layout + 창 레이아웃 + + + + Reset Window Layout + 창 레이아웃 초기화 + + + + Alt+0 + + + + + Simplify Window Layout + 창 레이아웃 단순화 + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + 하단에 창 고정 + + + + Dock Windows at Left Side + 좌측에 창 고정 + + + + Dock Windows at Top + 상단에 창 고정 + + + + The database is currenctly busy. + 이 데이터베이스는 현재 사용 중입니다. + + + + Click here to interrupt the currently running query. + 여기를 눌러 현재 실행 중인 쿼리를 강제 중단합니다. + + + + Could not open database file. +Reason: %1 + 데이터베이스 파일을 열 수 없습니다. +원인: %1 + + + + In-Memory database + In-Memory 데이터베이스 + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + 정말로 테이블 '%1'을 삭제하시겠습니까? +테이블의 모든 데이터가 삭제됩니다. + + + + Are you sure you want to delete the view '%1'? + 정말로 '%1' 뷰를 삭제할까요? + + + + Are you sure you want to delete the trigger '%1'? + 정말로 '%1' 트리거를 삭제할까요? + + + + Are you sure you want to delete the index '%1'? + 정말로 '%1' 인덱스를 삭제할까요? + + + + Error: could not delete the table. + 에러: 테이블을 삭제할 수 없습니다. + + + + Error: could not delete the view. + 에러: 뷰를 삭제할 수 없습니다. + + + + Error: could not delete the trigger. + 에러: 트리거를 삭제할 수 없습니다. + + + + Error: could not delete the index. + 에러: 인덱스를 삭제할 수 없습니다. + + + + Message from database engine: +%1 + 데이터베이스 엔진 메시지: +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + 'pending'의 뜻이 보류입니다만, 여기서는 작업 중이던이 더 맞다고 판단했습니다. + 테이블을 편집하려면 작업 중이던 모든 변경 사항을 저장해야합니다. +데이터베이스를 저장하시겠습니까? + + + + Edit View %1 + 뷰 편집 %1 + + + + Edit Trigger %1 + 트리거 편집 %1 + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + 이미 SQL 명령문을 실행하였습니다. 현재 명령문을 대신 실행하기 위해 기존 실행을 중단하시겠습니까? 이로 인해 데이터베이스가 일관성이 없는 상태가 될 수 있습니다. + + + + -- EXECUTING SELECTION IN '%1' +-- + -- '%1의 선택 항목 실행 +-- + + + + -- EXECUTING LINE IN '%1' +-- + --'%1'에서 라인 실행 중 +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- '%1'로부터 전체 실행 +-- + + + + + At line %1: + %1번째 줄: + + + + Result: %1 + 결과: %1 + + + + Result: %2 + 결과: %2 + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + PRAGMA 값을 지정하지 않으면 현재 트랜잭션에 DB 파일 청소 작업(Vacuum)이 커밋됩니다. 진행할까요? + + + + Opened '%1' in read-only mode from recent file list + 최근 파일 목록에서 읽기 전용 모드로 '%1'을(를) 열었습니다 + + + + Opened '%1' from recent file list + 최근 파일 목록에서 '%1'을(를) 열었습니다 + + + + This action will open a new SQL tab with the following statements for you to edit and run: + 이 작업을 수행하면 편집하거나 실행할 수 있는 다음 명령문이 포함된 새 SQL 탭이 열립니다: + + + + Rename Tab + 탭 이름 변경 + + + + Duplicate Tab + 탭 복제 + + + + Close Tab + 탭 닫기 + + + + Opening '%1'... + '%1' 여는 중... + + + + There was an error opening '%1'... + '%1'을 여는 중 에러가 발생했습니다... + + + + Value is not a valid URL or filename: %1 + 올바른 URL 또는 파일 이름이 아닙니다: %1 + + + + %1 rows returned in %2ms + %2ms의 시간이 걸려서 %1 행이 반환되었습니다 + + + + Choose text files + 텍스트 파일 선택 + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + 가져오기가 완료되었습니다. 일부 외래 키의 제약 조건이 위반되었습니다. 저장 하기 전에 수정하십시오. + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + 이 탭의 명령문은 여전히 실행 중입니다. 탭을 닫으면 실행이 중단됩니다. 이로 인해 데이터베이스가 일관성이 없는 상태가 될 수 있습니다. 정말로 탭을 닫으시겠습니까? + + + + Select SQL file to open + 열 SQL 파일을 선택하세요 + + + + Select file name + 파일 이름을 선택하세요 + + + + Select extension file + 파일 확장자를 선택하세요 + + + + Extension successfully loaded. + 확장기능을 성공적으로 불러왔습니다. + + + + Error loading extension: %1 + 확장기능 불러오기 에러: %1 + + + + + Don't show again + 다시 보지 않기 + + + + New version available. + 이용 가능한 새 버전이 있습니다. + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + 이용 가능한 새 버전이 있습니다 (%1.%2.%3).<br/><br/><a href='%4'>%4</a>에서 다운로드하세요. + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + 이 프로젝트 파일은 DB Browser for SQLite 버전 3.10 이하를 사용하여 생성되었기 때문에 이전 파일 형식을 사용하고 있습니다. 이 파일 형식을 불러오는 것은 여전히 완벽하게 지원되지만 이전 형식에 대한 지원이 추후 중단될 수 있으므로 모든 프로젝트 파일을 신규 파일 형식으로 변환하는 것이 좋습니다. 파일을 열고 다시 저장하기만하면 파일을 변환할 수 있습니다. + + + + Project saved to file '%1' + '%1' 파일로 프로젝트가 저장되었습니다 + + + + Collation needed! Proceed? + 콜레이션이 필요합니다! 진행할까요? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + 이 데이터베이스의 테이블은 이 애플리케이션에서 잘 알지 못하는 특별한 함수 '%1'가 필요합니다. +이대로 계속 진행할 수는 있습니다만 여러분의 데이터베이스에 나쁜 영향이 갈 수도 있습니다. +백업을 생성하세요! + + + + creating collation + 콜레이션 생성 + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + SQL 탭의 새 이름을 설정하세요. '&&' 문자를 사용하여 다음에 따라오는 문자를 키보드 단축키로서 사용할 수 있습니다. + + + + Please specify the view name + 뷰 이름을 지정해주세요 + + + + There is already an object with that name. Please choose a different name. + 이미 같은 이름의 객체가 존재합니다. 다른 이름을 고르세요. + + + + View successfully created. + 뷰가 성공적으로 생성되었습니다. + + + + Error creating view: %1 + 뷰 생성 에러: %1 + + + + This action will open a new SQL tab for running: + 이 작업은 다음을 실행하는 새 SQL 탭을 엽니다: + + + + Press Help for opening the corresponding SQLite reference page. + 해당 SQLite 참조 페이지를 열려면 도움말을 누르십시오. + + + + DB Browser for SQLite project file (*.sqbpro) + DB Browser for SQLite 프로젝트 파일 (*.sqbpro) + + + + Error checking foreign keys after table modification. The changes will be reverted. + 테이블 수정 후 외래 키를 확인하는 중 오류가 발생하였습니다. 변경 사항이 되돌려집니다. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + 이 테이블은 외래 키 검사를 통과하지 못했습니다.<br/>'도구 -> 외래 키 검사'를 실행하여 보고된 문제를 해결하십시오. + + + + Execution finished with errors. + 에러가 발생하여 실행 중단됨. + + + + Execution finished without errors. + 에러 없이 실행 완료. + + + + NullLineEdit + + + Set to NULL + NULL로 변경하기 + + + + Alt+Del + + + + + PlotDock + + + Plot + 플롯 + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>이 화면은 현재 보고 있는 테이블 또는 방금 실행한 쿼리의 필드 목록을 보여줍니다. 아래 플롯 화면에 X축 또는 Y축으로 사용할 필드를 선택할 수 있습니다. 이 표는 결과 플롯에 영향을 줄 수 있다고 인식된 축의 종류를 보여줍니다. Y축은 숫자 타입 필드만 선택할 수 있지만 X축은 다음과 같은 필드 타입을 선택할 수 있습니다:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">날짜</span>: 문자열 포맷 &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">시간</span>: 문자열 포맷 &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">라벨</span>: 이 필드를 X축으로 선택하면 필드 값이 막대의 레이블로 표시된 막대 그래프가 생성됩니다.</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">숫자</span>: 정수 또는 실수</li></ul><p>Y 셀을 더블 클릭하면 그래프에 사용된 색을 변경할 수 있습니다.</p></body></html> + + + + Columns + 필드 + + + + X + X + + + + Y1 + Y1 + + + + Y2 + Y2 + + + + Axis Type + 축 타입 + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + 위에서 x와 y 값을 선택하면 여기에 플롯이 그려집니다. + +플롯과 테이블에서 항목을 클릭하면 선택됩니다. 여러 범위의 항목을 선택하려면 Control+클릭을 하세요. + +확대/축소를 하려면 마우스 휠을 이용하고 축 범위를 바꾸려면 마우스를 드래그하세요. + +한 방향으로만 드래그 또는 확대/축소를 하고 싶다면 축 또는 축 라벨을 선택하세요. + + + + Line type: + 행 타입: + + + + + None + 사용하지 않음 + + + + Line + + + + + StepLeft + 왼쪽으로 + + + + StepRight + 오른쪽으로 + + + + StepCenter + 중앙으로 + + + + Impulse + 임펄스(Impulse) + + + + Point shape: + 포인트 모양: + + + + Cross + 십자가 + + + + Plus + 더하기 + + + + Circle + + + + + Disc + 디스크(Disc) + + + + Square + 정사각형 + + + + Diamond + 마름모 + + + + Star + + + + + Triangle + 삼각형 + + + + TriangleInverted + 역삼각형 + + + + CrossSquare + CrossSquare + + + + PlusSquare + PlusSquare + + + + CrossCircle + CrossCircle + + + + PlusCircle + PlusCircle + + + + Peace + Peace + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>현재 플롯 저장하기...</p><p>파일 포맷 확장자를 선택하세요 (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + 현재 플롯 저장하기... + + + + + Load all data and redraw plot + 모든 데이터를 불러와서 플롯을 다시 그립니다 + + + + + + Row # + 행 # + + + + Copy + 복사 + + + + Print... + 인쇄하기... + + + + Show legend + 범례 표시 + + + + Stacked bars + 누적 막대 + + + + Date/Time + 날짜/시간 + + + + Date + 날짜 + + + + Time + 시간 + + + + + Numeric + 숫자 + + + + Label + 레이블 + + + + Invalid + 올바르지 않음 + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + 모든 데이터를 불러와서 플롯을 다시 그립니다. +주의: 이 기능은 부분만 가져오는 메커니즘으로 인하여 테이블에서 모든 데이터가 가져와지지는 않습니다. + + + + Choose an axis color + 축 색깔을 선택하세요 + + + + Choose a filename to save under + 저장하려는 파일명을 선택하세요 + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;모든 파일(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + 플롯에 있는 곡선들 중에 X축으로 정렬된 그래프만 선택한 선의 스타일을 변경할 수 있습니다. X로 표 또는 쿼리를 정렬하여 곡선을 제거하려면 '사용하지 않음'을, 곡선이 지원하는 스타일 중 하나를 선택하려면 '행'을 선택하세요. + + + + Loading all remaining data for this table took %1ms. + 테이블의 나머지 데이터를 불러오는데 %1ms가 소요되었습니다. + + + + PreferencesDialog + + + Preferences + 환경설정 + + + + &General + 일반(&G) + + + + Remember last location + 마지막 위치를 기억 + + + + Always use this location + 항상 이 위치를 사용 + + + + Remember last location for session only + 같은 세션에서만 마지막 위치를 기억 + + + + + + ... + ... + + + + Default &location + 기본 위치(&L) + + + + Lan&guage + 언어(&G) + + + + Automatic &updates + 자동 업데이트(&U) + + + + + + + + + + + + enabled + 사용하기 + + + + Show remote options + 원격 옵션 보기 + + + + &Database + 데이터베이스(&D) + + + + Database &encoding + 데이터베이스 인코딩(&E) + + + + Open databases with foreign keys enabled. + 외래키 기능을 사용하며 데이터베이스를 엽니다. + + + + &Foreign keys + 외래키(&F) + + + + Data &Browser + 데이터 보기(&B) + + + + Remove line breaks in schema &view + 스키마 뷰에서 개행을 제거합니다(&V) + + + + Prefetch block si&ze + 프리패치 할 블럭 크기(&Z) + + + + SQ&L to execute after opening database + 데이터베이스를 연 후 SQL을 실행(&L) + + + + Default field type + 기본 필드 타입 + + + + Font + 글꼴 + + + + &Font + 글꼴(&F) + + + + Content + 내용 + + + + Symbol limit in cell + 셀 안 심볼 한계 + + + + NULL + NULL + + + + Regular + 보통 + + + + Binary + 바이너리 + + + + Background + 배경색 + + + + Filters + 필터 + + + + Toolbar style + 툴바 스타일 + + + + + + + + Only display the icon + 아이콘만 표시 + + + + + + + + Only display the text + 텍스트만 표시 + + + + + + + + The text appears beside the icon + 텍스트를 아이콘 옆으로 + + + + + + + + The text appears under the icon + 텍스트가 아이콘 아래로 + + + + + + + + Follow the style + 애플리케이션 스타일 적용 + + + + DB file extensions + 데이터베이스 파일 확장자 + + + + Manage + 관리 + + + + Main Window + 메인 창 + + + + Database Structure + 데이터베이스 구조 + + + + Browse Data + 데이터 보기 + + + + Execute SQL + SQL 실행 + + + + Edit Database Cell + 데이터베이스 셀 수정 + + + + When this value is changed, all the other color preferences are also set to matching colors. + 이 값이 변경되면 다른 모든 색상들도 이에 일치하는 색상으로 설정됩니다. + + + + Follow the desktop style + 데스크톱 스타일 적용 + + + + Dark style + 어둡게 + + + + Application style + 애플리케이션 스타일 + + + + This sets the font size for all UI elements which do not have their own font size option. + 개별 글꼴 크기 옵션이 없는 모든 UI 요소의 글꼴 크기를 설정합니다. + + + + Font size + 글꼴 크기 + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + 활성화되면 DB 구조 탭의 스키마 열에서 줄 바꿈, 독 및 인쇄된 출력이 제거됩니다. + + + + Database structure font size + 데이터베이스 구조 글꼴 크기 + + + + Font si&ze + 글꼴 크기(&Z) + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + 연산이 많이 걸리는 일부 기능을 활성화하는데 허용되는 최대 항목 수입니다. +열의 현재 값을 기반으로 값 완성을 활성화하기 위한 테이블의 최대 행의 갯수입니다. +합계 및 평균을 계산하려는 선택 항목의 최대 인덱스 수입니다. +기능 비활성화하려면 0으로 설정하세요. + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + 열의 현재 값을 기반으로 값 완성을 활성화하기 위한 테이블의 최대 행 수입니다. +비활성화하려면 0으로 설정하세요. + + + + Close button on tabs + 탭에 닫기 버튼 + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + 활성화되면 SQL 편집기 탭에 닫기 버튼이 생깁니다. 어떤 경우든 컨텍스트 메뉴나 키보드 단축기를 사용하여 닫을 수 있습니다. + + + + Proxy + 프록시 + + + + Configure + 설정 + + + + Field display + 필드 출력 + + + + Displayed &text + 출력 텍스트(&T) + + + + + + + + + Click to set this color + 선택하여 이 색상을 선택하세요 + + + + Text color + 글자색 + + + + Background color + 배경색 + + + + Preview only (N/A) + 미리보기만 출력 (N/A) + + + + Escape character + 이스케이프 문자 + + + + Delay time (&ms) + 대기 시간 (&ms) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + 새로운 필터 값을 적용하기 전에 대기할 시간을 설정하세요. 대기 시간을 0으로 하면 대기하지 않습니다. + + + + &SQL + SQL(&S) + + + + Settings name + 설정 이름 + + + + Context + 내용 + + + + Colour + 색깔 + + + + Bold + 진하게 + + + + Italic + 기울게 + + + + Underline + 밑줄 + + + + Keyword + 키워드 + + + + Function + 함수 + + + + Table + 테이블 + + + + Comment + 주석 + + + + Identifier + 식별자 + + + + String + 문자열 + + + + Current line + 현재 행 + + + + SQL &editor font size + SQL 에디터 글꼴 크기(&E) + + + + Tab size + 탭 크기 + + + + &Wrap lines + 줄 바꿈(&W) + + + + Never + 사용 안 함 + + + + At word boundaries + 단어 경계에서 + + + + At character boundaries + 문자 경계에서 + + + + At whitespace boundaries + 공백에서 + + + + &Quotes for identifiers + 식별자 구분 기호(&Q) + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + SQL 코드의 식별자에 대해 응용 프로그램에서 사용하는 기호를 선택합니다. + + + + "Double quotes" - Standard SQL (recommended) + "큰 따옴표" - SQL 표준 (권장됨) + + + + `Grave accents` - Traditional MySQL quotes + '작은 따옴표' - MySQL 전통 인용 부호 + + + + [Square brackets] - Traditional MS SQL Server quotes + [대괄호] - MS SQL 전통 인용 부호 + + + + Keywords in &UPPER CASE + 키워드에 대해 대문자(&U) + + + + When set, the SQL keywords are completed in UPPER CASE letters. + 활성화되면 SQL 키워드가 대문자로 완성됩니다. + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + 활성화되면 마지막 실행 중에 오류를 일으킨 SQL 코드 줄이 강조 표시되고 결과 프레임은 백그라운드에 오류를 나타냅니다 + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html><head/><body><p>SQLite는 공유 라이브러리 파일에서 확장을 로드하기 위한 SQL 함수를 제공합니다. SQL 코드에서 <span style=" font-style:italic;">load_extension()</span> 함수를 사용하려면 이 기능을 활성화하십시오.</p><p>보안 상의 이유로 확장 로드는 기본적으로 비활성화되어 있으며 설정을 통해 활성화해야 합니다. 이 옵션이 비활성화되어 있더라도 항상 GUI를 통해 확장을 로드할 수 있습니다.</p></body></html> + + + + Allow loading extensions from SQL code + SQL 코드에서 확장기능을 불러오는 것을 허용 + + + + Remote + 원격 + + + + CA certificates + CA 인증서 + + + + + Subject CN + 제목 CN + + + + Common Name + 일반 이름 + + + + Subject O + 제목 O + + + + Organization + 기관 + + + + + Valid from + 유효날짜(시작) + + + + + Valid to + 유효날짜(끝) + + + + + Serial number + 시리얼 넘버 + + + + Your certificates + 당신의 인증서 + + + + File + 파일 + + + + Subject Common Name + 주제 일반 이름 + + + + Issuer CN + 이슈 등록자 CN + + + + Issuer Common Name + 이슈 등록자 일반 이름 + + + + Clone databases into + 데이터베이스 복제하기 + + + + SQL editor &font + SQL 편집기 글꼴(&F) + + + + Error indicators + 에러 표시 + + + + Hori&zontal tiling + 화면 수평 나누기(&Z) + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + 활성화되면 SQL 코드 편집기와 결과 테이블 뷰가 나란히 표시됩니다. + + + + Code co&mpletion + 코드 완성(&M) + + + + Threshold for completion and calculation on selection + 선택에 대한 완료 및 연산 임계 값 + + + + Show images in cell + 셀에 이미지 표시 + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + 셀에 이미지 데이터가 포함된 BLOB의 미리보기를 표시하려면 이 옵션을 활성화합니다. 그러나 이는 데이터 브라우저의 성능에 영향을 끼칠 수 있습니다. + + + + Foreground + 전경색 + + + + SQL &results font size + SQL 결과 글꼴 크기(&R) + + + + &Extensions + 확장기능(&E) + + + + Select extensions to load for every database: + 불러올 확장기능을 선택하세요(확장기능은 모든 데이터베이스에 반영됩니다): + + + + Add extension + 확장기능 추가 + + + + Remove extension + 확장기능 제거 + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>SQLite에서는 기본적으로 정규 표현식 기능을 제공하지 않습니다만 애플리케이션을 실행하여 호출하는 것은 가능합니다. DB Browser for SQLite에서는 이 알고리즘을 박스 밖에서도 정규 표현식을 사용할 수 있도록 이 알고리즘을 구현해줍니다. 하지만 확장기능을 사용하여 외부에서 만든 알고리즘 구현을 사용하고자 한다면 DB Browser for SQLite에서 제공하는 구현 사용을 자유롭게 끌 수 있습니다. 이 기능은 애플리케이션을 재시작해야 합니다.</p></body></html> + + + + Disable Regular Expression extension + 정규 표현식 확장기능 비활성화 + + + + + Choose a directory + 디렉터리를 선택하세요 + + + + The language will change after you restart the application. + 언어 변경은 애플리케이션을 재시작해야 반영됩니다. + + + + Select extension file + 확장기능 파일을 선택하세요 + + + + Extensions(*.so *.dylib *.dll);;All files(*) + 확장기능(*.so *.dylib *dll);;모든 파일(*) + + + + Import certificate file + 인증서 파일 가져오기 + + + + No certificates found in this file. + 이 파일에는 인증서가 없습니다. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + 정말로 이 인증서를 삭제하겠습니까? 애플리케이션 설정에서 모든 증명 데이터가 삭제될 것입니다! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + 저장된 모든 설정을 정말로 초기화하시겠습니까? +모든 설정이 초기화되고 기본값으로 대체됩니다. + + + + ProxyDialog + + + Proxy Configuration + 프록시 설정 + + + + Pro&xy Type + 프록시 종류(&X) + + + + Host Na&me + 서버 주소(&M) + + + + Port + 포트 + + + + Authentication Re&quired + 인증 정보 필요(&Q) + + + + &User Name + 사용자명(&U) + + + + Password + 암호 + + + + None + 사용하지 않음 + + + + System settings + 시스템 설정 + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + Error importing data + 데이터 가져오기 에러 + + + + from record number %1 + 레코드 넘버: %1 + + + + . +%1 + . +%1 + + + + Importing CSV file... + CSV 파일 가져오기... + + + + Cancel + 취소 + + + + All files (*) + 모든 파일(*) + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + SQLite 데이터베이스 파일(*.db *.sqlite *.sqlite3 *.db3) + + + + Left + 왼쪽 + + + + Right + 오른쪽 + + + + Center + 중앙 + + + + Justify + 정렬 + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + SQLite 데이터베이스 파일 (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + DB Browser for SQLite 프로젝트 파일 (*.sqbpro) + + + + SQL Files (*.sql) + SQL 파일 (*.sql) + + + + All Files (*) + 모든 파일 (*) + + + + Text Files (*.txt) + 텍스트 파일 (*.txt) + + + + Comma-Separated Values Files (*.csv) + 쉼표로 구분된 파일 (*.csv) + + + + Tab-Separated Values Files (*.tsv) + 탭으로 분리된 파일 (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + 구분자로 구분된 파일 (*.dsv) + + + + Concordance DAT files (*.dat) + Concordance DAT 파일 (*.dat) + + + + JSON Files (*.json *.js) + JSON 파일 (*.json *.js) + + + + XML Files (*.xml) + XML 파일 (*.xml) + + + + Binary Files (*.bin *.dat) + 바이너리 파일 (*bin *.dat) + + + + SVG Files (*.svg) + SVG 파일 (*.svg) + + + + Hex Dump Files (*.dat *.bin) + Hex 덤프 파일 (*.dat *bin) + + + + Extensions (*.so *.dylib *.dll) + 확장기능 (*.so *.dylib *.dll) + + + + RemoteCommitsModel + + + Commit ID + 커밋 ID + + + + Message + 메시지 + + + + Date + 날짜 + + + + Author + 저자 + + + + Size + 크기 + + + + Authored and committed by %1 + %1에 의해 작성되고 커밋됨 + + + + Authored by %1, committed by %2 + %1에 의해 작성되고, %2에 의해 커밋됨 + + + + RemoteDatabase + + + Error opening local databases list. +%1 + 로컬 데이터베이스 목록을 열던 중 에러가 발생했습니다. %1 + + + + Error creating local databases list. +%1 + 로컬 데이터베이스 목록을 생성하던 중 에러가 발생했습니다. %1 + + + + RemoteDock + + + Remote + 원격 + + + + Local + 로컬 + + + + Identity + 신원 + + + + Push currently opened database to server + 현재 열린 데이베이스를 서버로 반영합니다 + + + + DBHub.io + DBHub.io + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + <html><head/><body><p>이 창에서는 DBHub.io 웹 사이트의 원격 데이터베이스를 DB Browser for SQLite에 추가할 수 있습니다.</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">DBHub.io 웹 사이트에 로그인(원하시면 GitHub 자격 증명을 사용할 수 있습니다)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">버튼을 클릭하여 &quot;클라이언트 인증서 생성&quot; (당신의 신원 정보). 그러면 인증서 파일이 제공됩니다(로컬 디스크에 저장)</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">DB Browser for SQLite 설정의 원격 탭으로 이동합니다. 버튼을 클릭하여 DB Browser for SQLite에 새 인증서를 추가하고 방금 다운로드한 인증서 파일을 선택합니다.</li></ol><p>이제 원격 패널에 ID가 표시되고 원격 데이터베이스를 추가할 수 있습니다.</p></body></html> + + + + Current Database + 현재 데이터베이스 + + + + Clone + 복제 + + + + User + 사용자 + + + + Database + 데이터베이스 + + + + Branch + 브랜치 + + + + Commits + 커밋 + + + + Commits for + 커밋 조회할 브랜치 + + + + Delete Database + 데이터베이스 삭제 + + + + Delete the local clone of this database + 이 데이터베이스의 로컬 복제본 삭제 + + + + Open in Web Browser + 웹 브라우저에서 열기 + + + + Open the web page for the current database in your browser + 브라우저에서 현재 데이터베이스의 웹 페이지를 엽니다 + + + + Clone from Link + 주소로부터 복제 + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + 이를 사용하여 로컬 편집을 위해 데이터베이스의 웹 페이지에서 제공된 URL을 사용하여 원격 데이터베이스를 다운로드 합니다. + + + + Refresh + 새로고침 + + + + Reload all data and update the views + 모든 데이터를 다시 로드하고 뷰를 업데이트합니다 + + + + F5 + + + + + Clone Database + 데이터베이스 복제 + + + + Open Database + 데이터베이스 열기 + + + + Open the local copy of this database + 이 데이터베이스의 로컬 복제본을 엽니다 + + + + Check out Commit + 커밋 체크아웃 + + + + Download and open this specific commit + 이 특정 커밋을 다운로드하여 엽니다 + + + + Check out Latest Commit + 최신 커밋 확인 + + + + Check out the latest commit of the current branch + 이 브랜치의 최신 커밋 확인 + + + + Save Revision to File + 리비전을 파일에 저장 + + + + Saves the selected revision of the database to another file + 데이터베이스의 선택한 리비전을 다른 파일에 저장합니다 + + + + Upload Database + 데이터베이스 업로드 + + + + Upload this database as a new commit + 이 데이터베이스를 새 커밋으로 업로드 + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html><head/><body><p>현재 기본으로 제공되는 읽기 전용 ID를 사용하고 있습니다. 데이터베이스를 업로드하려면 DBHub.io 계정을 구성하고 사용해야 합니다.</p><p>아직 DBHub.io 계정이 없으십니까? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">지금 만들어</span></a> 인증서를 가져옵니다. <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">여기</span></a>에서 데이터베이스를 공유하세요.</p><p>온라인 도움말을 보려면 <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">여기</span></a>를 방문하세요.</p></body></html> + + + + Back + 뒤로가기 + + + + Select an identity to connect + 연결할 ID를 선택하세요 + + + + Public + 공개 + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + 로컬 편집을 위해 원격 서버에서 데이터베이스를 다운로드합니다. +복제하려는 URL을 입력하세요. 데이터베이스의 웹 페이지에서 +'DB4S에서 데이터베이스 복제' 버튼을 클릭하여 +이러한 URL을 생성할 수 있습니다. + + + + Invalid URL: The host name does not match the host name of the current identity. + 잘못된 URL: 호스트 이름이 현재 ID의 호스트 이름과 일치하지 않습니다. + + + + Invalid URL: No branch name specified. + 잘못된 URL: 지정된 브랜치 이름이 없습니다. + + + + Invalid URL: No commit ID specified. + 잘못된 URL: 커밋 ID가 지정되지 않았습니다. + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + 데이터베이스의 로컬 복제본을 수정했습니다. 이 커밋을 가져오면 이러한 로컬 변경 사항이 무시됩니다. +계속하시겠습니까? + + + + The database has unsaved changes. Are you sure you want to push it before saving? + 데이터베이스에 저장되지 않은 변경 사항이 있습니다. 저장하기 전에 푸시하시겠습니까? + + + + The database you are trying to delete is currently opened. Please close it before deleting. + 삭제하려는 데이터베이스가 현재 열려있습니다. 삭제하기 전에 닫으십시오. + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + 이렇게하면 아직 커밋하지 않은 모든 변경 사항과 함께 이 데이터베이스의 로컬 버전이 삭제됩니다. 정말로 데이터베이스를 삭제하시겠습니까? + + + + RemoteLocalFilesModel + + + Name + 이름 + + + + Branch + 브랜치 + + + + Last modified + 마지막 수정일 + + + + Size + 크기 + + + + Commit + 커밋 + + + + File + 파일 + + + + RemoteModel + + + Name + 이름 + + + + Last modified + 마지막 수정 + + + + Size + 크기 + + + + Commit + 커밋 + + + + Size: + 크기: + + + + Last Modified: + 마지막 수정: + + + + Licence: + 라이센스: + + + + Default Branch: + 기본 브랜치: + + + + RemoteNetwork + + + Choose a location to save the file + 파일을 저장할 위치를 선택하세요 + + + + Error opening remote file at %1. +%2 + %1 에 있는 원격 파일을 열던 중 에러가 발생했습니다. +%2 + + + + Error: Invalid client certificate specified. + 에러: 올바르지 않은 클라이언트 인증서입니다. + + + + Please enter the passphrase for this client certificate in order to authenticate. + 인증을 위한 클라이언트 인증서 암호를 입력해주세요. + + + + Cancel + 취소 + + + + Uploading remote database to +%1 + %1로 +원격 데이터베이스를 업로드 중입니다 + + + + Downloading remote database from +%1 + %1 에서 원격 데이터베이스를 다운로드 중입니다. {1?} + + + + + Error: The network is not accessible. + 에러: 네트워크에 접근할 수 없습니다. + + + + Error: Cannot open the file for sending. + 에러: 보내려는 파일을 열 수 없습니다. + + + + RemotePushDialog + + + Push database + 데이터베이스 푸시(Push) + + + + Database na&me to push to + 푸시할 데이터베이스 이름(&M) + + + + Commit message + 커밋 메시지 + + + + Database licence + 데이터베이스 라이센스 + + + + Public + 공개 + + + + Branch + 브랜치 + + + + Force push + 강제 푸시 + + + + Username + 사용자명 + + + + Database will be public. Everyone has read access to it. + 공개 데이터베이스로 지정합니다. 누구나 읽기 접근이 가능합니다. + + + + Database will be private. Only you have access to it. + 비공개 데이터베이스로 지정합니다. 당신만 접근할 수 있습니다. + + + + Use with care. This can cause remote commits to be deleted. + 주의해서 사용하세요. 원격 커밋을 삭제하는 결과를 초래할 수 있습니다. + + + + RunSql + + + Execution aborted by user + 사용자에 의해서 실행이 취소되었습니다 + + + + , %1 rows affected + , %1 행이 영향 받았습니다 + + + + query executed successfully. Took %1ms%2 + %2 데이터베이스에 쿼리가 성공적으로 실행되었습니다. %1ms 걸렸습니다 + + + + executing query + 쿼리 실행 중 + + + + SelectItemsPopup + + + A&vailable + 사용 가능한(&V) + + + + Sele&cted + 선택됨(&C) + + + + SqlExecutionArea + + + Form + + + + + Find previous match [Shift+F3] + 이전 찾기 [Shift+F3] + + + + Find previous match with wrapping + 랩핑(Wrapping)된 이전 일치내역 검색하기 + + + + Shift+F3 + + + + + The found pattern must be a whole word + 온전한 낱말 일치 검색패턴 + + + + Whole Words + 온전한 낱말 일치 + + + + Text pattern to find considering the checks in this frame + 이 프레임 안에서 확인하기 위해 검색하고자 하는 문자열 패턴 + + + + Find in editor + 편집기 내에서 찾기 + + + + The found pattern must match in letter case + 대소문자 일치 검색패턴 + + + + Case Sensitive + 대소문자 일치 + + + + Find next match [Enter, F3] + 다음 찾기 [Enter,F3] + + + + Find next match with wrapping + 랩핑(Wrapping)으로 다음 찾기 + + + + F3 + + + + + Interpret search pattern as a regular expression + 검색 패턴 정규 표현식 사용 + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>선택하면 찾을 패턴이 UNIX 정규 표현식으로 해석됩니다. <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>를 참고하십시오.</p></body></html> + + + + Regular Expression + 정규 표현식 + + + + + Close Find Bar + 검색바 닫기 + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html><head/><body><p>마지막으로 실행된 명령문의 결과입니다.</p><p>이 패널을 축소하고 대신 <span style=" font-style:italic;">사용자</span> 선택과 함께 <span style=" font-style:italic;">SQL 로그</span> 독을 사용할 수 있습니다.</p></body></html> + + + + Results of the last executed statements + 가장 최근 실행 구문 결과 + + + + This field shows the results and status codes of the last executed statements. + 이 필드는 가장 최근에 실행된 구문의 결과와 상태 코드를 보여줍니다. + + + + Couldn't read file: %1. + 파일을 읽을 수 없습니다: %1. + + + + + Couldn't save file: %1. + 파일을 저장할 수 없습니다: %1. + + + + Your changes will be lost when reloading it! + 다시 불러오면 변경 사항을 잃습니다! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + "%1" 파일이 다른 프로그램에 의해 수정되었습니다. 다시 불러오겠습니까?%2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) abs(X) 함수는 숫자 매개변수 X의 절대값을 반환합니다. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () changes() 함수는 가장 최근에 실행된 INSERT, DELETE, UPDATE 구문에서 데이터베이스에서 변경되거나 추가되거나 삭제된 행 수를 반환합니다. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) char(X1,X2,...,XN) 함수는 각각의 X1에서 XN 숫자 값의 유니코드 포인트 값을 가진 문자들로 구성된 문자열을 반환합니다. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) coalesce() 함수는 첫번째 NULL이 아닌 인자 값의 사본을 반환합니다. 만약 인자 값이 모두 NULL이라면 NULL을 반환합니다 + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) glob(X,Y) 함수는 "Y GLOB X" 표현식과 같습니다. + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) ifnull() 함수는 첫번째 NULL이 아닌 인자 값의 사본을 반환합니다. 만약 인자값 둘 다 NULL이라면 NULL을 반환합니다. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) instr(X,Y) 함수는 문자열 X에서 문자열 Y가 있다면 첫 글자 위치 + 1 값을 리턴합니다. 만약 문자열 X에서 문자열 Y가 발견되지 않는다면 0을 반환합니다. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) hex() 함수는 매개변수를 BLOB으로 변환한 후 blob의 내용을 대문자 16진수 문자열로 변환하여 반환합니다. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () last_insert_rowid() 함수는 함수가 호출된 데이터베이스 연결에서 가장 최근에 추가된 행의 ROWID를 반환합니다. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) 문자열 변수 X를 위한 것으로 length(X) 함수는 첫 번째 NUL 문자를 만날 때까지의 (바이트 수가 아닌)문자 수를 반환합니다. + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X,Y) like() 함수는 "Y LIKE X" 표현식을 구현하기위해 사용합니다. + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) like() 함수는 "Y LIKE X ESCAPE Z" 표현식을 구현하기 위해 사용합니다. + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) load_extension(X) 함수는 X라는 공유 라이브러리 파일에서 SQLite 확장을 로드합니다. +이 기능의 사용은 환경설정에서 승인하여야 합니다. + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X,Y) The load_extension(X) 함수는 진입점 Y를 사용하여 X라는 공유 라이브러리 파일에서 SQLite 확장을 로드합니다. +이 기능의 사용은 환경설정에서 승인되어야 합니다. + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) lower(X) 함수는 문자열 X에서 모든 ASCII 문자를 소문자로 변경한 문자열 사본을 반환합니다. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ltrim(X) 함수는 X의 좌측의 공백 여백을 제거합니다. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) ltrim(X,Y) 함수는 X의 좌측에서 Y에 있는 모든 문자를 제거한 문자열을 반환합니다. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) 다중 인자를 제공하는 max() 함수는 주어진 인자 값 중에서 가장 큰 값을 반환합니다. 만약 주어진 인자 중에 NULL 값이 하나라도 있으면 NULL을 반환합니다. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) 다중 인자를 제공하는 min() 함수는 주어진 인자 값 중에서 가장 작은 값을 반환합니다. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + Y) nullif(X,Y) 함수는 두 인자 값이 서로 다르면 X를 반환하고 두 인자 값이 같으면 NULL을 반환합니다. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) printf(FORMAT,...) SQL 함수는 sqlite3_mprintf() C-언어 함수와 표준 C 라이브러리에서의 printf() 함수처럼 동작합니다. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) quote(X) 함수는 X를 SQL문 안에 포함되기에 적절하도록 SQL 리터럴 문자열로 반환합니다. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () random() 함수는 -9223372036854775808와 +9223372036854775807 사이의 pseudo-랜덤 정수를 반환합니다. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) randomblob(N) 함수는 psedo-랜덤 바이트를 포함한 N-바이트 blob을 반환합니다. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) replace(X,Y,Z) 함수는 문자열 X에 있는 모든 문자열 Y를 Z로 치환한 문자열을 반환합니다. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) round(X) 함수는 부동소수점 값 X를 0의 자리에서 반올림한 값을 반환합니다. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) round(X,Y) 함수는 부동소수점 값 X를 소수점 우측에서 Y자리에서 반올림한 값을 반환합니다. + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) rtrim(X)은 X의 우측 공백을 제거합니다. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) rtrim(X,Y) 함수는 X의 우측에서 Y에 있는 모든 문자를 삭제한 문자열을 반환합니다. + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) soundex(X) 함수는 문자열 X의 사운덱스(Soundex) 인코딩 문자열을 반환합니다. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) substr(X,Y) 함수는 문자열 X에서 Y번째부터 끝까지 모든 문자열을 반환합니다. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y,Z) substr(X,Y,Z) 함수는 문자열 X에서 Y번째 문자부터 Z문자 수만큼 반환합니다. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () total_changes() 함수는 현재 데이터베이스 연결이 열린 후 INSERT, UPDATE, DELETE 구문에 의해서 변경된 레코드 행 수를 반환합니다. + + + + (X) trim(X) removes spaces from both ends of X. + (X) trim(X) 함수는 X의 양쪽 공백을 제거합니다. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) trim(X,Y) 함수는 X의 양끝에서 Y에 해당하는 문자들을 삭제한 문자열을 반환합니다. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) typeof(X) 함수는 표현식 X의 데이터 타입을 나타내는 문자열을 반환합니다. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) unicode(X) 함수는 문자열 X의 첫 글자에 해당하는 숫자 유니코드 포인트를 반환합니다. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) upper(X) 함수는 입력 문자열 X에서 ASCII 문자에 해당하는 글자를 대문자로 변경한 문자열 사본을 반환합니다. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) zeroblob(N) 함수는 N 바이트의 0x00으로 이루어진 BLOB을 구성하여 반환합니다. + + + + + + + (timestring,modifier,modifier,...) + (timestring,modifier,modifier,...) + + + + (format,timestring,modifier,modifier,...) + (format,timestring,modifier,modifier,...) + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) avg() 함수는 그룹에서 모든 NULL이 아닌 X의 값의 평균을 반환합니다. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) count(X) 함수는 그룹에서 NULL이 아닌 개수를 세어 반환합니다. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) group_concat() 함수는 X의 모든 NULL이 아닌 값들의 문자열로 합쳐서 반환합니다. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) group_concat() 함수는 X의 모든 NULL이 아닌 값들의 문자열로 합쳐서 반환합니다. 만약 매개변수 Y가 있다면 값들을 문자열로 합칠 때 구분자로 사용합니다. + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) max() 집계 함수는 그룹에서 모든 값들 중 가장 큰 값을 반환합니다. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) min() 집계 함수는 그룹에서 NULL이 아닌 모든 값들 중 가장 작은 값을 반환합니다. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) sum(x)과 total() 집계 함수는 그룹의 모든 NULL이 아닌 값들의 합을 반환합니다. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () 현재 파티션 내의 행 번호입니다. 행은 창 정의의 ORDER BY 절에 정의된 순서대로 1부터 시작하거나 임의의 순서로 번호가 지정됩니다. + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () 각 그룹의 첫 번째 피어의 row_number ()-간격이 있는 현재 행의 순위. ORDER BY 절이 없으면 모든 행이 피어로 간주되고 이 함수는 항상 1을 반환합니다. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () 파티션 내 현재 행의 피어 그룹 번호 - 간격이 없는 현재 행의 순위, 파티션은 창 정의의 ORDER BY절에 정의된 순서대로 1부터 시작됩니다. ORDER BY 절이 없으면 모든 행이 피어로 간주되어 이 함수는 항상 1을 반환합니다. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () 이름에도 불구하고 이 함수는 항상 (rank - 1)/(partition-rows - 1)과 같은 0.0에서 1.0 사이의 값을 반환합니다. 여기서 rank는 내장 창 함수 rank() 및 partition에서 반환한 값입니다. rows는 파티션의 총 행 수 입니다. 파티션에 행이 하나만 포함된 경우 이 함수는 0.0을 반환합니다. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () 누적 분포. row-number/partition-rows로 계산됩니다. 여기서 row-number는 그룹의 마지막 피어에 대해 row_number()에서 반환한 값이고 partition-rows는 파티션의 행 수입니다. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) 인자 N은 정수로 취급됩니다. 이 함수는 ORDER BY 구문이 있다면 그 순서대로, 없다면 임의의 순서로 가능하면 균등하게 N개의 그룹으로 나누고 각 그룹에 1부터 N 사이의 정수를 할당합니다. 필요한 경우 큰 그룹이 먼저 나옵니다. 이 함수는 현재 행이 속해있는 그룹이 할당된 정수를 반환합니다. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) 파티션의 이전 행에 대해 expr 표현식을 평가한 결과를 반환합니다. 또는 이전 행이 없는 경우(현재 행이 첫번째일 때) NULL 반환됩니다. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr,offset) offset 인수가 제공되면 음이 아닌 정수여야합니다. 이 경우 반환된 값은 파티션 내의 현재 행 이전에 행 오프셋 행에 대해 expr를 평가한 결과입니다. 오프셋이 0이면 expr이 현재 행에 대해 평가됩니다. 현재 행 앞에 행 오프셋 행이 없으면 NULL이 반환됩니다. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,offset,default) default도 제공되면 offset으로 식별된 행이 존재하지 않았을 때 NULL 대신 반환됩니다. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) 파티션의 다음 행에 대해 expr 표현식을 평가한 결과를 반환합니다. 또는 다음 행이 없는 경우(현재 행이 마지막 행일 때) NULL이 반환됩니다. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,offset) offset 인수가 제공되면 음이 아닌 정수여야 합니다. 이 경우 반환된 값은 파티션 내에서 현재 행 뒤에 있는 행 오프셋 행에 대해 expr을 평가한 결과입니다. 오프셋이 0이면 expr이 현재 행에 대해 평가됩니다. 현재 행 뒤에 행 오프셋 행이 없으면 NULL이 반환됩니다. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr)이 내장 창 함수는 집계 창 함수와 동일한 방식으로 각 행의 창 프레임을 계산합니다. 각 행의 창 프레임에서 첫 번째 행에 대해 평가된 expr의 값을 리턴합니다. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr)이 내장 창 함수는 집계 창 함수와 동일한 방식으로 각 행의 창 프레임을 계산합니다. 각 행의 창 프레임에서 마지막 행에 대해 평가 된 expr의 값을 리턴합니다. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr,N)이 내장 창 함수는 집계 창 함수와 동일한 방식으로 각 행의 창 프레임을 계산합니다. 창 프레임의 N 행에 대해 평가 된 expr의 값을 리턴합니다. 행은 ORDER BY 절에 정의 된 순서대로 1부터 시작하여 창 프레임 내에서 번호가 매겨집니다. 그렇지 않으면 임의의 순서로 번호가 매겨집니다. 파티션에 N 번째 행이 없으면 NULL이 반환됩니다. + + + + SqliteTableModel + + + reading rows + 행을 읽는 중 + + + + loading... + 로딩 중... + + + + References %1(%2) +Hold %3Shift and click to jump there + 참조 %1(%2) +%3Shift를 누른 상태에서 이동하고자 하는 곳을 클릭하세요 + + + + Error changing data: +%1 + 데이터 수정 에러: +%1 + + + + retrieving list of columns + 컬럼은 필드로 표현합니다. + 필드 목록 가져오기 + + + + Fetching data... + 데이터를 가져오는 중입니다... + + + + + Cancel + 취소 + + + + TableBrowser + + + Browse Data + 데이터 탐색 + + + + &Table: + 테이블(&T): + + + + Select a table to browse data + 탐색하려는 데이터가 있는 테이블을 선택하세요 + + + + Use this list to select a table to be displayed in the database view + 리스트에서 테이블을 선택하면 데이터베이스 뷰에서 볼 수 있습니다 + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + 이것은 데이터베이스의 테이블 뷰입니다. 다음 작업을 수행할 수 있습니다: + - 값을 인라인으로 편집하기 위한 작성을 시작합니다. + - 셀 편집기 창에서 내용을 편집하려면 레코드를 더블 클릭합니다. + - 셀 내용을 NULL 값으로 삭제하려면 Alt+Del + - Ctrl + "는 현재 레코드를 복제합니다. + - 위의 셀에서 값을 복사하려면 Ctrl + ' + - 표준 선택 및 복사 / 붙여넣기 작업. + + + + Text pattern to find considering the checks in this frame + 이 프레임 안에서 확인하기 위해 검색하고자 하는 문자열 패턴 + + + + Find in table + 테이블에서 찾기 + + + + Find previous match [Shift+F3] + 이전 찾기 [Shift+F3] + + + + Find previous match with wrapping + 랩핑된 이전 일치내역 검색하기 + + + + Shift+F3 + + + + + Find next match [Enter, F3] + 다음 찾기 [Enter, F3] + + + + Find next match with wrapping + 랩핑(Wrapping)으로 다음 찾기 + + + + F3 + + + + + The found pattern must match in letter case + 대소문자 일치 검색패턴 + + + + Case Sensitive + 대소문자 일치 + + + + The found pattern must be a whole word + 온전한 낱말 일치 검색패턴 + + + + Whole Cell + 전체 셀 + + + + Interpret search pattern as a regular expression + 검색 패턴을 정규 표현식으로 해석 + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>선택하면 찾으려는 패턴이 UNIX 정규식으로 해석됩니다. <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>을 참고하세요.</p></body></html> + + + + Regular Expression + 정규 표현식 + + + + + Close Find Bar + 검색바 닫기 + + + + Text to replace with + 바꾸려는 텍스트 + + + + Replace with + ~로 바꾸기 + + + + Replace next match + 일치하는 다음 텍스트 바꾸기 + + + + + Replace + 바꾸기 + + + + Replace all matches + 일치하는 모든 텍스트 바꾸기 + + + + Replace all + 모두 바꾸기 + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>첫 페이지로 갑니다.</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>테이블 뷰 맨 위로 가기 위해서는 이 버튼을 클릭하세요.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + 한 페이지 위로 스크롤합니다 + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>위 테이블 뷰에서 레코드를 한 페이지 앞으로 가려면 이 버튼을 클릭하세요.</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 of 0 + + + + Scroll one page downwards + 한 페이지 아래로 스크롤합니다 + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>위 테이블 뷰에서 레코드를 한 페이지 뒤로 가려면 이 버튼을 클릭하세요.</p></body></html> + + + + > + > + + + + Scroll to the end + 마지막 페이지로 이동 + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + <html><head/><body><p>테이블 뷰 맨 아래로 가기 위해서는 이 버튼을 클릭하세요.</p></body></html> + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>특정 레코드로 이동하려면 여기를 클릭하세요</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>이 버튼은 특정 위치의 레코드 넘버로 가기 위해서 사용합니다.</p></body></html> + + + + Go to: + 특정 레코드 행으로 가기: + + + + Enter record number to browse + 찾을 레코드 행 번호를 입력하세요 + + + + Type a record number in this area and click the Go to: button to display the record in the database view + 레코드 행 번호를 입력하고 '특정 레코드 행으로 가기:' 버튼을 클릭하면 데이터베이스 뷰에 레코드가 표시됩니다 + + + + 1 + 1 + + + + Show rowid column + 컬럼의 rowid 표시하기 + + + + Toggle the visibility of the rowid column + rowid 컬럼을 표시하거나 숨깁니다 + + + + Unlock view editing + 뷰 수정 잠금 해제하기 + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + 수정을 위하여 현재 뷰의 잠금을 해제합니다. 하지만 수정을 위해서는 적절한 트리거가 필요할 것입니다. + + + + Edit display format + 표시 형식 변경 + + + + Edit the display format of the data in this column + 이 컬럼에 있는 데이터의 표시 형식을 수정합니다 + + + + + New Record + 새 레코드 + + + + + Insert a new record in the current table + 현재 테이블에 새 레코드를 추가합니다 + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>이 버튼은 데이터베이스에 새 레코드를 생성합니다.</p><ul><li><span style=" font-weight:600;">새 레코드</span>: 데이터베이스의 기본값으로 새 레코드를 생성합니다.</li><li><span style=" font-weight:600;">값 삽입...</span>: 데이터베이스에 값을 삽입하기 전에 값을 입력할 수 있는 대화상자를 엽니다. 이를 통해 다양한 제약 조건에 충족하는 값을 입력할 수 있습니다. 이러한 제약으로 인해 <span style=" font-weight:600;">새 레코드</span> 옵션이 실패한 경우에도 이 대화상자가 열립니다.</li></ul></body></html> + + + + + Delete Record + 레코드 삭제 + + + + Delete the current record + 현재 레코드 삭제하기 + + + + + This button deletes the record or records currently selected in the table + 이 버튼은 테이블에서 현재 선택된 레코드를 삭제합니다 + + + + + Insert new record using default values in browsed table + 현재 탐색한 테이블의 기본값을 사용하여 새 레코드 삽입 + + + + Insert Values... + 값 추가... + + + + + Open a dialog for inserting values in a new record + 새 레코드의 값을 삽입하기 위한 대화상자를 엽니다 + + + + Export to &CSV + CSV로 내보내기(&C) + + + + + Export the filtered data to CSV + 필러링된 데이터를 CSV로 내보내기 + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + 이 버튼은 현재 표시된대로(필터, 표시 형식 및 열 순서) 탐색된 테이블의 데이터를 CSV 파일로 내보냅니다. + + + + Save as &view + 뷰로 저장하기(&V) + + + + + Save the current filter, sort column and display formats as a view + 현재 필터, 열 정렬 및 표시 형식을 뷰로 저장 + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + 이 버튼은 검색된 테이블의 현재 설정(필터, 표시 형식 및 열 순서)을 나중에 SQL 문에서 검색하거나 사용할 수 있는 SQL 뷰로 저장합니다. + + + + Save Table As... + 다른 이름으로 테이블 저장... + + + + + Save the table as currently displayed + 현재 출력된 형태로 테이블 저장 + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>이 팝업 메뉴는 현재 탐색 및 필터링된 표에 적용되는 다음 옵션을 제공합니다.</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">CSV로 내보내기: 이 옵션은 현재 표시된대로(필터, 표시 형식 및 열 순서) 탐색된 테이블의 데이터를 CSV 파일로 내보냅니다.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">뷰로 저장: 이 옵션은 검색된 테이블의 현재 설정(필터, 표시 형식 및 열 순서)을 나중에 SQL 문에서 검색하거나 사용할 수 있는 SQL 뷰로 저장합니다.</li></ul></body></html> + + + + Hide column(s) + 컬럼(들) 숨기기 + + + + Hide selected column(s) + 선택한 컬럼(들)을 숨기기 + + + + Show all columns + 전체 컬럼 보기 + + + + Show all columns that were hidden + 숨겨진 전체 컬럼 보기 + + + + + Set encoding + 인코딩 지정하기 + + + + Change the encoding of the text in the table cells + 테이블 셀 안의 텍스트 인코딩을 변경합니다 + + + + Set encoding for all tables + 모든 테이블의 인코딩 지정하기 + + + + Change the default encoding assumed for all tables in the database + 데이터베이스 안에 있는 모든 테이블의 기본 인코딩을 변경합니다 + + + + Clear Filters + 필터 지우기 + + + + Clear all filters + 모든 필터 지우기 + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + 이 버튼은 현재 탐색된 테이블의 헤더 입력 필드에 설정된 모든 필터를 지웁니다. + + + + Clear Sorting + 정렬 초기화 + + + + Reset the order of rows to the default + 행 순서를 기본값으로 재설정 + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + 이 버튼은 현재 검색된 테이블에 지정된 열 정렬을 지우고 기본 순서로 돌아갑니다. + + + + Print + 인쇄하기 + + + + Print currently browsed table data + 현재 탐색한 테이블 데이터를 인쇄합니다 + + + + Print currently browsed table data. Print selection if more than one cell is selected. + 현재 찾아본 테이블 데이터를 인쇄합니다. 둘 이상의 셀이 선택된 경우 선택 항목만 인쇄합니다. + + + + Ctrl+P + + + + + Refresh + 새로고침 + + + + Refresh the data in the selected table + 선택한 테이블의 데이터 새로고치기 + + + + This button refreshes the data in the currently selected table. + 이 버튼은 현재 선택된 테이블의 데이터를 새로고칩니다. + + + + F5 + + + + + Find in cells + 셀에서 찾기 + + + + Open the find tool bar which allows you to search for values in the table view below. + 아래 표 보기에서 값을 검색할 수 있는 도구 모음을 엽니다. + + + + + Bold + 진하게 + + + + Ctrl+B + + + + + + Italic + 기울임 + + + + + Underline + 밑줄 + + + + Ctrl+U + + + + + + Align Right + 우측으로 정렬 + + + + + Align Left + 좌측으로 정렬 + + + + + Center Horizontally + 가운데 정렬 + + + + + Justify + 정렬 + + + + + Edit Conditional Formats... + 조건부 서식 편집... + + + + Edit conditional formats for the current column + 이 컬럼의 조건부 서식 편집 + + + + Clear Format + 서식 지우기 + + + + Clear All Formats + 모든 필터 지우기 + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + 선택한 셀의 모든 셀 서식과 선택한 열의 모든 조건부 서식 지우기 + + + + + Font Color + 글자색 + + + + + Background Color + 배경색 + + + + Toggle Format Toolbar + 서식 툴바 토글 + + + + Show/hide format toolbar + 서식 툴바 표시/숨기기 + + + + + This button shows or hides the formatting toolbar of the Data Browser + 이 버튼은 데이터 브라우저의 서식 도구 모음을 표시하거나 숨깁니다 + + + + Select column + 컬럼 선택 + + + + Ctrl+Space + + + + + Replace text in cells + 셀의 텍스트 바꾸기 + + + + Filter in any column + 모든 열에서 필터링 + + + + Ctrl+R + + + + + %n row(s) + + %n 열(들) + + + + + , %n column(s) + + , %n 컬럼(들) + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . 합계: %1, 평균: %2, 최소값: %3, 최대값: %4 + + + + Conditional formats for "%1" + "%1"에 대한 조건부 서식 + + + + determining row count... + 행 개수 결정 중... + + + + %1 - %2 of >= %3 + %1 - %2 of >= %3 + + + + %1 - %2 of %3 + %1 - %2 of %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + 이 뷰에서 수정을 활성화하기 위하여 pseudo-primary key를 입력하시기 바랍니다. 이것은 뷰에서 유일한 이름이어야 합니다. + + + + Delete Records + 레코드 삭제 + + + + Duplicate records + 레코드 복제하기 + + + + Duplicate record + 레코드 복제하기 + + + + Ctrl+" + + + + + Adjust rows to contents + 내용에 맞게 행 크기 조절 + + + + Error deleting record: +%1 + 레코드 추가 에러: +%1 + + + + Please select a record first + 레코드를 먼저 선택하세요 + + + + There is no filter set for this table. View will not be created. + 이 테이블을 위한 필터가 설정되지 않았습니다. 뷰가 생성되지 않습니다. + + + + Please choose a new encoding for all tables. + 모든 테이블에 설정할 새 인코딩을 선택하세요. + + + + Please choose a new encoding for this table. + 이 테이블에 적용할 새 인코딩을 선택하세요. + + + + %1 +Leave the field empty for using the database encoding. + %1 +데이터베이스 인코딩을 사용하기 위해 필드를 비워둡니다. + + + + This encoding is either not valid or not supported. + 이 인코딩은 올바르지 않거나 지원되지 않습니다. + + + + %1 replacement(s) made. + %1개의 교체가 이루어졌습니다. + + + + VacuumDialog + + + Compact Database + 데이터베이스 크기 줄이기(Vacuum) + + + + Warning: Compacting the database will commit all of your changes. + 주의: 데이터베이스 크기 줄이기를 하면 저장되지 않은 모든 수정사항이 반영됩니다. + + + + Please select the databases to co&mpact: + 크기를 줄일 데이터베이스를 선택하세요(&M): + + + diff --git a/ConfigFiles/translations/sqlb_nl.qm b/ConfigFiles/translations/sqlb_nl.qm new file mode 100644 index 0000000..928c3c6 Binary files /dev/null and b/ConfigFiles/translations/sqlb_nl.qm differ diff --git a/ConfigFiles/translations/sqlb_nl.ts b/ConfigFiles/translations/sqlb_nl.ts new file mode 100644 index 0000000..9e6d4ed --- /dev/null +++ b/ConfigFiles/translations/sqlb_nl.ts @@ -0,0 +1,7076 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + Over DB-browser voor SQLite + + + + Version + Versie + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB-browser voor SQLite is een open source en freeware visuele tool om SQLite databasebestanden mee te creëren, te ontwerpen en te bewerken.</p><p>Het is uitgebracht onder een duolicentie: Mozilla Public License versie 2 en GNU General Public License versie 3 of hoger. Je mag het aanpassen en herdistribueren onder de voorwaarden van deze licenties.</p><p>Zie <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> en <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> voor de details.</p><p>Bezoek onze website op <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a> voor meer informatie over dit programma.</p><p><span style=" font-size:small;">Deze software maakt gebruik van de GPL/LGPL Qt Toolkit van </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>Zie </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> voor de licentievoorwaarden en informatie.</span></p><p><span style=" font-size:small;">Het maakt tevens gebruik van de Silk iconenset van Mark James, uitgebracht onder de Creative Commons Attribution 2.5 en 3.0 licenties.<br/>Zie </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> voor de details.</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + Nieuw record toevoegen + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + Voer waarden in voor het nieuwe record, rekening houdend met beperkingen. Vette velden zijn verplicht. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + In de Waarde-kolom kun je de waarde opgegeven voor het veld geïdentificeerd in de Naam-kolom. De Type-kolom geeft het type van het veld aan. Standaardwaarden worden in dezelfde stijl getoond als NULL-waarden. + + + + Name + Naam + + + + Type + Type + + + + Value + Waarde + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + In te voeren waarden. Vooringevulde standaardwaarden worden automatisch ingevoerd, tenzij ze aanpast worden. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + Wanneer je waarden in het kader hierboven bewerkt, dan wordt de SQL-opdracht voor het invoegen van een nieuw record hier getoond. Je kunt de opdracht dan nog bewerken, voordat je deze opslaat. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Opslaan</span> verstuurt de SQL-instructie voor het invoeren van een nieuw record naar de database.</p><p><span style=" font-weight:600;">Standaardwaarden herstellen</span> herstelt de initiële waarden van de <span style=" font-weight:600;">Value</span>-kolom.</p><p><span style=" font-weight:600;">Annuleren</span> sluit dit venster zonder de opdracht uit te voeren.</p></body></html> + + + + Auto-increment + + Automatisch ophogen + + + + + Unique constraint + + Uniciteitsbeperking + + + + + Check constraint: %1 + + Controlebeperking: %1 + + + + + Foreign key: %1 + + Vreemde sleutel: %1 + + + + + Default value: %1 + + Standaardwaarde: %1 + + + + + Error adding record. Message from database engine: + +%1 + Fout bij toevoegen record. Melding van de database: + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + Weet je zeker dat je alle ingevoerde waarden wilt herstellen naar hun standaardwaarden? + + + + Application + + + Usage: %1 [options] [<database>|<project>] + + Gebruik: %1 [opties] [<database>|<project>] + + + + + Possible command line arguments: + Mogelijke opdrachtregelargumenten: + + + + -h, --help Show command line options + -h, --help Toon opdrachtregelargumenten + + + + -q, --quit Exit application after running scripts + -q, --quit Sluit applicatie nadat scripts uitgevoerd zijn + + + + -s, --sql <file> Execute this SQL file after opening the DB + -s, --sql <bestand> Voer dit SQL-bestand uit nadat de database geopend is + + + + -t, --table <table> Browse this table after opening the DB + -t, --table <tabel> Blader door deze tabel nadat de database geopend is + + + + -R, --read-only Open database in read-only mode + -R, --read-only Open database in alleen-lezenmodus + + + + -o, --option <group>/<setting>=<value> + -o, --option <groep>/<instelling>=<waarde> + + + + Run application with this setting temporarily set to value + Applicatie uitvoeren met tijdelijke waarde voor deze instelling + + + + -O, --save-option <group>/<setting>=<value> + -O, --save-option <groep>/<instelling>=<waarde> + + + + Run application saving this value for this setting + Applicatie uitvoeren met waarde voor deze instelling permanent opgeslagen + + + + -v, --version Display the current version + -v, --version Toon de huidige versie + + + + <database> Open this SQLite database + <database> Open deze SQLite-database + + + + <project> Open this project file (*.sqbpro) + <project> Open dit projectbestand (*.sqbpro) + + + + The -s/--sql option requires an argument + De -s/--sql optie vereist een argument + + + + The file %1 does not exist + Het bestand %1 bestaat niet + + + + The -t/--table option requires an argument + De -t/--table optie vereist een argument + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + De -o/--option and -O/--save-option opties vereisen een argument in de vorm van groep/instelling=waarde + + + + Invalid option/non-existant file: %1 + Ongeldige optie of niet bestaand bestand: %1 + + + + SQLite Version + SQLite-versie + + + + SQLCipher Version %1 (based on SQLite %2) + SQLCipher-versie %1 (gebaseerd op SQLite %2) + + + + DB Browser for SQLite Version %1. + DB-browser voor SQLite versie %1. + + + + Built for %1, running on %2 + Gebouwd voor %1, draaiend op %2 + + + + Qt Version %1 + Qt-versie %1 + + + + CipherDialog + + + SQLCipher encryption + SQLCipher encryptie + + + + &Password + &Wachtwoord + + + + &Reenter password + Wa&chtwoord herhalen + + + + Passphrase + Toegangsfrase + + + + Raw key + Onbewerkte sleutel + + + + Encr&yption settings + Encr&yptie-instellingen + + + + SQLCipher &3 defaults + SQLCipher &3 standaardwaarden + + + + SQLCipher &4 defaults + SQLCipher &4 standaardwaarden + + + + Custo&m + &Aangepast + + + + Page si&ze + &Paginagrootte + + + + &KDF iterations + KDF &iteraties + + + + HMAC algorithm + &HMAC-algoritme + + + + KDF algorithm + &KDF-algoritme + + + + Plaintext Header Size + Platte-&tekstheadergrootte + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + Geef een sleutel op om de database mee te versleutelen. +Wees je ervan bewust dat als je een van de andere, optionele, opties wijzigt, je die iedere keer opnieuw moet invoeren als je het databasebestand wilt openen. +Laat wachtwoordvelden leeg om de versleuteling uit te schakelen. +Versleuteling kan wat tijd in beslag nemen en je doet er tevens verstandig aan een backup van je database te hebben! Onopgeslagen wijzigingen worden toegepast voordat de versleuteling aangepast wordt. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + Voer de sleutel in waarmee database is versleuteld. +Indien enige andere opties voor dit databasebestand gewijzigd waren dan dien je die gegevens hier nu ook opnieuw in te voeren. + + + + ColumnDisplayFormatDialog + + + Choose display format + Kies een opmaak + + + + Display format + Opmaak + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + Kies een opmaak voor de kolom '%1' die op iedere waarde wordt toegepast voordat deze getoond wordt. + + + + Default + Standaard + + + + Decimal number + Decimaal getal + + + + Exponent notation + Wetenschappelijke E-notatie + + + + Hex blob + Hexadecimale blob + + + + Hex number + Hexadecimaal getal + + + + Octal number + Octaal getal + + + + Round number + Afgerond getal + + + + Apple NSDate to date + Apple NSDate naar datum + + + + Java epoch (milliseconds) to date + Java-epoch (milliseconden) naar datum + + + + .NET DateTime.Ticks to date + .NET DateTime.Ticks naar datum + + + + Julian day to date + Juliaanse dag naar datum + + + + Unix epoch to date + Unix-epoch naar datum + + + + Unix epoch to local time + Unix-epoch naar lokale tijd + + + + Windows DATE to date + Windows DATE naar datum + + + + Date as dd/mm/yyyy + Datum als dd/mm/jjjj + + + + Lower case + onderkast + + + + Upper case + BOVENKAST + + + + Custom + Aangepast + + + + Custom display format must contain a function call applied to %1 + Aangepaste opmaak moet bestaan uit een functie-aanroep die toegepast wordt op %1 + + + + Error in custom display format. Message from database engine: + +%1 + Fout in de aangepaste opmaak. Melding van de database: + +%1 + + + + Custom display format must return only one column but it returned %1. + Aangepaste opmaak moet slechts één kolom retourneren, maar retourneerde er %1. + + + + CondFormatManager + + + Conditional Format Manager + Voorwaardelijke-opmaakbeheerder + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + Dit dialoogvenster stelt je in staat om voorwaardelijke opmaakregels te creëren en te bewerken. Iedere celstijl zal worden geselecteerd op basis van de eerst vervulde voorwaarde voor diens celwaarde. De voorwaardelijke opmaakregels kunnen omhoog en omlaag verplaatst worden. Hoger geplaatste regels hebben hogere prioriteit. De syntaxis voor de voorwaarden in dezelfde als voor filters en een lege voorwaarde wordt toegepast op alle waarden. + + + + Add new conditional format + Nieuwe voorwaardelijke-opmaakregel toevoegen + + + + &Add + &Toevoegen + + + + Remove selected conditional format + Verwijder de geselecteerde voorwaardelijke-opmaakregel + + + + &Remove + &Verwijderen + + + + Move selected conditional format up + Verplaats de geselecteerde voorwaardelijke-opmaakregel omhoog + + + + Move &up + Om&hoog verplaatsen + + + + Move selected conditional format down + Verplaats de geselecteerde voorwaardelijke-opmaakregel omlaag + + + + Move &down + Om&laag verplaatsen + + + + Foreground + Voorgrond + + + + Text color + Tekstkleur + + + + Background + Achtergrond + + + + Background color + Achtergrondkleur + + + + Font + Lettertype + + + + Size + Grootte + + + + Bold + Vet + + + + Italic + Cursief + + + + Underline + Onderstreept + + + + Alignment + Uitlijning + + + + Condition + Voorwaarde + + + + + Click to select color + Klik om een kleur te selecteren + + + + Are you sure you want to clear all the conditional formats of this field? + Weet je zeker dat je alle voorwaardelijke-opmaakregels voor dit veld wilt verwijderen? + + + + DBBrowserDB + + + This database has already been attached. Its schema name is '%1'. + Deze database is al gekoppeld. Diens schemanaam is '%1'. + + + + Please specify the database name under which you want to access the attached database + Geef de databasenaam zoals je de gekoppelde database wilt benaderen + + + + Invalid file format + Ongeldig bestandsformaat + + + + Do you really want to close this temporary database? All data will be lost. + Weet je zeker dat je deze tijdelijke database wilt sluiten? Alle gegevens zullen verloren gaan. + + + + Do you want to save the changes made to the database file %1? + Wil je de wijzigingen opslaan die je de gemaakt hebt voor database %1? + + + + Database didn't close correctly, probably still busy + Database is niet goed afgesloten; waarschijnlijk nog steeds bezig + + + + The database is currently busy: + De database is momenteel bezig: + + + + Do you want to abort that other operation? + Wil je die andere handeling afbreken? + + + + Exporting database to SQL file... + Database wordt geëxporteerd naar SQL-bestand... + + + + + Cancel + Annuleren + + + + + No database file opened + Er is geen databasebestand open + + + + Executing SQL... + SQL wordt uitgevoerd... + + + + Action cancelled. + Handeling geannuleerd. + + + + + Error in statement #%1: %2. +Aborting execution%3. + Fout in instructie #%1: %2. +Uitvoering wordt afgebroken%3. + + + + + and rolling back + en teruggedraaid + + + + didn't receive any output from %1 + Geen uitvoer ontvangen van %1 + + + + could not execute command: %1 + kon opdracht niet uitvoeren: %1 + + + + Cannot delete this object + Kan dit object niet verwijderen + + + + Cannot set data on this object + Kan de gegevens niet toepassen op dit object + + + + + A table with the name '%1' already exists in schema '%2'. + Er bestaat al een tabel met de naam '%1' in schema '%2'. + + + + No table with name '%1' exists in schema '%2'. + Er bestaat geen tabel met de naam '%1' in schema '%2'. + + + + + Cannot find column %1. + Kan kolom %1 niet vinden. + + + + Creating savepoint failed. DB says: %1 + Het maken van een herstelpunt is niet gelukt. Melding van de database: %1 + + + + Renaming the column failed. DB says: +%1 + Het hernoemen van de kolom is niet gelukt. Melding van de database: %1 + + + + + Releasing savepoint failed. DB says: %1 + Het opheffen van een herstelpunt is niet gelukt. Melding van de database: %1 + + + + Creating new table failed. DB says: %1 + Het maken van de nieuwe tabel is niet gelukt. Melding van de database: %1 + + + + Copying data to new table failed. DB says: +%1 + Het kopiëren van de gegevens naar de nieuwe tabel is niet gelukt. Melding van de database: %1 + + + + Deleting old table failed. DB says: %1 + Het verwijderen van de oude tabel is niet gelukt. Melding van de database: %1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + Fout bij het het herstellen van sommige objecten die met deze tabel geassocieerd zijn. Dit gebeurde hoogstwaarschijnlijk omdat kolomnamen gewijzigd zijn. Dit is de SQL-instructie die je wellicht aan wilt passen om het nogmaals mee te proberen: + + + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + Fout bij het hernoemen van tabel '%1' naar '%2'. +Melding van de database: +%3 + + + + could not get list of db objects: %1 + Fout bij het verkrijgen van lijst met database-objecten: %1 + + + + could not get list of databases: %1 + Fout bij het verkrijgen van lijst met databases: %1 + + + + Error setting pragma %1 to %2: %3 + Fout bij het omzetten van pragma %1 naar %2: %3 + + + + File not found. + Bestand niet gevonden. + + + + Error loading extension: %1 + Fout bij het laden van extensie: %1 + + + + could not get column information + Fout bij het verkrijgen van kolominformatie + + + + DbStructureModel + + + Name + Naam + + + + Object + Object + + + + Type + Type + + + + Schema + Schema + + + + Database + Database + + + + Browsables + Doorbladerbare + + + + All + Alle + + + + Temporary + Tijdelijke + + + + Tables (%1) + Tabellen (%1) + + + + Indices (%1) + Indices (%1) + + + + Views (%1) + Views (%1) + + + + Triggers (%1) + Triggers (%1) + + + + EditDialog + + + Edit database cell + Databasecel bewerken + + + + This area displays information about the data present in this database cell + Dit gebied toont informatie over de aanwezige gegevens in de databasecel + + + + Mode: + Modus: + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + Dit is de lijst van ondersteunde modi voor de celbewerker. Kies een modus om de gegevens van de huidige cel te bekijken of te bewerken. + + + + Text + Tekst + + + + RTL Text + Rechts-naar-linkstekst + + + + Binary + Binair + + + + + Image + Afbeelding + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + De bewerker automatisch aanpassen aan het geladen gegevenstype + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + Deze aanvinkbare knop zet het automatisch wisselen van de bewerkingsmodus aan of uit. Wanneer een nieuwe cel wordt geselecteerd of nieuwe gegevens worden geïmporteerd en automatisch wisselen aangevinkt is, dan verandert de modus naar het gedetecteerde gegevenstype. Je kunt de bewerkingsmodus dan alsnog handmatig aanpassen. Vink de knop uit als je handmatig wisselen wilt gebruiken tijdens het navigeren door de cellen. + + + + Auto-switch + Automatisch wisselen + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + De tekstbewerkingsmodi stellen je in staat om platte tekst te bewerken, maar ook JSON en XML met syntaxiskleuring en automatisch formatteren en validatie voordat je het opslaat. + +Fouten worden aangegeven met rode kronkelige onderstreping. + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + Deze Qt-bewerker wordt voor rechts-naar-linksteksten gebruikt, omdat dit niet ondersteund wordt door de standaard tekstbewerker. Er werden rechts-naar-linkstekens gedetecteerd en daarom is deze bewerkingsmodus automatisch geselecteerd. + + + + Type of data currently in cell + Het gegevenstype van de huidige gegevens in de cel + + + + Size of data currently in table + De grootte van de huidige gegevens in de tabel + + + + Apply data to cell + Gegevens toepassen op cel + + + + This button saves the changes performed in the cell editor to the database cell. + Deze knop slaat de wijzigingen die aangebracht zijn in de celbewerker op in de cel. + + + + Apply + Toepassen + + + + + Print... + Afdrukken... + + + + Open preview dialog for printing displayed image + Open voorvertoningsdialoogvenster om getoonde afbeelding af te drukken + + + + Open preview dialog for printing displayed text + Open voorvertoningsdialoogvenster om getoonde tekst af te drukken + + + + Open preview dialog for printing the data currently stored in the cell + Opent een voorvertoningsdialoogvenster voor het afdrukken van de de huidige gegevens in de cel + + + + + Ctrl+P + + + + + Copy Hex and ASCII + HEX en ASCII kopiëren + + + + Copy selected hexadecimal and ASCII columns to the clipboard + De geselecteerde hexadecimale en ASCII kolommen kopiëren naar het klembord + + + + Ctrl+Shift+C + + + + + Autoformat + Auto-opmaak + + + + Auto-format: pretty print on loading, compact on saving. + Auto-opmaak: mooi opmaken bij het laden, comprimeren bij het opslaan. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + Indien geselecteerd zal de auto-opmaakfunctie de gegevens bij het laden mooi opmaken, door de tekst op te delen in regels en deze dan in te laten springen. Bij het opslaan zal de auto-opmaakfunctie de gegevens comprimeren door regeleinden en onnodige witruimte te verwijderen. + + + + &Export... + &Exporteren... + + + + Export to file + Naar bestand exporteren + + + + Opens a file dialog used to export the contents of this database cell to a file. + Opent een bestandsdialoogvenster om de inhoud van deze databasecel naar een bestand te exporteren. + + + + + &Import... + &Importeren... + + + + + Import from file + Uit bestand importeren + + + + + Opens a file dialog used to import any kind of data to this database cell. + Opent een bestandsdialoogvenster om gegevens van een willekeurig gegevenstype naar deze databasecel te importeren. + + + + Set as &NULL + Omzetten naar &NULL + + + + Erases the contents of the cell + Wist de inhoud van de cel + + + + Word Wrap + Woordterugloop + + + + Wrap lines on word boundaries + Past regelterugloop toe op woordbegrenzingen + + + + + Open in default application or browser + In standaard applicatie of browser openen + + + + Open in application + In applicatie openen + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + De waarde wordt geïnterpreteerd als bestand of URL en wordt geopend in de standaard applicatie of webbrower. + + + + Save file reference... + Bestandsreferentie opslaan... + + + + Save reference to file + Referentie in bestand opslaan + + + + + Open in external application + In externe applicatie openen + + + + + Image data can't be viewed in this mode. + Afbeeldingsgegevens kunnen niet worden getoond in deze modus. + + + + + Try switching to Image or Binary mode. + Probeer te wisselen naar Afbeeldings- of Binaire modus. + + + + + Binary data can't be viewed in this mode. + Binaire gegevens kunnen niet worden getoond in deze modus. + + + + + Try switching to Binary mode. + Probeer te wisselen naar Binaire modus. + + + + + Image files (%1) + Afbeeldingbestanden (%1) + + + + Choose a file to import + Kies een bestand om te importeren + + + + %1 Image + %1 Afbeelding + + + + Binary files (*.bin) + Binaire bestanden (*.bin) + + + + Choose a filename to export data + Kies een bestandsnaam om naar te exporteren + + + + Invalid data for this mode + Ongeldige gegevens voor deze modus + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + De cel bevat ongeldige %1 gegevens. Reden: %2. Weet je zeker dat je het op de cel wilt toepassen? + + + + + Type of data currently in cell: Text / Numeric + Gegevenstype van de huidige gegevens in de cel: tekst / numeriek + + + + + + %n character(s) + + %n teken + %n tekens + + + + + Type of data currently in cell: %1 Image + Gegevenstype van de huidige gegevens in de cel: %1 afbeelding + + + + %1x%2 pixel(s) + %1x%2 pixel(s) + + + + Type of data currently in cell: NULL + Gegevenstype van de huidige gegevens in de cel: NULL + + + + + %n byte(s) + + %n byte + %n bytes + + + + + Type of data currently in cell: Valid JSON + Gegevenstype van de huidige gegevens in de cel: geldige JSON + + + + Type of data currently in cell: Binary + Gegevenstype van de huidige gegevens in de cel: binair + + + + Couldn't save file: %1. + Kon het bestand niet opslaan: %1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + De gegevens zijn in een tijdelijk bestand opgeslagen en is geopend in de standaard applicatie. Je kunt het bestand nu bewerken en, wanneer je klaar bent, de opgeslagen nieuwe gegevens toepassen op de cel of de wijzingen annuleren. + + + + EditIndexDialog + + + Edit Index Schema + Schema-index bewerken + + + + &Name + &Naam + + + + &Table + &Tabel + + + + &Unique + &Uniek + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + Om de index slechts op een gedeelte van de tabel toe te passen kun je hier een WHERE clausule opgeven die slechts dát gedeelte van de tabel selecteert dat geïndexeerd dient te worden + + + + Partial inde&x clause + Gedeeltelijke inde&x-clausule + + + + Colu&mns + &Kolommen + + + + Table column + Tabelkolom + + + + Type + Type + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + Voeg een nieuwe expressiekolom toe aan de index. Expressiekolommen bevatten SQL-expressies in plaats van kolomnamen. + + + + Index column + Indexkolom + + + + Order + Sortering + + + + Deleting the old index failed: +%1 + Het verwijderen van de oude index is mislukt: +%1 + + + + Creating the index failed: +%1 + Het maken van de index is mislukt: +%1 + + + + EditTableDialog + + + Edit table definition + Tabeldefinitie bewerken + + + + Table + Tabel + + + + Advanced + Geavanceerd + + + + Database sche&ma + Database&schema + + + + Without Rowid + Zonder &rowid + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + Maak van deze tabel een 'WITHOUT rowid'-tabel. Om deze optie toe te kunnen passen is een primair sleutelveld van het type INTEGER nodig, waarop geen automatische ophoging wordt toegepast. + + + + Fields + Velden + + + + Add + Toevoegen + + + + Remove + Verwijderen + + + + Move to top + Bovenaan plaatsen + + + + Move up + Omhoog verplaatsen + + + + Move down + Omlaag verplaatsen + + + + Move to bottom + Onderaan plaatsen + + + + + Name + Naam + + + + + Type + Type + + + + NN + NN + + + + Not null + Niet NULL + + + + PK + PS + + + + Primary key + Primaire sleutel + + + + AI + AO + + + + Autoincrement + Automatisch ophogen + + + + U + U + + + + + + Unique + Uniek + + + + Default + Standaard + + + + Default value + Standaardwaarde + + + + + + Check + Controle + + + + Check constraint + Controlebeperking + + + + Collation + Collatie + + + + + + Foreign Key + Vreemde sleutel + + + + Constraints + Beperkingen + + + + Add constraint + Beperking toevoegen + + + + Remove constraint + Beperking verwijderen + + + + Columns + Kolommen + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Waarschuwing: </span>Er is iets aan deze tabeldefinitie dat onze parser niet volledig begrijpt. Het aanpassen en opslaan van deze tabel kan problemen opleveren.</p></body></html> + + + + + Primary Key + Primaire sleutel + + + + Add a primary key constraint + Voeg een primaire sleutelbeperking toe + + + + Add a foreign key constraint + Voeg een vreemde sleutelbeperking toe + + + + Add a unique constraint + Voeg een uniciteitsbeperking toe + + + + Add a check constraint + Voeg een controlebeperking toe + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + Er kan maar een primairesleutel per tabel bestaan. Pas in plaats daarvan de al bestaande primaire sleutel aan. + + + + Error creating table. Message from database engine: +%1 + Fout bij maken van de tabel. Melding van de database: +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Er bestaat al een veld met die naam. Hernoem dat veld eerst of kies een andere naam voor dit veld. + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + Naar deze kolom wordt verwezen in een vreemde sleutel in tabel %1 en kan daarom niet aangepast worden. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + Er is tenminste een record waarin de waarde van dit veld NULL is. Dit maakt het onmogelijk om deze optie toe te passen. Pas de tabelgegevens eerst aan. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + Er is tenminste een record waarin de waarde van dit veld geen geheel getal is. Dit maakt het onmogelijk om de AO-optie toe te passen. Pas de tabelgegevens eerst aan. + + + + Column '%1' has duplicate data. + + Kolom '%1' heeft gedupliceerde waarden. + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + Dit maakt het onmogelijk om de Uniek-optie toe te passen. Verwijder eerst de gedupliceerde waarden, zodat de Uniek-optie toe kan worden gepast. + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + Weet je zeker dat je het veld '%1' wilt verwijderen? +Alle waarden die momenteel opgeslagen zijn in dit veld zullen verloren gaan. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + Voeg eerste een veld toe dat aan de volgende criteria voldoet, voordat je de 'Zonder rowid' optie toepast: + - Primaire sleutel ingeschakeld + - Automatisch ophogen uitgeschakeld + + + + ExportDataDialog + + + Export data as CSV + Gegevens exporteren als CSV + + + + Tab&le(s) + &Tabel(-len) + + + + Colu&mn names in first line + &Kolomnamen op eerste regel + + + + Fie&ld separator + &Veldscheidingsteken + + + + , + , + + + + ; + ; + + + + Tab + Tab + + + + | + | + + + + + + Other + Anders + + + + &Quote character + &Scheidingsteken tekenreeks + + + + " + " + + + + ' + ' + + + + New line characters + Nieuwe-regeltekens + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + Mooi opmaken + + + + Export data as JSON + Exporteer de gegevens als JSON + + + + exporting CSV + CSV wordt geëxporteerd + + + + + Could not open output file: %1 + Kon het uitvoerbestand niet openen: %1 + + + + exporting JSON + JSON wordt geëxporteerd + + + + + Choose a filename to export data + Kies een bestandsnaam om naar te exporteren + + + + Please select at least 1 table. + Selecteerd tenminste één tabel. + + + + Choose a directory + Kies een map + + + + Export completed. + Het exporteren is voltooid. + + + + ExportSqlDialog + + + Export SQL... + SQL exporteren... + + + + Tab&le(s) + &Tabel(-len) + + + + Select All + Alles selecteren + + + + Deselect All + Alles deselecteren + + + + &Options + &Opties + + + + Keep column names in INSERT INTO + Kolomnamen behouden in INSERT INTO + + + + Multiple rows (VALUES) per INSERT statement + Meervoudige records (VALUES) per INSERT-instructie + + + + Export everything + Alles exporteren + + + + Export schema only + Alleen het schema exporteren + + + + Export data only + Alleen de gegevens exporteren + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + Ouder schema behouden (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Ouder schema overschrijven (DROP TABLE, daarna CREATE TABLE) + + + + Please select at least one table. + Selecteer tenminste één tabel. + + + + Choose a filename to export + Kies een bestandsnaam om naar te exporteren + + + + Export completed. + Het exporteren is voltooid. + + + + Export cancelled or failed. + Het exporteren is geannuleerd of niet gelukt. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + Zoeken... + + + + Find and Replace... + Zoeken en Vervangen... + + + + Print... + Afdrukken... + + + + ExtendedTableWidget + + + Use as Exact Filter + Als exact filter gebruiken + + + + Containing + Bevat + + + + Not containing + Bevat niet + + + + Not equal to + Niet gelijk aan + + + + Greater than + Groter dan + + + + Less than + Kleiner dan + + + + Greater or equal + Groter dan of gelijk aan + + + + Less or equal + Kleiner dan of gelijk aan + + + + Between this and... + Binnen het bereik van dit en... + + + + Regular expression + Als reguliere expressie + + + + Edit Conditional Formats... + Voorwaardelijke opmaakregels bewerken... + + + + Set to NULL + Omzetten naar NULL + + + + Copy + Kopiëren + + + + Copy with Headers + Kopiëren met kolomnamen + + + + Copy as SQL + Kopiëren als SQL + + + + Paste + Plakken + + + + Print... + Afdrukken... + + + + Use in Filter Expression + Gebruiken in filterexpressie + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + De inhoud van het klembord is groter dan het geselecteerde bereik. +Wil je het desondanks invoegen? + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>Niet alle gegevens zijn geladen. <b>Wil je alle gegevens laden voordat alle records geselecteerd worden?</b><p><p> <b>Nee</b> betekent dat gegevens laden gestopt wordt en de selectie niet toegepast zal worden.<br/> <b>Ja</b> betekent dat het een tijd kan duren totdat alle gegevens geladen zijn, maar de selectie wel toegepast zal worden.</p>Waarschuwing: Alle gegevens laden kan een grote hoeveelheid werkgeheugen vereisen voor grote tabellen. + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + Kan de selectie niet omzetten naar NULL. Kolom %1 heeft een NIET NULL-beperking. + + + + FileExtensionManager + + + File Extension Manager + Bestandsextensiebeheerder + + + + &Up + Om&hoog + + + + &Down + Om&laag + + + + &Add + &Toevoegen + + + + &Remove + &Verwijderen + + + + + Description + Omschrijving + + + + Extensions + Extensies + + + + *.extension + *.extensie + + + + FilterLineEdit + + + Filter + Filter + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + Deze invoervelden stellen je in staat om snelfilters toe te passen op de huidig geselecteerde tabel. +Gewoonlijk worden records die de ingevoerde tekst bevatten gefilterd. +De volgende operatoren worden ook ondersteund: +% Jokerteken +> Groter dan +< Kleiner dan +>= Groter dan of gelijk aan +<= Kleiner dan of gelijk aan += Gelijk aan: exacte overeenkomst +<> Niet gelijk aan: inverse van exacte overeenkomst +x~y Bereik: waarden tussen x en y +/regexp/ Waarden die voldoen aan de reguliere expressie + + + + Set Filter Expression + Filterexpressie toepassen + + + + What's This? + Wat is dit? + + + + Is NULL + Is NULL + + + + Is not NULL + Is niet NULL + + + + Is empty + Is leeg + + + + Is not empty + Is niet leeg + + + + Not containing... + Bevat niet... + + + + Equal to... + Gelijk aan... + + + + Not equal to... + Niet gelijk aan... + + + + Greater than... + Groter dan... + + + + Less than... + Kleiner dan... + + + + Greater or equal... + Groter dan of gelijk aan... + + + + Less or equal... + Kleiner dan of gelijk aan... + + + + In range... + Binnen het bereik... + + + + Regular expression... + Reguliere expressie... + + + + Clear All Conditional Formats + Verwijder alle voorwaardelijke opmaakregels + + + + Use for Conditional Format + Gebruiken voor voorwaardelijke opmaak + + + + Edit Conditional Formats... + Voorwaardelijke opmaakregels bewerken... + + + + FindReplaceDialog + + + Find and Replace + Zoeken en vervangen + + + + Fi&nd text: + Zoek &tekst: + + + + Re&place with: + Vervang &door: + + + + Match &exact case + Identieke onder-/boven&kast + + + + Match &only whole words + Alleen &hele woorden + + + + When enabled, the search continues from the other end when it reaches one end of the page + Indien geselecteerd zal het zoeken aan het andere einde doorgaan zodra een einde bereikt is + + + + &Wrap around + Door&gaan na einde + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + Indien geselecteerd zal, ten opzichte van de cursorpositie, achteruit in plaats van vooruit gezocht worden + + + + Search &backwards + &Omgekeerd zoeken + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>Indien geselecteerd wordt alleen gezocht in de huidige selectie.</p></body></html> + + + + &Selection only + Alleen in &selectie + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Indien geselecteerd wordt de zoekterm geïnterpreteerd als een UNIX reguliere expressie. Zie hiervoor <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Reguliere Expressies in Wikibooks (Engels)</a>.</p></body></html> + + + + Use regular e&xpressions + Gebruik reguliere e&xpressies + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + Zoek de eerstvolgende overeenkomst vanaf de cursorpositie, in de richting aangegeven door de optie "Omgekeerd zoeken" + + + + &Find Next + Volgende &zoeken + + + + F3 + + + + + &Replace + &Vervangen + + + + Highlight all the occurrences of the text in the page + Markeer alle overeenkomsten met de tekst in de pagina + + + + F&ind All + Alles z&oeken + + + + Replace all the occurrences of the text in the page + Vervang alle overeenkomsten met de tekst in de pagina + + + + Replace &All + Alles v&ervangen + + + + The searched text was not found + De gezochte tekst is niet gevonden + + + + The searched text was not found. + De gezochte tekst is niet gevonden. + + + + The searched text was replaced one time. + De gezochte tekst is één keer vervangen. + + + + The searched text was found one time. + De gezochte tekst is één keer gevonden. + + + + The searched text was replaced %1 times. + De gezochte tekst is %1 keer vervangen. + + + + The searched text was found %1 times. + De gezochte tekst is %1 keer gevonden. + + + + ForeignKeyEditor + + + &Reset + &Herstellen + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + Vreemde-sleutelclausules (ON UPDATE, ON DELETE, etc.) + + + + ImportCsvDialog + + + Import CSV file + CSV-bestand importeren + + + + Table na&me + &Tabelnaam + + + + &Column names in first line + &Kolomnamen op eerste regel + + + + Field &separator + &Veldscheidingsteken + + + + , + , + + + + ; + ; + + + + + Tab + Tab + + + + | + | + + + + + Other (printable) + Anders (afdrukbaar) + + + + + Other (code) + Anders (code) + + + + &Quote character + &Scheidingsteken tekenreeks + + + + " + " + + + + ' + ' + + + + &Encoding + &Encodering + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Other + Anders + + + + Trim fields? + Velden trimmen? + + + + Separate tables + Tabellen scheiden + + + + Advanced + Geavanceerd + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + Indien geselecteerd dan wordt een lege waarde in plaats van de standaardwaarde ingevoerd voor bestaande tabellen die een standaardwaarde hebben voor deze kolom. + + + + Ignore default &values + &Negeer standaardwaarden + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + Indien geselecteerd dan wordt het importeren afgebroken zodra een lege waarde wordt geprobeerd in te voeren in een NIET NULL veld die geen standaardwaarde kent. + + + + Fail on missing values + Afbreken bij afwezige waarden + + + + Disable data type detection + Gegevenstypedetectie uitschakelen + + + + Disable the automatic data type detection when creating a new table. + Schakel automatische gegevenstypedetectie uit als een nieuwe tabel wordt gemaakt. + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + Tijdens het importeren in bestaande tabellen kunnen er conflicten optreden met primaire sleutels, unieke beperkingen en unieke indices. Deze instelling geeft je de keuze om daar een strategie voor te kiezen: standaard wordt het importeren afgebroken en teruggedraaid, maar je kunt ook kiezen om conflicterende records te negeren en dus niet te importeren, of om bestaande records te laten overschrijven door geïmporteerde records. + + + + Abort import + Importeren afbreken + + + + Ignore row + Record negeren + + + + Replace existing row + Bestaand record vervangen + + + + Conflict strategy + Conflictstrategie + + + + + Deselect All + Alles deselecteren + + + + Match Similar + Overeenkomende selecteren + + + + Select All + Alles selecteren + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + Er bestaat al een tabel met de naam '%1' en importeren in een al bestaande tabel is alleen mogelijk als het aantal kolommen overeenkomt. + + + + There is already a table named '%1'. Do you want to import the data into it? + Er bestaat al een tabel met de naam '%1'. Wil je de gegevens hierin importeren? + + + + Creating restore point failed: %1 + Maken van een herstelpunt is mislukt: %1 + + + + Creating the table failed: %1 + Maken van de tabel is mislukt: %1 + + + + importing CSV + CSV wordt geïmporteerd + + + + Inserting row failed: %1 + Invoegen van record is mislukt: %1 + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + Het importeren van het bestand '%1' duurde %2ms. Hiervan werd %3ms gebruikt voor de rijfunctie. + + + + MainWindow + + + DB Browser for SQLite + DB-browser voor SQLite + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Databasestructuur + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + Dit is de structuur van de geopende database. +Je kunt SQL-instructies vanuit een objectrij naar andere applicaties of andere vensters van 'DB-browser voor SQLite' verslepen. + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Gegevensbrowser + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Pragma's bewerken + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + Waarschuwing: dit pragma kan niet uitgelezen worden en de waarde is daarom afgeleid. Dit pragma wijzigen kan ervoor zorgen dat een door een SQLite-extensie hergedefinieerde LIKE overschreven wordt. + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + SQL uitvoeren + + + + toolBar1 + werkbalk1 + + + + &File + &Bestand + + + + &Import + &Importeren + + + + &Export + &Exporteren + + + + &Edit + Be&werken + + + + &View + Bee&ld + + + + &Help + &Help + + + + &Tools + E&xtra + + + + DB Toolbar + Databasewerkbalk + + + + Edit Database &Cell + Database&cel bewerken + + + + SQL &Log + SQL-&log + + + + Show S&QL submitted by + Toon S&QL van + + + + User + Gebruiker + + + + Application + Applicatie + + + + Error Log + Foutenlog + + + + This button clears the contents of the SQL logs + Deze knop leegt de inhoud van de SQL-logs + + + + &Clear + &Legen + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + In dit kader kun je de logs inspecteren van alle SQL-opdrachten die door de applicatie of door jezelf zijn uitgevoerd + + + + &Plot + &Plot + + + + DB Sche&ma + Databasesche&ma + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + Dit is de structuur van de geopende database. +Je kunt meerdere objectnamen vanuit de Naam-kolom naar de SQL-bewerker verslepen en je kunt hun eigenschappen dan bewerken met behulp van contextmenu's. Dit vergemakkelijkt het opstellen van SQL-instructies. +Je kunt SQL-instructies vanuit de Schema-kolom naar de SQL-bewerker of naar andere applicaties verslepen. + + + + + &Remote + Toegang op &afstand + + + + + Project Toolbar + Projectwerkbalk + + + + Extra DB toolbar + Werkbalk voor gekoppelde databases + + + + + + Close the current database file + Sluit het huidige databasebestand + + + + &New Database... + &Nieuwe database... + + + + + Create a new database file + Maak een nieuw databasebestand + + + + This option is used to create a new database file. + Deze optie wordt gebruikt om een nieuw databasebestand te maken. + + + + Ctrl+N + + + + + + &Open Database... + &Database openen... + + + + + + + + Open an existing database file + Een bestaand databasebestand openen + + + + + + This option is used to open an existing database file. + Deze optie wordt gebruikt om een bestaand databasebestand te openen. + + + + Ctrl+O + + + + + &Close Database + Database &sluiten + + + + This button closes the connection to the currently open database file + Deze knop verbreekt de verbinding met het huidig geopende databasebestand + + + + Ctrl+F4 + + + + + &Revert Changes + Wijzigingen &terugdraaien + + + + + Revert database to last saved state + Database terugdraaien naar de laatst opgeslagen staat + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + Deze optie wordt gebruikt om het huidig geopende databasebestand terug te draaien naar de laatst opgeslagen staat. Alle wijzigingen die gemaakt zijn sinds de laatste opslag gaan verloren. + + + + &Write Changes + &Wijzigingen opslaan + + + + + Write changes to the database file + Wijzigingen opslaan in het databasebestand + + + + This option is used to save changes to the database file. + Deze optie wordt gebruikt om wijzigingen op te slaan in het databasebestand. + + + + Ctrl+S + + + + + Compact &Database... + &Database comprimeren... + + + + Compact the database file, removing space wasted by deleted records + Comprimeer het databasebestand door lege ruimte van verwijderde records te op te schonen + + + + + Compact the database file, removing space wasted by deleted records. + Comprimeer het databasebestand door lege ruimte van verwijderde records te op te schonen. + + + + E&xit + A&fsluiten + + + + Ctrl+Q + + + + + &Database from SQL file... + &Database vanuit SQL-bestand... + + + + Import data from an .sql dump text file into a new or existing database. + Importeer gegevens vanuit een .sql dump tekstbestand naar een nieuwe of bestaande database. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + Deze optie stelt je in staat om gegevens vanuit een .sql dump tekstbestand te importeren naar een nieuwe of bestaande database. De meeste databaseprogramma's kunnen SQL-dumpbestanden maken, waaronder MySQL en PostgreSQL. + + + + &Table from CSV file... + &Tabel vanuit CSV-bestand... + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Open een assistent om gegevens uit een kommagescheiden tekstbestand te importeren naar een databasetabel. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + Open een assistent om gegevens uit een kommagescheiden tekstbestand (CSV) te importeren naar een databasetabel. De meeste database- en spreadsheetprogramma's kunnen CSV-bestanden maken. + + + + &Database to SQL file... + &Database naar SQL-bestand... + + + + Export a database to a .sql dump text file. + Exporteer een database naar een .sql dump tekstbestand. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + Deze optie stelt je in staat om een database te exporteren naar een .sql dump tekstbestand. SQL-dumpbestanden bevatten de benodigde gegevens om de database opnieuw te maken in de meeste databaseprogramma's, waaronder MySQL en PostgreSQL. + + + + &Table(s) as CSV file... + &Tabel(-len) naar CSV-bestand... + + + + Export a database table as a comma separated text file. + Exporteer een databasetabel naar een kommagescheiden tekstbestand. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + Exporteer een databasetabel naar een kommagescheiden tekstbestand, om deze te kunnen importeren in ander database- of spreadsheetprogramma. + + + + &Create Table... + Tabel &maken... + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + Open de tabel-makenassistent, waarin je namen en velden voor een nieuwe databasetabel kunt definiëren + + + + &Delete Table... + Tabel &verwijderen... + + + + + Delete Table + Tabel verwijderen + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + Open de tabel-verwijderassistent, waarin je databasetabellen kunt selecteren om te verwijderen. + + + + &Modify Table... + Tabel &wijzigen... + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + Open de tabel-wijzigingenassistent, waarin je een databasetabel kunt hernoemen. Het is hierin ook mogelijk om velden toe te voegen en te verwijderen en om veldnamen en -typen te wijzigen. + + + + Create &Index... + &Index maken... + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + Open de index-makenassistent, waarin je een nieuwe index voor een bestaande databasetabel kunt definiëren. + + + + &Preferences... + I&nstellingen... + + + + + Open the preferences window. + Open het instellingenvenster. + + + + &DB Toolbar + &Databasewerkbalk + + + + Shows or hides the Database toolbar. + Toont of verbergt de databasewerkbalk. + + + + W&hat's This? + W&at is dit? + + + + Shift+F1 + + + + + &About + &Over + + + + &Recently opened + &Recent geopend + + + + Open &tab + &Tabblad openen + + + + This button opens a new tab for the SQL editor + Deze knop opent een nieuw tabblad in de SQL-bewerker + + + + Ctrl+T + + + + + &Execute SQL + SQL &uitvoeren + + + + Execute all/selected SQL + Voer alle of de geselecteerde SQL uit + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + Deze knop voert de huidig geselecteerde SQL-instructies uit. Indien geen tekst geselecteerd is worden alle SQL-instructies uitgevoerd. + + + + Ctrl+Return + + + + + Open SQL file(s) + SQL-bestand(-en) openen + + + + This button opens files containing SQL statements and loads them in new editor tabs + Deze knop opent bestanden die SQL-instructies bevatten en laadt deze in nieuwe bewerkerstabbladen + + + + + + Save SQL file + SQL-bestand opslaan + + + + &Load Extension... + Extensie &laden... + + + + + Execute current line + Huidige regel uitvoeren + + + + Execute line + Regel uitvoeren + + + + This button executes the SQL statement present in the current editor line + Deze knop voert de SQL-instructies uit die zich op de huidige bewerkingsregel bevindt + + + + Shift+F5 + + + + + Export as CSV file + Exporteren als CSV-bestand + + + + Export table as comma separated values file + Tabel exporteren als bestand met kommagescheiden waarden + + + + &Wiki + &Wiki + + + + F1 + + + + + Bug &Report... + Bugs &rapporteren... + + + + Feature Re&quest... + Functionaliteit &verzoeken... + + + + Web&site + Web&site + + + + &Donate on Patreon... + &Doneren op Patreon... + + + + Sa&ve Project + P&roject opslaan + + + + + Save the current session to a file + De huidige sessie oplaan in een bestand + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + Deze knop stelt je in staat om alle instellingen met betrekking tot de geopende database op te slaan in een DB-browser voor SQLite-projectbestand + + + + Open &Project... + &Project openen... + + + + + Load a working session from a file + Een sessie laden vanuit een bestand + + + + This button lets you open a DB Browser for SQLite project file + Deze knop stelt je in staat om DB-browser voor SQLite-projectbestand te openen + + + + &Attach Database... + Database &koppelen... + + + + + Add another database file to the current database connection + Koppel nog een databasebestand aan de huidige databaseverbinding + + + + This button lets you add another database file to the current database connection + Deze knop stelt je in staat om nog een databasebestand aan de huidige databaseverbinding te koppelen + + + + &Set Encryption... + Encr&yptie instellen... + + + + + Save SQL file as + SQL-bestand opslaan als + + + + This button saves the content of the current SQL editor tab to a file + Deze knop slaat de inhoud van het huidige SQL-bewerkingstabblad op in een bestand + + + + &Browse Table + &Bladeren door tabel + + + + Copy Create statement + CREATE-instructie kopiëren + + + + Copy the CREATE statement of the item to the clipboard + De CREATE-instructie van het item kopiëren naar het klembord + + + + SQLCipher &FAQ + SQLCipher &FAQ + + + + Opens the SQLCipher FAQ in a browser window + Opent de SQLCipher FAQ in een browservenster + + + + Table(&s) to JSON... + Tabel(-&len) naar JSON-bestand... + + + + Export one or more table(s) to a JSON file + Exporteer een of meerdere tabel(-len) naar een JSON-bestand + + + + Open Data&base Read Only... + Database als &alleen-lezen openen... + + + + Open an existing database file in read only mode + Een bestaand databasebestand openen in alleen-lezenmodus + + + + Ctrl+Shift+O + + + + + Save results + Resultaten opslaan + + + + Save the results view + Het resultatenoverzicht opslaan + + + + This button lets you save the results of the last executed query + Deze knop stelt je in staat om de resultaten van de laatst uitgevoerde opdracht op te slaan + + + + + Find text in SQL editor + Tekst zoeken in de SQL-bewerker + + + + Find + Zoeken + + + + This button opens the search bar of the editor + Deze knop opent de zoekbalk van de bewerker + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + Tekst zoeken of vervangen in de SQL-bewerker + + + + Find or replace + Zoeken of vervangen + + + + This button opens the find/replace dialog for the current editor tab + Deze knop opent het zoek-en-vervangdialoogvenster voor het huidige bewerkerstabblad + + + + Ctrl+H + + + + + Export to &CSV + Exporteren naar &CSV + + + + Save as &view + Opslaan als &view + + + + Save as view + Opslaan als view + + + + Shows or hides the Project toolbar. + Toont of verbergt de projectwerkbalk. + + + + Extra DB Toolbar + Gekoppelde-databaseswerkbalk + + + + New In-&Memory Database + Nieuwe werk&geheugendatabase + + + + Drag && Drop Qualified Names + Gekwalificeerde namen verslepen + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + Gebruik gekwalificeerde namen (bijv. "Tabel"."Veld") wanneer ik objecten versleep naar de bewerker + + + + Drag && Drop Enquoted Names + Aangehaalde namen verslepen + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + Gebruik aangehaalde entiteitsnamen (bijv. "Tabel1") wanneer ik objecten versleep naar de bewerker + + + + &Integrity Check + &Integriteit controleren + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + Voert het pragma integrity_check uit op de geopende database en toont de resultaten in het tabblad SQL uitvoeren. Dit pragma doet een integriteitscontrole over de gehele database. + + + + &Foreign-Key Check + &Vreemde sleutels controleren + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + Voert het pragma foreign_key_check uit op de geopende database en toont de resultaten in het tabblad SQL uitvoeren + + + + &Quick Integrity Check + Integriteit &snel controleren + + + + Run a quick integrity check over the open DB + Voert een snelle integriteitscontrole uit op de geopende database + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + Voert het pragma quick_check uit op de geopende database en toont de resultaten in het tabblad SQL uitvoeren. Dit commando voert veel van de controles uit die het pragma integrity_check ook uitvoert, maar verloopt veel sneller. + + + + &Optimize + &Optimaliseren + + + + Attempt to optimize the database + Probeert de database te optimaliseren + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + Voert het pragma optimize uit op de geopende database. Dit pragma kan optimalisaties uitvoeren die de prestaties van toekomstige SQL-opdrachten mogelijk verbeteren. + + + + + Print + Afdrukken + + + + Print text from current SQL editor tab + Tekst uit het huidige SQL-bewerkerstabblad afdrukken + + + + Open a dialog for printing the text in the current SQL editor tab + Opent een dialoogvenster voor het afdrukken van tekst uit het huidige SQL-bewerkerstabblad + + + + + Ctrl+P + + + + + Print the structure of the opened database + De structuur van de geopende database afdrukken + + + + Open a dialog for printing the structure of the opened database + Opent een dialoogvenster voor het afdrukken van de structuur van de geopende database + + + + Un/comment block of SQL code + Blok SQL-code wel/niet commentaar + + + + Un/comment block + Blok wel/niet commentaar + + + + Comment or uncomment current line or selected block of code + De huidige regel of het geselecteerde codeblok wel/niet markeren als commentaar + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + Markeert het geselecteerde codeblok, of de huidige regel indien er geen selectie is, wel/niet als commentaar. Het gehele blok wordt omgezet op basis van de eerste regel. + + + + Ctrl+/ + + + + + Stop SQL execution + SQL uitvoeren stoppen + + + + Stop execution + Uitvoeren stoppen + + + + Stop the currently running SQL script + Stop het SQL script dat nu uitgevoerd wordt + + + + &Save Project As... + Pr&oject opslaan als... + + + + + + Save the project in a file selected in a dialog + Het project opslaan in een bestand dat je selecteert in een dialoogvenster + + + + Save A&ll + A&lles opslaan + + + + + + Save DB file, project file and opened SQL files + Het databasebestand, projectbestand en alle geopende SQL-bestanden opslaan + + + + Ctrl+Shift+S + + + + + Browse Table + Bladeren door tabel + + + + + Ctrl+W + + + + + Ctrl+L + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Ctrl+E + + + + + Window Layout + Vensterindeling + + + + Reset Window Layout + Vensterindeling herstellen + + + + Alt+0 + + + + + Simplify Window Layout + Vensterindeling versimpelen + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + Vensters dokken aan onderzijde + + + + Dock Windows at Left Side + Vensters dokken aan de linkerzijde + + + + Dock Windows at Top + Vensters dokken aan de bovenzijde + + + + The database is currenctly busy. + De database is momenteel bezig. + + + + Click here to interrupt the currently running query. + Klik hier om het SQL script dat nu uitgevoerd wordt te onderbreken. + + + + Encrypted + Versleuteld + + + + Database is encrypted using SQLCipher + Database is versleuteld met SQLCipher + + + + Read only + Aleen-lezen + + + + Database file is read only. Editing the database is disabled. + Het databasebestand is alleen-lezen. Het bewerken van de database is uitgeschakeld. + + + + Database encoding + Databasecodering + + + + + Choose a database file + Kies een databasebestand + + + + Could not open database file. +Reason: %1 + Kon het databasebestand niet openen. +Reden: %1 + + + + + + Choose a filename to save under + Kies een bestandsnaam om in op te slaan + + + + In-Memory database + Werkgeheugendatabase + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + Je voert nog steeds SQL-instructies uit. Het sluiten van de database zal het uitvoeren stoppen en de database daarmee mogelijk inconsistent maken. Weet je zeker dat je de database wilt sluiten? + + + + Do you want to save the changes made to the project file '%1'? + Wil je de wijzigingen opslaan die je de gemaakt hebt voor projectbestand %1? + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + Weet je zeker dat je de tabel '%1' wilt verwijderen? +Alle gegevens die met deze tabel geassocieerd worden zullen verloren gaan. + + + + Are you sure you want to delete the view '%1'? + Weet je zeker dat je de view '%1' wilt verwijderen? + + + + Are you sure you want to delete the trigger '%1'? + Weet je zeker dat je de trigger '%1' wilt verwijderen? + + + + Are you sure you want to delete the index '%1'? + Weet je zeker dat je de index '%1' wilt verwijderen? + + + + Error: could not delete the table. + Fout: kon de tabel niet verwijderen. + + + + Error: could not delete the view. + Fout: kon de view niet verwijderen. + + + + Error: could not delete the trigger. + Fout: kon de trigger niet verwijderen. + + + + Error: could not delete the index. + Fout: kon de index niet verwijderen. + + + + Message from database engine: +%1 + Melding van de database: +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + Het bewerken van de tabel vereist dat niet-opgeslagen wijzigingen nu opgeslagen worden. +Weet je zeker dat de database op wilt slaan? + + + + Error checking foreign keys after table modification. The changes will be reverted. + Fout bij het controleren van vreemde sleutels na tabelwijzigingen. De wijzigingen zullen teruggedraaid worden. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + Deze tabel kwam niet door de vreemde-sleutelscontrole.<br/>Voer 'Extra | Vreemde sleutels controleren' uit en repareer de gerapporteerde problemen. + + + + Edit View %1 + View %1 bewerken + + + + Edit Trigger %1 + Trigger %1 bewerken + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + Je voert momenteel al SQL-instructies uit. Wil je deze stoppen en in plaats daarvan de huidige instructies uitvoeren? Wees je ervan bewust dat dit ervoor kan zorgen dat de database inconsistent wordt. + + + + -- EXECUTING SELECTION IN '%1' +-- + -- SELECTIE WORDT UITGEVOERD IN '%1' +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- REGEL WORDT UITGEVOERD IN '%1' +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- ALLES WORDT UITGEVOERD IN '%1' +-- + + + + + At line %1: + In regel %1: + + + + Result: %1 + Resultaat: %1 + + + + Result: %2 + Resultaat: %2 + + + + %1 rows returned in %2ms + %1 records geretourneerd in %2ms + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + Vacuümeren of pragma's omzetten zal jouw huidige transactie committeren. +Weet je het zeker? + + + + Execution finished with errors. + Uitvoering voltooid met fouten. + + + + Execution finished without errors. + Uitvoering voltooid zonder fouten. + + + + Choose text files + Kies tekstbestanden + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + Er zijn fouten opgetreden tijdens het opslaan van het databasebestand. Daarom zijn niet alle wijzigingen opgeslagen. Je dient de volgende fouten eerst op te lossen: + +%1 + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + Weet je zeker dat je alle wijzigingen die je gemaakt hebt in databasebestand '%1', nadat je deze voor het laatst opgeslagen hebt, ongedaan wilt maken? + + + + Choose a file to import + Kies een bestand om te importeren + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + Wil je een nieuw databasebestand aanmaken om de geïmporteerde gegevens in te bewaren? +Als je nee antwoordt, wordt geprobeerd om de gegevens uit het SQL-bestand te importeren in de huidige database. + + + + File %1 already exists. Please choose a different name. + Bestand %1 bestaat al. Kies een andere naam. + + + + Error importing data: %1 + Fout bij het importeren van de gegevens: %1 + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + Importeren voltooid. Sommige vreemde-sleutelbeperkingen werden echter geschonden. Repareer deze voordat je opslaat. + + + + Import completed. + Importeren voltooid. + + + + Delete View + View verwijderen + + + + Modify View + View wijzigen + + + + Delete Trigger + Trigger verwijderen + + + + Modify Trigger + Trigger wijzigen + + + + Delete Index + Index verwijderen + + + + Modify Index + Index wijzigen + + + + Modify Table + Tabel wijzigen + + + + Opened '%1' in read-only mode from recent file list + '%1' geopend vanuit recent-geopende-bestandenlijst in alleen-lezenmodus + + + + Opened '%1' from recent file list + '%1' geopend vanuit recent-geopende-bestandenlijst + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (alleen-lezen) + + + + Open Database or Project + Database of project openen + + + + Attach Database... + Database koppelen... + + + + Import CSV file(s)... + CSV-bestand(-en) importeren... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + Selecteer de handeling die toegepast moet worden op het gesleepte bestand. <br/>Let op: alleen 'Importeren' kan op meerdere bestanden tegelijk toegepast worden. + Selecteer de handeling die toegepast moet worden op de gesleepte bestanden). <br/>Let op: alleen 'Importeren' kan op meerdere bestanden tegelijk toegepast worden. + + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + Pragma's omzetten zal jouw huidige transactie committeren. +Weet je het zeker? + + + + Do you want to save the changes made to SQL tabs in a new project file? + Wil je de wijzigingen die je in de SQL-tabbladen gemaakt hebt opslaan in een nieuw projectbestand? + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + Wil je de wijzigingen die je in de SQL-tabbladen gemaakt hebt opslaan in het projectbestand '%1'? + + + + Do you want to save the changes made to the SQL file %1? + Wil je de wijzigingen die je in SQL-bestand %1 gemaakt hebt opslaan? + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + De instructies in dit tabblad worden nog steeds uitgevoerd. Het sluiten van het tabblad zal het uitvoeren stoppen en de database daarmee mogelijk inconsistent maken. Weet je zeker dat je het tabblad wilt sluiten? + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + Dit projectbestand gebruikt een oud bestandsformaat, omdat het gemaakt is met versie 3.10 of lager van DB-browser voor SQLite. Dit bestandsformaat wordt nog steeds volledig ondersteund, maar we adviseren je om al jouw projectbestanden om te zetten naar het nieuwe bestandsformaat, omdat oudere formaten in de toekomst mogelijk niet meer ondersteund zullen worden. Je kunt je bestanden omzetten door ze simpelweg te openen en opnieuw op te slaan. + + + + Select SQL file to open + Selecteer SQL-bestanden om te openen + + + + Text files(*.sql *.txt);;All files(*) + Tekstbestanden(*.sql *.txt);;Alle bestanden(*) + + + + Select file name + Selecteer bestandsnaam + + + + Select extension file + Selecteer extensiebestand + + + + Extension successfully loaded. + Extensie laden gelukt. + + + + Error loading extension: %1 + Fout bij het laden van extensie: %1 + + + + Could not find resource file: %1 + Kon het bronbestand niet vinden: %1 + + + + + Don't show again + Toon dit niet nogmaals + + + + New version available. + Nieuwe versie beschikbaar. + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Er is een nieuwe versie van DB-browser voor SQLite beschikbaar (%1.%2.%3).<br/><br/>Je kunt deze downloaden op <a href='%4'>%4</a>. + + + + Choose a project file to open + Kies een projectbestand om te openen + + + + DB Browser for SQLite project file (*.sqbpro) + DB-browser voor SQLite-projectbestanden (*.sqbpro) + + + + Could not open project file for writing. +Reason: %1 + Kon het projectbestand niet openen om naar te schrijven. +Reden: %1 + + + + Project saved to file '%1' + Project opgeslagen in bestand '%1' + + + + Collation needed! Proceed? + Collatie vereist! Doorgaan? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + Een table in deze database vereist een speciale collatiefunctie '%1' die deze applicatie niet kan bieden zonder extra informatie. +Wees je er bewust van dat als je doorgaat er slechte dingen kunnen gebeuren met jouw database. +Maak een backup! + + + + creating collation + collatie aan het maken + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + Geef een nieuwe naam voor het SQL-tabblad. Gebruik het '&&'-teken om de een van de volgende tekens als sneltoets in te stellen. + + + + Please specify the view name + Geef de viewnaam op + + + + There is already an object with that name. Please choose a different name. + Er bestaat al een object met die naam. Kies een andere naam. + + + + View successfully created. + View maken gelukt. + + + + Error creating view: %1 + Fout bij het maken van view: %1 + + + + This action will open a new SQL tab for running: + Deze handeling opent een nieuw SQL-tabblad om het volgende uit te voeren: + + + + This action will open a new SQL tab with the following statements for you to edit and run: + Deze handeling opent een nieuw SQL-tabblad met volgende instructies die je zodoende kunt bewerken en uitvoeren: + + + + Press Help for opening the corresponding SQLite reference page. + Druk op Help om de bijbehorende SQLlite-referentiepagina te openen. + + + + Busy (%1) + Bezig (%1) + + + + Rename Tab + Tabblad hernoemen + + + + Duplicate Tab + Tabblad dupliceren + + + + Close Tab + Tabblad sluiten + + + + Opening '%1'... + Opent '%1'... + + + + There was an error opening '%1'... + Fout bij het openen van '%1'... + + + + Value is not a valid URL or filename: %1 + Waarde is geen geldige URL of bestandsnaam: %1 + + + + NullLineEdit + + + Set to NULL + Omzetten naar NULL + + + + Alt+Del + + + + + PlotDock + + + Plot + Plot + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>Dit paneel toont de lijst van kolommen van de tabel die nu doorgebladerd wordt of van de zojuist uitgevoerde SQL-opdracht. Je kunt de kolommen selecteren die je wilt gebruiken als X- of Y-assen in de plot hieronder. De tabel toont gedetecteerde astypen die de plot zullen beïnvloeden. Voor de Y-as kun je alleen numerieke kolommen gebruiken, maar voor de X-as kun je de volgende gegevenstypen selecteren:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Datum/Tijd</span>: tekenreeksen volgens het formaat &quot;yyyy-MM-dd hh:mm:ss&quot; of &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Datum</span>: tekenreeksen volgens het formaat &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tijd</span>: tekenreeksen volgens het formaat &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: andersoortige tekenreeksformaten. Als je dit selecteert voor de X-as dan wordt een staafdiagram geplot met de kolomwaarden als labels voor de staven</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeriek</span>: gehele of reële getallen</li></ul><p>Door dubbel te klikken op de Y-cellen kun je de kleur voor die grafiek aanpassen.</p></body></html> + + + + Columns + Kolommen + + + + X + X + + + + Y1 + Y1 + + + + Y2 + Y2 + + + + Axis Type + Astype + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + Hier wordt de plot getekend zodra je hierboven x- en y-waarden selecteert. + +Klik op punten om deze in de plot en in de tabel te selecteren. Ctrl+klik om meerdere punten te selecteren. + +Gebruik het muiswiel om te zoomen en sleep met de muis om het asbereik te veranderen. + +Selecteer de as of aslabels om alleen in die richting te slepen en te zoomen. + + + + Line type: + Lijntype: + + + + + None + Geen + + + + Line + Lijn + + + + StepLeft + Stap links + + + + StepRight + Stap rechts + + + + StepCenter + Stap gecentreerd + + + + Impulse + Impuls + + + + Point shape: + Puntvorm: + + + + Cross + Kruis + + + + Plus + Plus + + + + Circle + Cirkel + + + + Disc + Discus + + + + Square + Vierkant + + + + Diamond + Diamant + + + + Star + Ster + + + + Triangle + Driehoek + + + + TriangleInverted + Geïnverteerde driehoek + + + + CrossSquare + Vierkant met kruis + + + + PlusSquare + Vierkant met plus + + + + CrossCircle + Cirkel met kruis + + + + PlusCircle + Cirkel met plus + + + + Peace + Vredesteken + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>Huidige plot opslaan...</p><p>Bestandsformaat volgens extensie (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + Huidige plot opslaan... + + + + + Load all data and redraw plot + Laad alle gegevens en teken plot opnieuw + + + + Copy + Kopiëren + + + + Print... + Afdrukken... + + + + Show legend + Legenda tonen + + + + Stacked bars + Gestapelde staven + + + + Date/Time + Datum/Tijd + + + + Date + Datum + + + + Time + Tijd + + + + + Numeric + Numeriek + + + + Label + Label + + + + Invalid + Ongeldig + + + + + + Row # + Record # + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + Laad alle gegevens en teken plot opnieuw. +Waarschuwing: door het partiële laadmechanisme zijn nog niet alle gegevens zijn uit de tabel opgehaald. + + + + Choose an axis color + Kies een askleur + + + + Choose a filename to save under + Kies een bestandsnaam om in op te slaan + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;Alle bestanden(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + Dit plot bevat curves, maar de geselecteerde lijnstijl kan alleen toegepast worden op diagrammen die gesorteerd worden op X. Sorteer daarom de tabel of SQL-opdracht op X of selecteer een stijl die curves ondersteunt: Geen of Lijn. + + + + Loading all remaining data for this table took %1ms. + Het laden van alle overgebleven gegevens voor deze tabel duurde %1ms. + + + + PreferencesDialog + + + Preferences + Voorkeuren + + + + &General + &Algemeen + + + + Default &location + Standaard&locatie + + + + Remember last location + Onthoud laatste locatie + + + + Always use this location + Gebruik altijd deze locatie + + + + Remember last location for session only + Onthoud laatste locatie alleen gedurende sessie + + + + + + ... + ... + + + + Lan&guage + &Taal + + + + Toolbar style + Werkbalkstijl + + + + + + + + Only display the icon + Toon alleen het icoon + + + + + + + + Only display the text + Toon alleen de tekst + + + + + + + + The text appears beside the icon + Toon de tekst naast het icoon + + + + + + + + The text appears under the icon + Toon de tekst onder het icoon + + + + + + + + Follow the style + Volg de stijl + + + + Show remote options + Toon 'Toegang op afstand'-opties + + + + + + + + + + + + enabled + inschakelen + + + + Automatic &updates + Automatische &updates + + + + DB file extensions + Databasebestandsextensies + + + + Manage + Beheren + + + + Main Window + Hoofdvenster + + + + Database Structure + Databasestructuur + + + + Browse Data + Gegevensbrowser + + + + Execute SQL + SQL uitvoeren + + + + Edit Database Cell + Databasecel bewerken + + + + When this value is changed, all the other color preferences are also set to matching colors. + Indien deze waarde aangepast wordt, dan worden alle andere kleurvoorkeuren ook aangepast naar die stijl. + + + + Follow the desktop style + Volg de desktopstijl + + + + Dark style + Donkere stijl + + + + Application style + Applicatiestijl + + + + This sets the font size for all UI elements which do not have their own font size option. + Dit bepaalt het lettertypegrootte voor gebruikersinterface-elementen die geen eigen lettertypegrootte-instelling hebben. + + + + Font size + Lettertypegrootte + + + + &Database + &Database + + + + Database &encoding + Database&codering + + + + Open databases with foreign keys enabled. + Databases openen met vreemde-sleutelondersteuning ingeschakeld. + + + + &Foreign keys + &Vreemde sleutels + + + + Remove line breaks in schema &view + Verwijder regeleinden in schema&weergave + + + + Prefetch block si&ze + Prefetch-&blokgrootte + + + + Default field type + Standaard veldgegevenstype + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + Indien geselecteerd worden de regeleinden verwijderd uit de schemakolom van het databasestructuurtabblad, -dock en uit geprinte afdrukken. + + + + Database structure font size + Lettertypegrootte databasestructuur + + + + SQ&L to execute after opening database + S&QL uitvoeren na het openen van database + + + + Data &Browser + Gegevens&browser + + + + Font + Lettertype + + + + &Font + &Lettertype + + + + Font si&ze + Lettertype&grootte + + + + Content + Inhoud + + + + Symbol limit in cell + Symboollimiet in cel + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + Dit bepaalt het maximum aantal items dat voor sommige functionaliteiten met intensieve berekeningen toegestaan is: +Het maximum aantal records in een tabel om waarde-aanvulling in te schakelen aan de hand van de huidige invoer in de kolom. +Het maximaal aantal indices in een selectie om sommen en gemiddelden berekenen in te schakelen. +Voer 0 in om deze functionaliteiten uit te schakelen. + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + Dit bepaalt het maximum aantal records in een tabel om waarde-aanvulling in te schakelen aan de hand van de huidige invoer in de kolom. +Voer 0 in om waarde-aanvulling uit te schakelen. + + + + Threshold for completion and calculation on selection + Drempelwaarde voor aanvullingen en berekeningen op selecties + + + + Show images in cell + Toon afbeeldingen in cel + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + Indien geselecteerd wordt in de cellen een voorvertoning getoond van BLOBs die afbeeldingsgegevens bevatten. Dit kan de prestaties van de gegevensbrowser echter beïnvloeden. + + + + Field display + Veldweergave + + + + Displayed &text + Weergegeven &tekst + + + + Binary + Binair + + + + NULL + NULL + + + + Regular + Gewoon + + + + + + + + + Click to set this color + Klik om een kleur te selecteren + + + + Text color + Tekstkleur + + + + Background color + Achtergrondkleur + + + + Preview only (N/A) + Enkel voorvertoning (N/B) + + + + Filters + Filters + + + + Escape character + Escape-teken + + + + Delay time (&ms) + Vertragingstijd (&ms) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + Bepaalt de tijd die gewacht wordt voordat een nieuw filter wordt toegepast. Voer 0 in om wachten uit te schakelen. + + + + &SQL + &SQL + + + + Settings name + Instellingsnaam + + + + Context + Context + + + + Colour + Kleur + + + + Bold + Vet + + + + Italic + Cursief + + + + Underline + Onderstreept + + + + Keyword + Sleutelwoord + + + + Function + Functie + + + + Table + Tabel + + + + Comment + Commentaar + + + + Identifier + Entiteitsnaam + + + + String + Tekenreeks + + + + Current line + Huidige regel + + + + Background + Achtergrond + + + + Foreground + Voorgrond + + + + SQL editor &font + &Lettertype SQL-bewerker + + + + SQL &editor font size + Lettertypegrootte SQL-b&ewerker + + + + SQL &results font size + Lettertypegrootte SQL-&resultaten + + + + Tab size + Tabbreedte + + + + &Wrap lines + Regelteru&gloop toepassen + + + + Never + Nooit + + + + At word boundaries + Op woordbegrenzingen + + + + At character boundaries + Op letterbegrenzingen + + + + At whitespace boundaries + Op witruimtebegrenzingen + + + + &Quotes for identifiers + &Aanhalingstekens voor entiteitsnamen + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + Kies het aanhalingstekensbeleid van de applicatie voor het demarceren van entiteitsnamen in SQL-code. + + + + "Double quotes" - Standard SQL (recommended) + "Dubbele aanhalingstekens" - Standaard SQL (aanbevolen) + + + + `Grave accents` - Traditional MySQL quotes + `Accent graves` - Traditionele MySQL aanhalingstekens + + + + [Square brackets] - Traditional MS SQL Server quotes + [Rechte haakjes] - Traditionele MS SQL-Server aanhalingstekens + + + + Code co&mpletion + Code-aan&vulling + + + + Keywords in &UPPER CASE + Sleutelwoorden in &BOVENKAST + + + + When set, the SQL keywords are completed in UPPER CASE letters. + Indien geselecteerd worden SQL-sleutelwoorden voltooid in BOVENKAST-letters. + + + + Error indicators + Foutindicatoren + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + Indien geselecteerd dan worden de SQL-coderegels die de fouten tijdens de laatste uitvoering veroorzaakten gemarkeerd en het resultatenkader toont de fout op de achtergrond + + + + Hori&zontal tiling + Hori&zontaal tegelen + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + Indien geselecteerd worden de SQL-bewerker en de resultatenweergavetabel naast elkaar, in plaats van over elkaar heen, getoond. + + + + Close button on tabs + Sluitknoppen op tabbladen + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + Indien geselecteerd krijgen SQL-bewerkingstabbladen een sluitknop. Je kunt echter ook altijd het contextmenu of sneltoetsen gebruiken om ze te sluiten. + + + + &Extensions + &Extensies + + + + Select extensions to load for every database: + Selecteer extensies die voor iedere database geladen dienen te worden: + + + + Add extension + Extensie toevoegen + + + + Remove extension + Extensie verwijderen + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>Hoewel SQLite de REGEXP operator ondersteunt heeft ze geen reguliere-expressiesalgoritme<br/>geïmplementeerd, maar doet ze hiervoor een beroep op de hostapplicatie. DB-browser voor SQLite<br/>implementeert dit algoritme voor jou, zodat je REGEXP direct kunt gebruiken.<br/>Omdat er echter meerdere implementaties mogelijk zijn en je mogelijk een andere implementatie<br/>wilt gebruiken, staat het je vrij om onze implementatie uit te schakelen en je eigen implementatie te laden<br/>via een extensie. Hiervoor is een herstart van de applicatie nodig.</p></body></html> + + + + Disable Regular Expression extension + Schakel extensie voor reguliere expressies uit + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html><head/><body><p>SQLite biedt een SQL-functie om extensies te laden vanuit een gedeelde bibliotheek. Activeer deze optie als je de <span style=" font-style:italic;">load_extension()</span> functie vanuit SQL-code wilt aanroepen.</p><p>Om veiligheidsredenen is deze manier van extensies laden standaard uitgeschakeld en dient via deze optie in te worden geschakeld. Je kunt extensies echter altijd laden via de gebruikersinterface, zelfs als deze optie uitgeschakeld is.</p></body></html> + + + + Allow loading extensions from SQL code + Extensies laden vanuit SQL-code toestaan + + + + Remote + Toegang op afstand + + + + Your certificates + Jouw certificaten + + + + File + Bestand + + + + + Subject CN + Subject GN + + + + Subject Common Name + Subject Gebruikelijk Naam + + + + Issuer CN + Verstrekker GN + + + + Issuer Common Name + Verstrekker Gebruikelijke Naam + + + + + Valid from + Geldig vanaf + + + + + Valid to + Geldig tot + + + + + Serial number + Serienummer + + + + CA certificates + CA-certificaten + + + + Common Name + Gebruikelijke naam + + + + Subject O + Subject O + + + + Organization + Organisatie + + + + Clone databases into + Database klonen naar + + + + Proxy + Proxy + + + + Configure + Instellen + + + + + Choose a directory + Kies een map + + + + The language will change after you restart the application. + De taal verandert nadat je de applicatie opnieuw hebt opgestart. + + + + Select extension file + Selecteer extensiebestand + + + + Extensions(*.so *.dylib *.dll);;All files(*) + Extensies(*.so *.dylib *.dll);;Alle bestanden(*) + + + + Import certificate file + Certificaatbestand importeren + + + + No certificates found in this file. + Geen certificaten gevonden in dit bestand. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + Weet je zeker dat je dit certificaat wilt verwijderen? Alle certificaatgegevens zullen worden verwijderd uit de applicatie-instellingen! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + Weet je zeker dat je alle opgeslagen instellingen wilt verwijderen? +Al jouw instellingen zullen worden verwijderd en de standaardinstellingen zullen worden gebruikt. + + + + ProxyDialog + + + Proxy Configuration + Proxy-instellingen + + + + Pro&xy Type + Pro&xytype + + + + Host Na&me + &Hostnaam + + + + Port + &Poort + + + + Authentication Re&quired + &Authenticatie vereist + + + + &User Name + &Gebruikersnaam + + + + Password + &Wachtwoord + + + + None + Geen + + + + System settings + Systeeminstellingen + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + Left + Links + + + + Right + Rechts + + + + Center + Gecentreerd + + + + Justify + Uitgevuld + + + + All files (*) + Alle bestanden (*) + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + SQLite-databasebestanden (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + DB-browser voor SQLite-projectbestanden (*.sqbpro) + + + + SQL Files (*.sql) + SQL-bestanden (*.sql) + + + + All Files (*) + Alle bestanden (*) + + + + Text Files (*.txt) + Tekstbestanden (*.txt) + + + + Comma-Separated Values Files (*.csv) + Kommagescheiden bestanden (*.csv) + + + + Tab-Separated Values Files (*.tsv) + Tabgescheiden bestanden (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + Scheidingstekengescheiden bestanden (*.dsv) + + + + Concordance DAT files (*.dat) + Concordance-DAT-bestanden (*.dat) + + + + JSON Files (*.json *.js) + JSON-bestanden (*.json *.js) + + + + XML Files (*.xml) + XML-bestanden (*.xml) + + + + Binary Files (*.bin *.dat) + Binaire bestanden (*.bin *.dat) + + + + SVG Files (*.svg) + SVG-bestanden (*.svg) + + + + Hex Dump Files (*.dat *.bin) + Hexdump-bestand (*.dat *.bin) + + + + Extensions (*.so *.dylib *.dll) + Extensies (*.so *.dylib *.dll) + + + + Error importing data + Fout bij het importeren van de gegevens + + + + from record number %1 + van recordnummer %1 + + + + . +%1 + . +%1 + + + + Importing CSV file... + CSV-bestand importeren... + + + + Cancel + Annuleren + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + SQLite-databasebestanden (*.db *.sqlite *.sqlite3 *.db3) + + + + RemoteCommitsModel + + + Commit ID + Commit ID + + + + Message + Bericht + + + + Date + Datum + + + + Author + Auteur + + + + Size + Grootte + + + + Authored and committed by %1 + Geautoriseerd en gecommitteerd door %1 + + + + Authored by %1, committed by %2 + Geautoriseerd door %1, gecommitteerd door %2 + + + + RemoteDatabase + + + Error opening local databases list. +%1 + Fout bij het openen van lijst met lokale databases. +%1 + + + + Error creating local databases list. +%1 + Fout bij het maken van lijst met lokale databases. +%1 + + + + RemoteDock + + + Remote + Toegang op afstand + + + + Identity + Identiteit + + + + Push currently opened database to server + Push huidig geopende database naar server + + + + DBHub.io + DBHub.io + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + <html><head/><body><p>In dit paneel kun je externe databases van de dbhub.io website toevoegen aan DB-browser voor SQLite. Allereerst heb je een identiteit nodig:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Log in op de dbhub.io website (gebruik bijvoorbeeld jouw GitHub account of wat je maar wilt)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Klik de knop &quot;Generate client certificate&quot; (dat is jouw identiteit). Daarmee krijg je een certificaatbestand (sla deze op, op jouw lokale schijf).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Ga vervolgens naar het tabblad 'Toegang op afstand', in het instellingenvenster van DB-browser voor SQLite. Klik op de knop om een nieuw certificaat toe te voegen aan DB-browser for SQLite en kies dan het zojuist gedownloade certificaatbestand.</li></ol><p>Nu toont het paneel 'Toegang op afstand' jouw identiteit en kun je externe databases toevoegen.</p></body></html> + + + + Local + Lokaal + + + + Current Database + Huidige database + + + + Clone + Klonen + + + + User + Gebruiker + + + + Database + Database + + + + Branch + Tak + + + + Commits + Commits + + + + Commits for + Commits voor + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html><head/><body><p>Je gebruikt momenteel een ingebouwde, alleen-lezenindentiteit. Om jouw database te uploaden dien je jouw DBHub.io-account in te stellen en te gebruiken.</p><p>Nog geen DBHub.io account? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Maak er nu een aan</span></a> en importeer jouw certificaat <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">hier</span></a> om jouw databases te delen.</p><p>Bezoek <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">deze link</span></a> voor online hulp.</p></body></html> + + + + Back + Terug + + + + Delete Database + Database verwijderen + + + + Delete the local clone of this database + De lokale kloon van deze database verwijderen + + + + Open in Web Browser + In webbrowser openen + + + + Open the web page for the current database in your browser + De webpagina van de huidige database openen in je browser + + + + Clone from Link + Van link klonen + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + Hiermee download je een externe database om lokaal te bewerken aan de hand van de URL die verstrekt werd op de webpagina van de database. + + + + Refresh + Verversen + + + + Reload all data and update the views + Alle gegevens herladen en de views updaten + + + + F5 + + + + + Clone Database + Database klonen + + + + Open Database + Database openen + + + + Open the local copy of this database + Lokale kopie van deze database openen + + + + Check out Commit + Commit inladen + + + + Download and open this specific commit + Deze specifieke downloaden en openen + + + + Check out Latest Commit + Laatste commit inladen + + + + Check out the latest commit of the current branch + De laatste commit van de huidige tak inladen + + + + Save Revision to File + Revisie opslaan in bestand + + + + Saves the selected revision of the database to another file + Slaat de geselecteerde revisie van de database op in een ander bestand + + + + Upload Database + Database uploaden + + + + Upload this database as a new commit + Deze database uploaden als een nieuwe commit + + + + Select an identity to connect + Selecteer een identiteit om te verbinden + + + + Public + Openbaar + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + Dit downloadt een database van een externe server om lokaal te bewerken. +Voer een URL in van waaruit gekloond moet worden. Je kunt deze URL +genereren door te klikken op de 'Clone Database in DB4S'-knop op de +webpagina van de database. + + + + Invalid URL: The host name does not match the host name of the current identity. + Ongeldige URL: De hostnaam komt niet overeen met de hostnaam van de huidige identiteit. + + + + Invalid URL: No branch name specified. + Ongeldige URL: Geen taknaam opgegeven. + + + + Invalid URL: No commit ID specified. + Ongeldige URL: Geen commit-ID opgegeven. + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + Je hebt de lokale kloon van de database aangepast. Als je deze commit inlaadt overschrijft dit lokale wijzigingen. +Weet je zeker dat je door wilt gaan? + + + + The database has unsaved changes. Are you sure you want to push it before saving? + De database heeft niet-opgeslagen wijzigingen. Weet je zeker dat je wilt pushen voordat je opslaat? + + + + The database you are trying to delete is currently opened. Please close it before deleting. + De database die je probeert te verwijderen is op het ogenblik geopend. Sluit deze voordat je deze verwijdert. + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + Dit verwijdert de lokale database met alle wijzigingen die je nog niet gecommitteerd hebt. Weet je zeker dat je deze database wilt verwijderen? + + + + RemoteLocalFilesModel + + + Name + Naam + + + + Branch + Tak + + + + Last modified + Laatst gewijzigd + + + + Size + Grootte + + + + Commit + Commit + + + + File + Bestand + + + + RemoteModel + + + Name + Naam + + + + Last modified + Laatst gewijzigd + + + + Size + Grootte + + + + Commit + Commit + + + + Size: + Grootte: + + + + Last Modified: + Laatst gewijzigd: + + + + Licence: + Licentie: + + + + Default Branch: + Standaardtak: + + + + RemoteNetwork + + + Choose a location to save the file + Kies een locatie om het bestand in op te slaan + + + + Error opening remote file at %1. +%2 + Fout bij het openen van extern bestand %1. +%2 + + + + Error: Invalid client certificate specified. + Fout: ongeldig certificaatbestand opgegeven. + + + + Please enter the passphrase for this client certificate in order to authenticate. + Geef de toegangsfrase voor dit client-certificaat op om te authenticeren. + + + + Cancel + Annuleren + + + + Uploading remote database to +%1 + Externe database wordt geüploadt naar +%1 + + + + Downloading remote database from +%1 + Externe database wordt gedownload vanaf +%1 + + + + + Error: The network is not accessible. + Fout: het netwerk is niet toegankelijk. + + + + Error: Cannot open the file for sending. + Fout: kan het te verzenden bestand niet openen. + + + + RemotePushDialog + + + Push database + Database pushen + + + + Database na&me to push to + Database&naam om naar te pushen + + + + Commit message + Commitbericht + + + + Database licence + Databaselicentie + + + + Public + Openbaar + + + + Branch + Tak + + + + Force push + Push forceren + + + + Username + Gebruikersnaam + + + + Database will be public. Everyone has read access to it. + Database wordt openbaar. Iedereen zal leestoegang hebben. + + + + Database will be private. Only you have access to it. + Database wordt privé. Alleen jij zal leestoegang hebben. + + + + Use with care. This can cause remote commits to be deleted. + Wees hier voorzichtig mee; dit kan ervoor zorgen dat externe commits verwijderd worden. + + + + RunSql + + + Execution aborted by user + Uitvoering afgebroken door gebruiker + + + + , %1 rows affected + , %1 records getroffen + + + + query executed successfully. Took %1ms%2 + Opdracht succesvol uitgevoerd. Duurde %1ms%2 + + + + executing query + opdracht wordt uitgevoerd + + + + SelectItemsPopup + + + A&vailable + Beschi&kbaar + + + + Sele&cted + Gese&lecteerd + + + + SqlExecutionArea + + + Form + Formulier + + + + Find previous match [Shift+F3] + Vorige overeenkomst zoeken [Shift+F3] + + + + Find previous match with wrapping + Vorige overeenkomst zoeken met terugloop + + + + Shift+F3 + + + + + The found pattern must be a whole word + Het gevonden patroon moet een heel woord zijn + + + + Whole Words + Hele woorden + + + + Text pattern to find considering the checks in this frame + Zoekterm die gezocht moet worden met de geselecteerde opties in dit kader + + + + Find in editor + Zoek in bewerker + + + + The found pattern must match in letter case + De gevonden overeenkomst moet identiek zijn in onder- en bovenkast + + + + Case Sensitive + Identieke onder-/bovenkast + + + + Find next match [Enter, F3] + Volgende overeenkomst zoeken [Enter, F3] + + + + Find next match with wrapping + Volgende overeenkomst zoeken met terugloop + + + + F3 + + + + + Interpret search pattern as a regular expression + Interpreteer zoekterm als reguliere expressie + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Indien geselecteerd wordt de zoekterm geïnterpreteerd als een UNIX reguliere expressie. Zie hiervoor <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Reguliere Expressies in Wikibooks (Engels)</a>.</p></body></html> + + + + Regular Expression + Reguliere expressie + + + + + Close Find Bar + Zoekbalk sluiten + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html><head/><body><p>Resultaten van de laatst uitgevoerde opdrachten.</p><p>Je kunt dit paneel ook inklappen en in plaats daarvan het <span style=" font-style:italic;">SQL-log</span>dock gebruiken met <span style=" font-style:italic;">Gebruiker</span> geselecteerd.</p></body></html> + + + + This field shows the results and status codes of the last executed statements. + Dit veld toont de resultaten en statuscodes van de laatst uitgevoerde opdrachten. + + + + Results of the last executed statements + Resultaten van de laatst uitgevoerde opdrachten + + + + Couldn't read file: %1. + Kon het bestand niet lezen: %1. + + + + + Couldn't save file: %1. + Kon het bestand niet opslaan: %1. + + + + Your changes will be lost when reloading it! + Jouw wijzigingen zullen verloren gaan als je het opnieuw laadt! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + Het bestand '%1' is aangepast door een ander programma. Wil je het herladen?%2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) De abs(X) functie retourneert de absolute waarde van het numerieke argument X. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () De changes() functie retourneert het aantal databaserecords dat gewijzigd, ingevoegd +of verwijderd is door de meest recent voltooide INSERT-, DELETE- of UPDATE-instructie. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) De char(X1,X2,...,XN) functie retourneert een tekenreeks bestaande uit tekens +met de respectievelijke unicode-codepuntwaarden van de gehele getallen X1 tot en met XN. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) De coalesce(X,Y,...) functie retourneert een kopie van het eerste niet-NULL argument, of NULL als alle argument NULL zijn + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) De glob(X,Y) functie is het equivalent van de expressie "Y GLOB X". + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) De ifnull(X,Y) functie retourneert een kopie van het eerste niet-NULL argument, of NULL als beide argumenten NULL zijn. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) De instr(X,Y) functie zoekt het eerste voorkomen van tekenreeks Y in tekenreeks X +en retourneert het aantal voorgaande tekens plus 1, of 0 als Y niet voorkomt in X. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) De hex(X) functie interpreteert het argument als een BLOB en retourneert de +hexadecimale voorstelling van de BLOB-inhoud als tekenreeks in bovenkast. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () De last_insert_rowid() functie retourneert het ROWID van het laatste record dat +door de databaseverbinding die de functie aanriep is ingevoegd. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) Voor een tekenreeks X, retourneert de length(X) functie het aantal tekens (en niet bytes) in X voor het eerste NUL-teken. + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X,Y) De like(X,Y) functie wordt gebruikt als implementatie voor de expressie "Y LIKE X". + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) De like(X,Y,Z) functie wordt gebruikt als implementatie voor de expressie "Y LIKE X ESCAPE Z". + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) De load_extension(X) functie laadt SQLite extensies uit een gedeeld biblitheekbestand genaamd X. +Voor het gebruik van deze functie is autorisatie vanuit Instellingen nodig. + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X,Y) De load_extension(X,Y) functie laadt SQLite extensies uit een gedeeld biblitheekbestand +genaamd X gebruikmakend van toegangspunt Y. +Voor het gebruik van deze functie is autorisatie vanuit Instellingen nodig. + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) De lower(X) functie retourneert een kopie van de tekenreeks X waarbij alle ASCII-tekens omgezet worden naar onderkast. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ltrim(X) verwijdert alle spaties aan de linkerkant van X. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) De ltrim(X,Y) functie retourneert een tekenreeks die gevormd wordt door alle +tekens die in Y voorkomen te verwijderen van de linkerkant van X. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) De max(X,Y,...) functie accepteert een variabel aantal argumenten en +retourneert het argument met de hoogste waarde, of NULL als enig argument NULL is. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) De min(X,Y,...) functie accepteert een variabel aantal argumenten en retourneert het argument met de laagste waarde. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) De nullif(X,Y) functie retourneert het eerste argument als de argumenten +verschillend zijn en NULL als de argumenten hetzelfde zijn. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) De printf(FORMAT,...) SQL functie werkt zoals de sqlite3_mprintf() functie +in de C-taal en de printf() functie uit de standaard C-bibliotheek. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) De quote(X) functie retourneert de tekst van een SQL literaal met de waarde van +het argument, geschikt om in te sluiten in een SQL-instructie. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () De random() functie retourneert een pseudowillekeurig geheel getal tussen -9223372036854775808 en +9223372036854775807. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) De randomblob(N) functie retourneert een N-byte blob met pseudowillekeurige bytes. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) De replace(X,Y,Z) functie retourneert een tekenreeks samengesteld door alle +voorvallen van tekenreeks Y in tekenreeks X te vervangen door tekenreeks Z. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) De round(X) functie retourneert het zwevendekommagetal X afgerond naar nul cijfers achter de komma. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) De round(X,Y) functie retourneert het zwevendekommagetal X afgerond naar Y cijfers achter de komma. + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) rtrim(X) verwijdert alle spaties aan de rechterkant van X. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) De rtrim(X,Y) functie retourneert een tekenreeks die gevormd wordt door alle +tekens die in Y voorkomen te verwijderen van de rechterkant van X. + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) De soundex(X) functie retourneert de soundex-codering van tekenreeks X als tekenreeks. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) substr(X,Y) retourneert alle tekens van de tekenreeks X, van het Y-ste teken tot en met het laatste. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y,Z) De substr(X,Y,Z) functie retourneert het deel van de tekenreeks X, vanaf het Y-ste teken, en met lengte Z. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () De total_changes() functie retourneert het aantal databaserecords dat gewijzigd is +door INSERT-, DELETE- of UPDATE-instructies sinds de databaseconnectie geopend werd. + + + + (X) trim(X) removes spaces from both ends of X. + (X) trim(X) verwijdert alle spaties aan beide kanten van X. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) De trim(X,Y) functie retourneert een tekenreeks die gevormd wordt door alle tekens +die in Y voorkomen te verwijderen van beide kanten van X. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) De typeof(X) functie retourneert een tekenreeks die aangeeft wat het gegevenstype van expressie X is. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) De unicode(X) functie retourneert het numerieke unicode-codepunt van het eerste teken in de tekenreeks X. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) De upper(X) functie retourneert een kopie van de tekenreeks X waarbij alle +onderkast ASCII-tekens omgezet worden naar hun bovenkast equivalent. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) De zeroblob(N) functie retourneert een blob met N 0x00 bytes. + + + + + + + (timestring,modifier,modifier,...) + (tijdtekenreeks,modificator,modificator,...) + + + + (format,timestring,modifier,modifier,...) + (formaat,tijdtekenreeks,modificator,modificator,...) + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) De avg() functie retourneert de gemiddelde waarde van alle niet-NULL X in een groep. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) De count(X) functie retourneert het aantal maal dat X niet NULL is in een groep. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) De group_concat(X) functie retourneert een tekenreeks die de aaneenschakeling is van alle niet-NULL waarden van X. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) De group_concat(X,Y) functie retourneert een tekenreeks die de aaneenschakeling +is van alle niet-NULL waarden van X, met Y als scheidingsteken(-reeks). + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) De max(X) aggregaatfunctie retourneert de hoogste waarde van alle waarden in de groep. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) De min(X) aggregaatfunctie retourneert de laagste niet-NULL waarde van alle waarden in de groep. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) De sum(X) en total(X) aggregaatfuncties retourneren de opsomming van alle niet-NULL waarden in de groep. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () Het nummer van de rij binnen de huidige partitie. Rijen worden genummerd vanaf 1 +in de volgorde zoals gedefinieerd door de ORDER BY clausule in de vensterdefinitie, +of anders in arbitraire volgorde. + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Het row_number() van de eerste peer in elke groep - de rang van de huidige rij +met hiaten. Als er geen ORDER BY clausule is, dan worden alle rijen als peer +beschouwd en retourneert deze functie altijd 1. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Het nummer van de peergroep van de huidige rij, binnen diens partitie - de rang +van de huidige rij zonder hiaten. Partities worden genummerd vanaf 1 in de volgorde +zoals gedefinieerd door de ORDER BY clausule in de vensterdefinitie. Als er geen +ORDER BY clausule is, dan worden alle rijen als peer beschouwd en retourneert deze functie altijd 1. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () Ondanks de naam retourneert deze functie altijd een waarde tussen 0,0 en 1,0 +gelijk aan (rang - 1)/(partitierijen - 1), waarbij rang de waarde is die geretourneerd +wordt door de ingebouwde vensterfunctie rank() en partitierijen het totaal aantal +rijen in de partitie is. Wanneer de partitie maar een rij bevat dan retourneert deze functie 0,0. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () De cumulatieve distributie. Berekend als rijnummer/partitierijen, waarbij rijnummer +de waarde is die geretourneerd wordt door row_number() voor de laatste peer in de +groep en partitierijen het aantal rijen in de partitie is. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) Argument N wordt behandeld als geheel getal. Deze functie deelt de partitie zo +evenredig als mogelijk op in N groepen en kent aan elke groep een getal tussen +1 en N toe , in de volgorde zoals gedefinieerd door de ORDER BY clausule, indien +aanwezig, en anders in arbitraire volgorde.. Indien nodig komen grote groepen eerst. +Deze functie retourneert het gehele getal dat toegekend is aan de groep waar de +huidige rij deel van uit maakt. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) Evalueert de expressie expr tegen de vorige rij in de partitie en retourneert +het resultaat. Of NULL, indien er geen vorige rij bestaat (omdat de huidige rij de eerste is). + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr,verschuiving) Indien het argument verschuiving wordt meegegeven dan dient +dit een niet-negatief geheel getal te zijn. In dat geval wordt de expressie expr tegen +de rij met afstand verschuiving voor de huidige rij in de partitie geëvalueerd en het +resultaat retourneerd. Als verschuiving 0 is dan wordt tegen de huidige rij geëvalueerd. +Indien er geen rij met afstand verschuiving voor de huidige rij bestaat, wordt NULL geretourneerd. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,verschuiving,standaardwaarde) Retourneert standaardwaarde als deze meegegeven +is of anders NULL wanneer de rij volgens de verschuiving niet bestaat. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) Evalueert de expressie expr tegen de volgende rij in de partitie en retourneert +het resultaat. Of NULL, indien er geen volgende rij bestaat (omdat de huidige rij de laatste is). + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,verschuiving) Indien het argument verschuiving wordt meegegeven dan +dient dit een niet-negatief geheel getal te zijn. In dat geval wordt de expressie +expr tegen de rij met afstand verschuiving na de huidige rij in de partitie +geëvalueerd en het resultaat retourneerd. Als verschuiving 0 is dan wordt tegen +de huidige rij geëvalueerd. Indien er geen rij met afstand verschuiving na de +huidige rij bestaat, wordt NULL geretourneerd. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) Deze ingebouwde vensterfunctie berekent het vensterkader voor elke rij, +op dezelfde manier als een geaggregeerde vensterfunctie. Evalueert voor elke rij +de expressie expr tegen de eerste rij in het vensterkader en retourneert de waarde. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) Deze ingebouwde vensterfunctie berekent het vensterkader voor elke rij, +op dezelfde manier als een geaggregeerde vensterfunctie. Evalueert voor elke rij +de expressie expr tegen de laatste rij in het vensterkader en retourneert de waarde. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr,N) Deze ingebouwde vensterfunctie berekent het vensterkader voor elke rij, +op dezelfde manier als een geaggregeerde vensterfunctie. Evalueert de expressie +expr tegen rij N van het vensterkader en retourneert de waarde. Rijen worden binnen +het vensterkader genummerd vanaf 1 in de volgorde zoals gedefinieerd door de +ORDER BY clausule,indien aanwezig, en anders in arbitraire volgorde. Als rij N niet +bestaat in de partitie dan wordt NULL geretourneerd. + + + + SqliteTableModel + + + reading rows + records lezen + + + + loading... + aan het laden... + + + + References %1(%2) +Hold %3Shift and click to jump there + Verwijst naar %1(%2) +Houdt %3Shift ingedrukt terwijl je klikt om er naartoe te springen + + + + Error changing data: +%1 + Fout bij het aanpassen van gegevens: +%1 + + + + retrieving list of columns + lijst met kolommen aan het ophalen + + + + Fetching data... + Gegevens aan het ophalen... + + + + + Cancel + Annuleren + + + + TableBrowser + + + Browse Data + Gegevensbrowser + + + + &Table: + &Tabel: + + + + Select a table to browse data + Selecteer een tabel om door gegevens te bladeren + + + + Use this list to select a table to be displayed in the database view + Gebruik deze lijst om een tabel te selecteren die getoond zal worden in de gegevensbrowser + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + Dit is het databasetabeloverzicht: Je kunt hier de volgende handelingen uitvoeren: + - Beginnen met typen om waarden in de regel te bewerken. + - Dubbelklikken op een willekeurig record om diens inhoud te bewerken in het celbewerkingsvenster. + - Alt-Del om de celinhoud om te zetten naar NULL. + - Ctrl+" om het huidige record te dupliceren. + - Ctrl+' om de celwaarde boven te kopiëren. + - Gebruikelijke kopiëren/plakken handelingen. + + + + Text pattern to find considering the checks in this frame + Zoekterm die gezocht moet worden met de geselecteerde opties in dit kader + + + + Find in table + Zoek in tabel + + + + Find previous match [Shift+F3] + Vorige overeenkomst zoeken [Shift+F3] + + + + Find previous match with wrapping + Vorige overeenkomst zoeken met terugloop + + + + Shift+F3 + + + + + Find next match [Enter, F3] + Volgende overeenkomst zoeken [Enter, F3] + + + + Find next match with wrapping + Volgende overeenkomst zoeken met terugloop + + + + F3 + + + + + The found pattern must match in letter case + De gevonden overeenkomst moet identiek zijn in onder-/bovenkast + + + + Case Sensitive + Identieke onder-/bovenkast + + + + The found pattern must be a whole word + Het gevonden patroon moet een heel woord zijn + + + + Whole Cell + Gehele cel + + + + Interpret search pattern as a regular expression + Interpreteer zoekterm als reguliere expressie + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Indien geselecteerd wordt de zoekterm geïnterpreteerd als een UNIX reguliere expressie. Zie hiervoor <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Reguliere Expressies in Wikibooks (Engels)</a>.</p></body></html> + + + + Regular Expression + Reguliere expressie + + + + + Close Find Bar + Zoekbalk sluiten + + + + Text to replace with + Tekst om mee te vervangen + + + + Replace with + Vervangen met + + + + Replace next match + Vervang volgende overeenkomst + + + + + Replace + Vervangen + + + + Replace all matches + Alle overeenkomsten vervangen + + + + Replace all + Alles vervangen + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Blader naar het begin</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Klikken op deze knop brengt je naar het begin van het hierboven getoonde tabeloverzicht.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + Blader één pagina omhoog + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>Klikken op deze knop bladert één pagina omhoog in het hierboven getoonde tabeloverzicht.</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 van 0 + + + + Scroll one page downwards + Blader één pagina omlaag + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>Klikken op deze knop bladert één pagina omlaag in het hierboven getoonde tabeloverzicht.</p></body></html> + + + + > + > + + + + Scroll to the end + Blader naar het einde + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + <html><head/><body><p>Klikken op deze knop brengt je naar het einde van het hierboven getoonde tabeloverzicht.</p></body></html> + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>Klik op deze knop om naar een specifiek record te springen</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>Deze knop wordt gebruikt om naar het specifieke record van het Ga-naar-veld te springen.</p></body></html> + + + + Go to: + Ga naar: + + + + Enter record number to browse + Voer een recordnummer in om te browsen + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Voer een specifiek recordnummer in dit veld in en klik op de Ga naar-knop, om het record in het tabeloverzicht te tonen + + + + 1 + 1 + + + + Show rowid column + De rowid-kolom tonen + + + + Toggle the visibility of the rowid column + De zichtbaarheid van de rowid-kolom omschakelen + + + + Unlock view editing + Viewbewerking ontgrendelen + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + Dit ontgrendelt de huidige view om deze te bewerken. Je hebt echter de juiste triggers nodig om te kunnen bewerken. + + + + Edit display format + Opmaak bewerken + + + + Edit the display format of the data in this column + De opmaak van de gegevens in deze kolom bewerken + + + + + New Record + Nieuw record + + + + + Insert a new record in the current table + Een nieuw record in de huidige tabel invoegen + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>Deze knop maakt een nieuw record aan in de database. Houd de muis ingedrukt om een popupmenu met opties te openen:</p><ul><li><span style=" font-weight:600;">Nieuw record</span>: een nieuw record met standaardwaarden invoegen.</li><li><span style=" font-weight:600;">Waarden invoeren...</span>: opent een dialoogvenster om waarden in te voeren voordat ze in de database worden ingevoegd. Hiermee kun je waarden invoeren die aan de beperkingen voldoen. Dit dialoogvenster wordt tevens geopend als <span style=" font-weight:600;">Nieuw record</span> mislukte door deze beperkingen.</li></ul></body></html> + + + + + Delete Record + Record verwijderen + + + + Delete the current record + Het huidige record verwijderen + + + + + This button deletes the record or records currently selected in the table + Deze knop verwijdert huidig in de tabel geselecteerde records + + + + + Insert new record using default values in browsed table + Nieuw record invoegen met de standaardwaarden die gelden voor de getoonde tabel + + + + Insert Values... + Waarden invoeren... + + + + + Open a dialog for inserting values in a new record + Open een dialoogvenster om waarden voor een nieuw record in te voeren + + + + Export to &CSV + Exporteren als &CSV + + + + + Export the filtered data to CSV + De gefilterde gegevens exporteren naar CSV + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + Deze knop exporteert de gegevens van de tabel zoals deze nu getoond worden (door filters, opmaak en kolomsorteringen) naar een CSV-bestand. + + + + Save as &view + Opslaan als &view + + + + + Save the current filter, sort column and display formats as a view + De huidige filters, kolomsorteringen en opmaak opslaan als view + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + Deze knop slaat de gegevens van de tabel zoals deze nu getoond worden (door filters, opmaak en kolomsorteringen) op als SQL-view zodat je er later doorheen kunt bladeren of deze in SQL-instructies kunt gebruiken. + + + + Save Table As... + Tabel opslaan als... + + + + + Save the table as currently displayed + Tabel opslaan zoals deze op het ogenblik wordt getoond + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>Dit popupmenu biedt de volgende opties om toe te passen op de huidig getoonde en gefilterde tabel:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Exporteren naar CSV: Deze optie exporteert de gegevens van de tabel zoals deze nu getoond worden (door filters, opmaak en kolomsorteringen) naar een CSV-bestand.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Opslaan als view: Deze optie slaat de gegevens van de tabel zoals deze nu getoond worden (door filters, opmaak en kolomsorteringen) op als SQL-view zodat je er later doorheen kunt bladeren of deze in SQL-instructies kunt gebruiken.</li></ul></body></html> + + + + Hide column(s) + Kolom(-men) verbergen + + + + Hide selected column(s) + Geselecteerde kolom(-men) verbergen + + + + Show all columns + Alle kolommen tonen + + + + Show all columns that were hidden + Alle kolommen tonen die verborgen waren + + + + + Set encoding + Encodering aanpassen + + + + Change the encoding of the text in the table cells + Encodering van de tekst in de tabelcellen aanpassen + + + + Set encoding for all tables + Encodering van alle tabellen aanpassen + + + + Change the default encoding assumed for all tables in the database + De standaard veronderstelde encodering voor alle tabellen aanpassen + + + + Clear Filters + Filters wissen + + + + Clear all filters + Alle filters wissen + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + Deze knop wist alle filters onder de kolomkoppen voor de huidig getoonde tabel. + + + + Clear Sorting + Sortering opheffen + + + + Reset the order of rows to the default + Herstelt de sortering van de records naar de standaardsortering + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + Deze knop heft alle sorteringen voor de huidig getoonde tabel op en zet deze terug naar de standaardsortering. + + + + Print + Afdrukken + + + + Print currently browsed table data + De huidig getoonde tabelgegevens afdrukken + + + + Print currently browsed table data. Print selection if more than one cell is selected. + De huidig getoonde tabelgegevens afdrukken. Drukt selectie af als meer dan één cel geselecteerd is. + + + + Ctrl+P + + + + + Refresh + Verversen + + + + Refresh the data in the selected table + Ververs de gegevens van de huidig geselecteerde tabel + + + + This button refreshes the data in the currently selected table. + Deze knop ververst de gegevens van de huidig geselecteerde tabel. + + + + F5 + + + + + Find in cells + In cellen zoeken + + + + Open the find tool bar which allows you to search for values in the table view below. + Open de zoekwerkbalk die je in staat stelt waarden te zoeken in het hieronder getoonde overzicht. + + + + + Bold + Vet + + + + Ctrl+B + + + + + + Italic + Cursief + + + + + Underline + Onderstreept + + + + Ctrl+U + + + + + + Align Right + Rechts uitlijnen + + + + + Align Left + Links uitlijnen + + + + + Center Horizontally + Horizontaal centreren + + + + + Justify + Uitvullen + + + + + Edit Conditional Formats... + Voorwaardelijke opmaakregels bewerken... + + + + Edit conditional formats for the current column + Voorwaardelijke opmaakregels voor de huidige kolom bewerken + + + + Clear Format + Opmaak wissen + + + + Clear All Formats + Alle opmaak wissen + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + Wis alle celopmaak van geselecteerde cellen en wis alle voorwaardelijke opmaak van geselecteerde kolommen + + + + + Font Color + Tekstkleur + + + + + Background Color + Achtergrondkleur + + + + Toggle Format Toolbar + Toon/verberg opmaakwerkbalk + + + + Show/hide format toolbar + Toont of verbergt de opmaakwerkbalk + + + + + This button shows or hides the formatting toolbar of the Data Browser + Deze knop toont of verbergt de opmaakwerkbalk van de Gegevensbrowser + + + + Select column + Kolom selecteren + + + + Ctrl+Space + + + + + Replace text in cells + Tekst in cellen vervangen + + + + Filter in any column + Willekeurige kolom filteren + + + + Ctrl+R + + + + + %n row(s) + + %n record + %n records + + + + + , %n column(s) + + , %n kolom + , %n kolommen + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . Som: %1; Gemiddelde: %2; Min.: %3; Max.: %4 + + + + Conditional formats for "%1" + Voorwaardelijke opmaakregels voor "%1" + + + + determining row count... + aantal records bepalen... + + + + %1 - %2 of >= %3 + %1 - %2 van >= %3 + + + + %1 - %2 of %3 + %1 - %2 van %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + Voer een pseudo-primaire sleutel in om het bewerken van deze view in te schakelen. Dit dient de naam van een unieke-waardenkolom in de view te zijn. + + + + Delete Records + Records verwijderen + + + + Duplicate records + Records dupliceren + + + + Duplicate record + Record dupliceren + + + + Ctrl+" + + + + + Adjust rows to contents + Rijen aanpassen aan inhoud + + + + Error deleting record: +%1 + Fout bij het verwijderen van record: +%1 + + + + Please select a record first + Selecteer eerst een record + + + + There is no filter set for this table. View will not be created. + Er is geen filter voor deze tabel ingesteld. View wordt niet gemaakt. + + + + Please choose a new encoding for all tables. + Kies een nieuwe codering voor alle tabellen. + + + + Please choose a new encoding for this table. + Kies een nieuwe codering voor deze tabel. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Laat het veld leeg om de databasecodering te gebruiken. + + + + This encoding is either not valid or not supported. + De codering is niet geldig of wordt niet ondersteund. + + + + %1 replacement(s) made. + %1 vervangin(-en) gedaan. + + + + VacuumDialog + + + Compact Database + Database comprimeren + + + + Warning: Compacting the database will commit all of your changes. + Waarschuwing: wanneer je de database comprimeert zullen al jouw gemaakte wijzigingen gecommitteerd worden. + + + + Please select the databases to co&mpact: + Selecteer de databases om te co&mprimeren: + + + diff --git a/ConfigFiles/translations/sqlb_pl.qm b/ConfigFiles/translations/sqlb_pl.qm new file mode 100644 index 0000000..5d3d670 Binary files /dev/null and b/ConfigFiles/translations/sqlb_pl.qm differ diff --git a/ConfigFiles/translations/sqlb_pl.ts b/ConfigFiles/translations/sqlb_pl.ts new file mode 100644 index 0000000..80041b5 --- /dev/null +++ b/ConfigFiles/translations/sqlb_pl.ts @@ -0,0 +1,7032 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + O Przeglądarce SQLite + + + + Version + Wersja + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>Przeglądarka SQLite jest darmowym otwartym oprogramowaniem przeznaczonym do graficznej edycji i tworzenia plików bazy danych SQLite.</p><p>Program podlega podwójnej licencji użytkowania: Publiczna licencja Mozilli Wersja 2 jak również Powszechna Licencja Publiczna GNU wersja 3 i późniejsza. Możesz zmieniać i rozpowszechniać program pod warunkami zawartymi w tych licencjach.</p><p>Zobacz <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> i <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> dla szczegółów.</p><p>Odwiedź naszą stronę internetową aby zapoznać się ze szczegółami na temat działania tego programu: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">To oprogramowanie używa GPL/LGPL Qt Toolkit z: </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>Zobacz </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> na temat licencji i użytkowania.</span></p><p><span style=" font-size:small;">Używany również jest zestaw ikon Silk stworzony przez Mark James pod licencją Creative Commons Attribution 2.5 i 3.0.<br/>Zobacz </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> po więcej szczegółów.</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + Nowy rekord + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + Podaj wartości dla nowego rekordu zwracając uwagę na ograniczenia.Pola wytłusczone są obowiązkowe. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + W kolumnie Wartość możesz podać wartość dla pola identyfikowanego w kolumnie Nazwa. Kolumna Rodzaj wskazuje rodzaj pola. Wartości domyślne są wyświetlane w tym samym stylu, co wartości NULL. + + + + Name + Nazwa + + + + Type + Rodzaj + + + + Value + Wartość + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + Wartości do wstawienia. Uprzednio wypełnione domyślne wartości są wstawiane samoczynnie, chyba że zostały zmienione. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + Tutaj pokazana jest kwerenda SQL dla dodania nowego rekordu zawierającego wartości wprowadzone w górnej ramce. Możesz ją ręcznie zmienić przed zapisem rekordu. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Zapisz</span> przekaże wyświetlone zapytanie SQL do bazy danych w celu zapisania nowego rekordu</p><p><span style=" font-weight:600;">Przywróć domyślne</span> przywróci wstępne wartości domyślne w kolumnie<span style=" font-weight:600;">Wartość</span></p><p><span style=" font-weight:600;">Zaniechaj</span> zamyka to okno bez robienia zmian.</p></body></html> + + + + Auto-increment + + Samoprzyrost + + + + Unique constraint + + Ograniczenie niepowtarzalności + + + + + Check constraint: %1 + + Ograniczenie sprawdzania: %1 + + + + + Foreign key: %1 + + Klucz obcy: %1 + + + + + Default value: %1 + + Wartość domyślna: %1 + + + + + Error adding record. Message from database engine: + +%1 + Nie można dodać rekordu. Wiadomość z silnika bazy danych: +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + Jesteś pewien że chcesz przywrócić domyślne wartości dla wszystich wpisów? + + + + Application + + + Possible command line arguments: + Dozwolone argumenty wiersza poleceń: + + + + Usage: %1 [options] [<database>|<project>] + + + + + + -h, --help Show command line options + + + + + -q, --quit Exit application after running scripts + + + + + -s, --sql <file> Execute this SQL file after opening the DB + + + + + -t, --table <table> Browse this table after opening the DB + + + + + -R, --read-only Open database in read-only mode + + + + + -o, --option <group>/<setting>=<value> + + + + + Run application with this setting temporarily set to value + + + + + -O, --save-option <group>/<setting>=<value> + + + + + Run application saving this value for this setting + + + + + -v, --version Display the current version + + + + + <database> Open this SQLite database + + + + + <project> Open this project file (*.sqbpro) + + + + + The -s/--sql option requires an argument + Opcja -s/--sql wymaga argumentu + + + + The file %1 does not exist + Plik %1 nie istnieje + + + + The -t/--table option requires an argument + Opcja -t/--table wymaga argumentu + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + Ustawienia -o/--option oraz -O/--save-option wymagają argumentu w postaci group/setting=wartość + + + + Invalid option/non-existant file: %1 + Nieprawidłowa opcja lub nieistniejący plik: %1 + + + + SQLite Version + Wersja SQLite + + + + SQLCipher Version %1 (based on SQLite %2) + + + + + DB Browser for SQLite Version %1. + + + + + Built for %1, running on %2 + + + + + Qt Version %1 + + + + + CipherDialog + + + SQLCipher encryption + Szyfrowanie SQLCipher + + + + &Password + &Hasło + + + + &Reenter password + Powtó&rz hasło + + + + Encr&yption settings + Ustawienia sz&yfrowania + + + + SQLCipher &3 defaults + Domyślne SQLCipher &3 + + + + SQLCipher &4 defaults + Domyślne SQLCipher &4 + + + + Custo&m + Włas&ny + + + + Page si&ze + Ro&zmiar strony + + + + &KDF iterations + Powtórzenia &KDF + + + + HMAC algorithm + Algorytm HMAC + + + + KDF algorithm + Algorytm KDF + + + + Plaintext Header Size + Rozmiar nagłówka zwykłego tekstu + + + + Passphrase + Hasło + + + + Raw key + Klucz + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + Proszę podaj klucz do zaszyfrowania bazy danych. +Zwróć uwagę na to że wszelkie zmiany wprowadzone tutaj do opcjonalnych ustawień bedą wymagane przy każdym otwarciu pliku. +W celu deaktywacji szyfrowania pozostaw pola klucza puste. +Proces szyfrowania może zabrać dużo czasu w zależności od wielkości bazy danych. Zaleca się aby przed rozpoczęciem tego procesu zrobić kopię zapasową pliku. Wszelkie nie zapisane zmiany będą wprowadzone do bazy danych zanim szyfrowanie się rozpocznie. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + Proszę podać hasło do zaszyfrowania bazy danych. +Jeśli zostały zmienione jakiekolwiek dodatkowe ustawienia dla pliku tej bazy danych będziesz musiał również podać tą informację. + + + + ColumnDisplayFormatDialog + + + Choose display format + Wybierz format wyświetlania + + + + Display format + Format wyświetlania + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + Wybierz domyślny format wyświetlania dla kolumny '%1', który będzie stosowany dla każdej wartości, zanim zostanie ona wyświetlona. + + + + Default + Domyślny + + + + Decimal number + Liczba dziesiętna + + + + Exponent notation + Zapis wykładniczy + + + + Hex blob + Blob szestnastkowy + + + + Hex number + Liczba szesnastkowa + + + + Octal number + Liczba ósemkowa + + + + Round number + Liczba zaokrąglona + + + + Apple NSDate to date + Apple NSDate do daty + + + + Java epoch (milliseconds) to date + Java epoch (milisekundy) do daty + + + + .NET DateTime.Ticks to date + + + + + Julian day to date + Data Juliańska do daty + + + + Unix epoch to date + Unix epoch do daty + + + + Unix epoch to local time + Unix epoch do czasu lokalnego + + + + Windows DATE to date + Windows DATE do daty + + + + Date as dd/mm/yyyy + Data w formacie dd/mm/rrrr + + + + Lower case + Małe litery + + + + Upper case + Duże litery + + + + Custom + Niestandardowy + + + + Custom display format must contain a function call applied to %1 + Własny format wyświetlania musi zawierać wywołanie funkcji zastosowanej na %1 + + + + Error in custom display format. Message from database engine: + +%1 + Błąd we własnym formacie wyświetlania. Wiadomość z silnika bazy danych: + +%1 + + + + Custom display format must return only one column but it returned %1. + Własny format wyświetlania musi zwracać tylko jedną kolumnę, a zwrócił %1. + + + + CondFormatManager + + + Conditional Format Manager + Zarządzanie formatowaniem warunkowym + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + To okno dialogowe umożliwia tworzenie i zmianę formatowania warunkowego. Wygląd komórki będzie będzie określony pierwszym spełnionym warunkiem dla danych komórki. Formatowania warunkowe można przesunąć w górę i w dół, gdzie te na górze są przetwarzane w pierwszej kolejności. Składnia dla warunków jest taka sama jak dla filtrów, a pusty warunek będzie pasował do wszystkich wartości. + + + + Add new conditional format + Dodaj nowe formatowanie warunkowe + + + + &Add + Dod&aj + + + + Remove selected conditional format + Usuń wybrane formatowanie warunkowe + + + + &Remove + &Usuń + + + + Move selected conditional format up + Przesuń w górę wybrane formatowanie warunkowe + + + + Move &up + Przesuń w &górę + + + + Move selected conditional format down + Przesuń w dół wybrane formatowanie warunkowe + + + + Move &down + Przesuń w &dół + + + + Foreground + Pierwszy plan + + + + Text color + Barwa tekstu + + + + Background + Tło + + + + Background color + Barwa tła + + + + Font + Czcionka + + + + Size + Rozmiar + + + + Bold + Pogrubienie + + + + Italic + Kursywa + + + + Underline + Podkreślenie + + + + Alignment + Wyrównanie + + + + Condition + Warunek + + + + + Click to select color + Kliknij, aby wybrać barwę + + + + Are you sure you want to clear all the conditional formats of this field? + Czy na pewno chcesz wyczyścić wszystkie formatowania warunkowe tego pola? + + + + DBBrowserDB + + + This database has already been attached. Its schema name is '%1'. + Baza danych została już dołączona. Nazwa jej schematu to '%1'. + + + + Please specify the database name under which you want to access the attached database + Proszę podaj nazwę bazy danych za pomocą której chcesz uzyskać dostęp do załączonej bazy + + + + Invalid file format + Nieprawidłowy format pliku + + + + Do you really want to close this temporary database? All data will be lost. + Czy na pewno chcesz zamknąć tę tymczasową bazę danych? Wszelkie zmiany bedą zapomniane. + + + + Do you want to save the changes made to the database file %1? + Czy na pewno chcesz zapisać zmiany dokonane w pliku bazy danych %1? + + + + Database didn't close correctly, probably still busy + Baza danych nie została zamknięta poprawnie, prawdopodobnie była nadal zajęta + + + + The database is currently busy: + Baza danych jest obecnie zajęta: + + + + Do you want to abort that other operation? + Czy na pewno chcesz przerwać tą inną operację? + + + + Exporting database to SQL file... + Eksportowanie bazy danych do pliku SQL… + + + + + Cancel + Zaniechaj + + + + + No database file opened + Plik z bazą danych nie jest obecnie otwarty + + + + Executing SQL... + Wykonywanie SQL… + + + + Action cancelled. + Zaniechano działania. + + + + + Error in statement #%1: %2. +Aborting execution%3. + Błąd w poleceniu #%1: %2. +Przerywam wykonywanie%3. + + + + + and rolling back + i przywracam + + + + didn't receive any output from %1 + nie otrzymano żadnego wyniku z %1 + + + + could not execute command: %1 + nie można wykonać polecenia: %1 + + + + Cannot delete this object + Nie można usunąć tego obiektu + + + + Cannot set data on this object + Nie można ustawić danych na tym objekcie + + + + + A table with the name '%1' already exists in schema '%2'. + Tabela o nazwie '%1' już istnieje w schemacie '%2'. + + + + No table with name '%1' exists in schema '%2'. + Tabela o nazwie '%1' nie istnieje w schemacie '%2'. + + + + + Cannot find column %1. + Nie można znaleźć kolumny %1. + + + + Creating savepoint failed. DB says: %1 + Nie można utworzyć punktu zapisu. BD zwraca: %1 + + + + Renaming the column failed. DB says: +%1 + Nie można przemianować tej kolumny. BD zwraca: +%1 + + + + + Releasing savepoint failed. DB says: %1 + Nie można zwolnić punktu zapisu. BD zwraca: %1 + + + + Creating new table failed. DB says: %1 + Nie można utworzyć nowej tabeli. BD zwraca: %1 + + + + Copying data to new table failed. DB says: +%1 + Nie można skopiować nowej tabeli. BD zwraca: +%1 + + + + Deleting old table failed. DB says: %1 + Nie można usunąć starej tabeli. BD zwraca: %1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + Błąd przemianowywania tabeli z '%1' na '%2'. +Wiadomość z silnika bazy danych: +%3 + + + + could not get list of db objects: %1 + nie można pobrać listy obiektów bd: %1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + Wystąpił błąd przy odtworzeniu niektórych obiektów powiązanych z tą bazą danych. Błędy tego rodzaju występują za zwyczaj w przypadku zmiany nazw niektórych kolumn. Sprawdź dokładnie następującą kwerendę SQL. Po dokonaniu zmian możesz ją ręcznie uruchomić: + + + + + + could not get list of databases: %1 + nie mogę odczytać listy baz danych: %1 + + + + Error setting pragma %1 to %2: %3 + Błąd przy ustawianiu pragmy %1 do %2: %3 + + + + File not found. + Nie znaleziono pliku. + + + + Error loading extension: %1 + Nie można wczytać rozszerzenia: %1 + + + + could not get column information + nie można uzyskać informacji o kolumnie + + + + DbStructureModel + + + Name + Nazwa + + + + Object + Obiekt + + + + Type + Rodzaj + + + + Schema + Polecenie tworzące + + + + Database + Baza danych + + + + Browsables + Obiekty do przeglądania + + + + All + Wszystkie + + + + Temporary + Tymczasowa + + + + Tables (%1) + Tabele (%1) + + + + Indices (%1) + Indeksy (%1) + + + + Views (%1) + Widoki (%1) + + + + Triggers (%1) + Wyzwalacze (%1) + + + + EditDialog + + + Edit database cell + Zmiana komórki bazy danych + + + + Mode: + Tryb: + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + To jest lista dostępnych trybów dla edytora komórek. Wybierz tryb do wyświetlania lub edycji danych dla tej komórki. + + + + Text + Tekst + + + + RTL Text + Tekst od prawej do lewej + + + + Binary + Zapis dwójkowy + + + + + Image + Obraz + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + Sam dostosuj tryb edytora w zależności od wczytanych danych + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + To pole zaznaczane włącza lub wyłącza samoczynne przełączanie do trybu edytora. Po wybraniu nowej komórki lub zaimportowaniu nowych danych i przy włączonym samoczynnym przełączaniu, tryb dostosowuje się do wykrytego rodzaju danych. Następnie można zmienić tryb edytora ręcznie. Aby zapamiętać ten try ręczny przy przechodzeniu po komórkach, wystarczy odznaczyć to pole. + + + + Auto-switch + Sam przełączaj + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + Tryby edytora tekstu umożliwiają edycję zwykłego tekstu, a także danych JSON oraz XML +z podświetlaniem składni, samoformatowaniem oraz sprawdzaniem przed zapisem. + +Błędy są podkreślane czerwonym ślaczkiem. + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + Edytor Qt jest używany do pism od-prawej-do-lewej, które nie są obsługiwane przez domyślny edytor tekstu. Obecność znaków pism od-prawej-do-lewej jest wykrywana, a edytor sam przełącza się do tego trybu. + + + + Open preview dialog for printing the data currently stored in the cell + Otwiera okno dialogowe do podglądu drukowanych danych z danej komórki + + + + Auto-format: pretty print on loading, compact on saving. + Auto-formatowanie: upiększa tekst przy wczytywaniu i ściska przy zapisywaniu. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + Po zaznaczeniu, dane są formatowane podczas ich wczytywania, łamiąc tekst w wierszach oraz wcinając go dla najlepszej czytelności. Przed zapisaniem, dane są oczyszczane poprzez usunięcie zakończeń wierszy oraz niepotrzebnych białych znaków. + + + + Word Wrap + Zawijaj słowa + + + + Wrap lines on word boundaries + Zawijaj wiersze na granicach słów + + + + + Open in default application or browser + Otwórz w domyślnej aplikacji lub przeglądarce + + + + Open in application + Otwórz w aplikacji + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + Wartość jest traktowana jako plik lub adres URL i otwierana w domyślnej aplikacji lub przeglądarce sieciowej. + + + + Save file reference... + Zapisz odniesienie pliku... + + + + Save reference to file + Zapisz odniesienie do pliku + + + + + Open in external application + Otwórz w zewnętrznej aplikacji + + + + Autoformat + Sam formatuj + + + + &Export... + &Eksportuj... + + + + + &Import... + &Importuj... + + + + + Import from file + Importuj z pliku + + + + + Opens a file dialog used to import any kind of data to this database cell. + Otwiera okno wyboru pliku z danymi do zaimportowania w tej komórce. + + + + Export to file + Eksportuj do pliku + + + + Opens a file dialog used to export the contents of this database cell to a file. + Otwiera okno pozwalające na wyeksportowanie zawartości komórki do pliku. + + + + Erases the contents of the cell + Czyści zawartość komórki + + + + Set as &NULL + Ustaw jako &NULL + + + + This area displays information about the data present in this database cell + Tutaj wyświetlane są informacje o danych obecnych w tej komórce + + + + Type of data currently in cell + Rodzaj danych obecnie znajdujących się w komórce + + + + Size of data currently in table + Rozmiar danych znajdujących się obecnie w tabeli + + + + Apply data to cell + Zapisz dane w komórce + + + + This button saves the changes performed in the cell editor to the database cell. + Ten przycisk zapisuje zmiany wykonane w edytorze komórki w komórce bazy danych. + + + + Apply + Zastosuj + + + + + Print... + Drukuj... + + + + Open preview dialog for printing displayed image + Otwórz podgląd wydruku dla aktualnie wyświetlonego obrazu + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + Otwiera okno dialogowe do podglądu wyświetlanego tekstu + + + + Copy Hex and ASCII + Skopiuj Hex i ASCII + + + + Copy selected hexadecimal and ASCII columns to the clipboard + Skopiuj zaznaczone kolumny szesnastkowe oraz ASCII do schowka + + + + Ctrl+Shift+C + + + + + + Image data can't be viewed in this mode. + Obrazy nie mogą zostać wyświetlone w tym trybie. + + + + + Try switching to Image or Binary mode. + Przejdź do trybu obrazu lub wartości binarnej. + + + + + Binary data can't be viewed in this mode. + Wartość dwójkowa nie może być wyświetlona w tym trybie. + + + + + Try switching to Binary mode. + Przejdź do trybu wartości binarnej. + + + + + Image files (%1) + Piki graficzne (%1) + + + + Binary files (*.bin) + Pliki Binarne (*.bin) + + + + Choose a file to import + Wybierz plik do zaimportowania + + + + %1 Image + %1 Grafika + + + + Choose a filename to export data + Wybierz nazwę pliku dla wyeksportowanych danych + + + + Invalid data for this mode + Nieprawidłowe dane w tym trybie + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + Komórka zawiera nieprawidłowe dane %1. Powód: %2. Czy na pewno wstawić je do komórki? + + + + + Type of data currently in cell: Text / Numeric + Rodzaj danych obecnie znajdujących się w komórce: Tekst/Liczba + + + + + + %n character(s) + + %n znak + %n znaki + %n znaków + + + + + Type of data currently in cell: %1 Image + Rodzaj danych obecnie znajdujących się w komórce: Obraz %1 + + + + %1x%2 pixel(s) + %1x%2 piksel(e) + + + + Type of data currently in cell: NULL + Rodzaj danych obecnie znajdujących się w komórce: NULL + + + + + %n byte(s) + + %n bajt + %n bajty + %n bajtów + + + + + Type of data currently in cell: Valid JSON + Rodzaj danych obecnie znajdujących się w komórce: Prawidłowy JSON + + + + Type of data currently in cell: Binary + Rodzaj danych obecnie znajdujących się w komórce: dwójkowa + + + + Couldn't save file: %1. + Nie można zapisać pliku: %1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + Zapisano dane do pliku tymczasowego i otwarto je w domyślnej aplikacji. Teraz możesz wprowadzić zmiany w pliku, a gdy będziesz gotowy, zapisz nowe dane w edytorze komórki lub zaniechaj jakichkolwiek zmian. + + + + EditIndexDialog + + + Edit Index Schema + Edytor tworzenia indeksu + + + + &Name + &Nazwa + + + + &Table + &Tabela + + + + &Unique + &Niepowtarzalny + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + Aby ograniczyć indeks tylko do części tabeli można dopisać tutaj polecenie WHERE, które +zaznacza część tabeli, która ma zostać zaindeksowana + + + + Partial inde&x clause + Polecenie częściowego &indeksu + + + + Colu&mns + Kolu&mny + + + + Table column + Kolumna tabeli + + + + Type + Rodzaj + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + Dodaj nową kolumnę wyrażenia do indeksu. Kolumny wyrażeń zawierają raczej wyrażenia SQL niż nazwy kolumn. + + + + Index column + Kolumna indeksu + + + + Order + Porządek + + + + Deleting the old index failed: +%1 + Usuwanie starego indeksu nie powiodło się: +%1 + + + + Creating the index failed: +%1 + Tworzenie indeksu nie powiodło się: +%1 + + + + EditTableDialog + + + Edit table definition + Edycja tworzenia tabeli + + + + Table + Tabela + + + + Advanced + Zaawansowane + + + + Without Rowid + Bez ID wiersza + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + Uczyń z tej tabeli tablę 'WITHOUT rowid'. Ustawienie tej flagi wymaga pola rodzaju INTEGER z flagą klucza głównego ustawioną i flagą samoprzyrostu wyłączoną. + + + + Fields + Pola + + + + Database sche&ma + Sche&mat bazy danych + + + + Add + Dodaj + + + + Remove + Usuń + + + + Move to top + Przesuń na górę + + + + Move up + Przesuń w górę + + + + Move down + Przesuń w dół + + + + Move to bottom + Przesuń na dół + + + + + Name + Nazwa + + + + + Type + Rodzaj + + + + NN + NN + + + + Not null + Nie NULL + + + + PK + PK + + + + Primary key + Klucz główny + + + + AI + AI + + + + Autoincrement + Samoprzyrostowa + + + + U + U + + + + + + Unique + Niepowtarzalna + + + + Default + Domyślna + + + + Default value + Domyślna wartość + + + + + + Check + Sprawdzenie + + + + Check constraint + Ograniczenie sprawdzenia + + + + Collation + Zestawienie + + + + + + Foreign Key + Obcy klucz + + + + Constraints + Ograniczenia + + + + Add constraint + Dodaj ograniczenie + + + + Remove constraint + Usuń ograniczenie + + + + Columns + Kolumny + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Uwaga: </span>W określeniu tabeli jest coś, czego nasze przetwarzanie składni nie rozumie. Zmiana i zapis tej tabeli może skutkować kłopotami.</p></body></html> + + + + + Primary Key + Klucz główny + + + + Add a primary key constraint + Dodaj ograniczenie klucza głównego + + + + Add a foreign key constraint + Dodaj ograniczenie klucza obcego + + + + Add a unique constraint + Dodaj ograniczenie niepowtarzalności + + + + Add a check constraint + Dodaj ograniczenie sprawdzania + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + Dla każdej tabeli może być tylko jeden klucz główny. Zmień istniejący klucz główny. + + + + Error creating table. Message from database engine: +%1 + Nie można utworzyć tabeli. Wiadomość z silnika bazy danych: +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Istnieje już pole o tej nazwie. Przemianuj je najpierw lub wybierz inną nazwę dla tego pola. + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + Kolumna ma odwołanie do klucza obcego w tabeli %1 więc jej nazwa nie można zmienić jej nazwy. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + W tym polu istnieje co najmniej jeden wiersz z wartością równą NULL. Czyni to niemożliwym ustawienie tej flagi. Najpierw zmień dane tabeli. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + W tym polu istnieje co najmniej jeden wiersz z wartością nie będącą liczbą całkowitą. Czyni to niemożliwym ustawienie flagi AI. Najpierw zmień dane tabeli. + + + + Column '%1' has duplicate data. + + Kolumna '%1' zawiera powielone dane. + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + Czyni to niemożliwym nadanie flagi 'Unique'. Usuń powielone dane, aby móc nadać flagę 'Unique'. + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + Czy na pewno usunąć pole '%1'? +Wszystkie dane przechowywane w tym polu zostaną utracone. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + Dodaj pola, które spełniają dane warunki przed ustawieniem flagi bez rowid: + - Ustawiono flagę głównego klucza + - Wyłączono samoprzyrost + + + + ExportDataDialog + + + Export data as CSV + Eksport danych jako CSV + + + + Tab&le(s) + Tabe&la/e + + + + Colu&mn names in first line + Nazwy kolu&mn w pierwszym wierszu + + + + Fie&ld separator + Znak oddzie&lający pola + + + + , + , + + + + ; + ; + + + + Tab + Tab + + + + | + | + + + + + + Other + Inny + + + + &Quote character + &Znak cytatu + + + + " + " + + + + ' + ' + + + + New line characters + Znak nowego wiersza + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + Upiększ wydruk + + + + Export data as JSON + Eksport danych jako JSON + + + + exporting CSV + eksportowanie CSV + + + + + Could not open output file: %1 + Nie można otworzyć pliku wyjściowego: %1 + + + + exporting JSON + eksportowanie JSON + + + + + Choose a filename to export data + Wybierz nazwę pliku dla eksportowanych danych + + + + Please select at least 1 table. + Wybierz przynajmniej jedną tabelę. + + + + Choose a directory + Wybierz położenie + + + + Export completed. + Eksportowanie zakończone. + + + + ExportSqlDialog + + + Export SQL... + Eksportuj danych jako SQL + + + + Tab&le(s) + Tabel&a/e + + + + Select All + Zaznacz wszystkie + + + + Deselect All + Odznacz wszystkie + + + + &Options + &Opcje + + + + Keep column names in INSERT INTO + Pozostaw nazwy kolumn w INSERT INTO + + + + Multiple rows (VALUES) per INSERT statement + Wiele rzędów (Wartości) dla polecenia INSERT + + + + Export everything + Eksportuj wszystko + + + + Export schema only + Eksportuj tylko schemat + + + + Export data only + Eksportuj tylko dane + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + Zachowaj poprzedni schemat (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Zastąp poprzedni schemat (DROP TABLE, then CREATE TABLE) + + + + Please select at least one table. + Wybierz przynajmniej jedną tabelę. + + + + Choose a filename to export + Wybierz nazwę eksportowanego pliku + + + + Export completed. + Eksportowanie zakończono. + + + + Export cancelled or failed. + Eksportowanie nie udało się lub zostało zaniechane. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + Znajdź... + + + + Find and Replace... + Znajdź i zamień… + + + + Print... + Drukuj... + + + + ExtendedTableWidget + + + Use as Exact Filter + Użyj jako dokładnego filtra + + + + Containing + Zawiera + + + + Not containing + Nie zawiera + + + + Not equal to + Nierówny + + + + Greater than + Większy niż + + + + Less than + Mniejszy niż + + + + Greater or equal + Większy lub równy + + + + Less or equal + Mniejszy lub równy + + + + Between this and... + Pomiędzy tym a... + + + + Regular expression + Wyrażenie regularne + + + + Edit Conditional Formats... + Zmień formatowanie warunkowe... + + + + Set to NULL + Ustaw jako NULL + + + + Copy + Skopiuj + + + + Copy with Headers + Skopiuj wraz z nagłówkami + + + + Copy as SQL + Skopiuj jako SQL + + + + Paste + Wklej + + + + Print... + Drukuj... + + + + Use in Filter Expression + Użyj w wyrażeniu filtra + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>Nie wczytano wszystkich danych. <b>Czu chcesz wczytać wszystkie dane przez zaznaczeniem wszystkich wierszy?</b><p><p>Odpowiedź <b>Nie</b> oznacza, że nie +zostanie wczytanych więcej danych i nie zostanie nic zaznaczone.<br/>Odpowiedź <b>Tak</b> oznacza, że trochę czasu może być potrzebne na wczytanie danych za to zaznaczenie będzie pełne.</p>Uwaga: Wczytanie wszystkich danych może wymagać dużej ilości pamięci dla dużych tabel. + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + Nie można ustawić zaznaczonych na NULL. Kolumna %1 ma ograniczenie NOT NULL. + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + Zawartość schowka jest większa niż zaznaczony zakres. +Czy chcesz go wstawić mimo tego? + + + + FileExtensionManager + + + File Extension Manager + Zarządzanie Rozszerzeniami Plików + + + + &Up + &W górę + + + + &Down + W &dół + + + + &Add + Dod&aj + + + + &Remove + &Usuń + + + + + Description + Opis + + + + Extensions + Rozszerzenia + + + + *.extension + *.rozszerzenie + + + + FilterLineEdit + + + Filter + Filtr + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + Te pola wejściowe umożliwiają szybkie filtrowanie na bieżącej tabeli. +Domyślnie, wiersze zawierające tekst wejściowy są odfiltrowywane. +Obsługiwane są następujące operatory: +% Znak wieloznaczny +> Większe niż +< Mniejsze niż +>= Równe lub większe +<= Równe lub mniejsze += Równe: dokładnie pasuje +<> Nierówne: nie pasuje +x~y Zakres: wartości pomiędzy x oraz y +/regexp/ Wartości pasujące do wyrażenia regularnego + + + + Clear All Conditional Formats + Wyczyść wszystkie formatowania warunkowe + + + + Use for Conditional Format + Użyj do formatowania warunkowego + + + + Edit Conditional Formats... + Edytuj formatowanie warunkowe... + + + + Set Filter Expression + Ustaw wyrażenia filtra + + + + What's This? + Co to jest? + + + + Is NULL + Jest NULL + + + + Is not NULL + Nie jest NULL + + + + Is empty + Jest puste + + + + Is not empty + Nie jest puste + + + + Not containing... + Nie zawiera... + + + + Equal to... + Równe... + + + + Not equal to... + Nierówne... + + + + Greater than... + Większe niż... + + + + Less than... + Mniejsze niż... + + + + Greater or equal... + Większe lub równe... + + + + Less or equal... + Mniejsze lub równe... + + + + In range... + W zakresie... + + + + Regular expression... + Wyrażenie regularne... + + + + FindReplaceDialog + + + Find and Replace + Znajdź i zastąp + + + + Fi&nd text: + Z&najdź tekst: + + + + Re&place with: + Zamień &z: + + + + Match &exact case + Rozróżniaj wielkość lit&er + + + + Match &only whole words + Tylk&o całe wyrazy + + + + When enabled, the search continues from the other end when it reaches one end of the page + Po zaznaczeniu, wyszukiwanie jest wznawiane od przeciwległego końca strony po osiągnięciu końca strony. + + + + &Wrap around + Za&wijaj + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + Po zaznaczeniu, wyszukiwanie postępuje wstecz od położenia wskaźnika, w przeciwnym przypadku postępuje wprzód + + + + Search &backwards + Szukaj &na odwrót + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>Po zaznaczeniu, wzorzec do znalezienia jest szukany tylko w bieżącym zaznaczeniu.</p></body></html> + + + + &Selection only + Tylko &zaznaczenie + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Po zaznaczeniu, wzorzec do znalezienia jest rozważany jako wyrażenie regularne UNIX. Zajrzyj do <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Wyrażeń Regularnych w Wikibooks</a>.</p></body></html> + + + + Use regular e&xpressions + Stosuj wyrażenie &regularne + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + Szukaj kolejnego wystąpienia od położenia wskaźnika i w stronę określoną poprzez +"Wyszukiwanie wstecz" + + + + &Find Next + Z&najdź następne + + + + F3 + + + + + &Replace + &Zastąp + + + + Highlight all the occurrences of the text in the page + Podświetl wszystkie wystąpienia tekstu na stronie + + + + F&ind All + Znajdź wszystk&ie + + + + Replace all the occurrences of the text in the page + Zastąp wszystkie wystąpienia w tekście na stronie + + + + Replace &All + Z&amień wszystkie + + + + The searched text was not found + Nie znaleziono szukanego tekstu + + + + The searched text was not found. + Nie znaleziono szukanego tekstu. + + + + The searched text was found one time. + Szukany tekst został znaleziony raz. + + + + The searched text was found %1 times. + Szukany tekst został znaleziony %1 razy. + + + + The searched text was replaced one time. + Szukany tekst został zamieniony raz. + + + + The searched text was replaced %1 times. + Szukany tekst został zamieniony %1 razy. + + + + ForeignKeyEditor + + + &Reset + &Resetuj + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + Polecenia obcego klucza (ON UPDATE, ON DELETE itp.) + + + + ImportCsvDialog + + + Import CSV file + Importuj plik CSV + + + + Table na&me + &Nazwa tabeli + + + + &Column names in first line + &Nazwy kolumn w pierwszej linii + + + + Field &separator + &Znak oddzielający pola + + + + , + , + + + + ; + ; + + + + + Tab + Tab + + + + | + | + + + + Other + Inny + + + + &Quote character + Znak &cytatów + + + + + Other (printable) + Inne (drukowalne) + + + + + Other (code) + Inny (kod) + + + + " + " + + + + ' + ' + + + + &Encoding + Kodowani&e + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + Przycinać pola? + + + + Separate tables + Oddzielaj tabele + + + + Advanced + Zaawansowane + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + Przy importowaniu pustej wartości z pliku CSV do istniejącej tabeli z domyślną wartością dla tej kolumny, wstawiana jest ta domyślna wartość. Aby zamiast tego wstawić pustą wartość, wystarczy zaznaczyć to pole. + + + + Ignore default &values + Ignoruj domyślne &wartości + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + Zaznacz to pole, aby zatrzymać importowanie, podczas importowania pustej wartości do kolumny NOT NULL bez domyślnej wartości. + + + + Fail on missing values + Zgłaszaj błąd dla brakujących wartości + + + + Disable data type detection + Wyłącz wykrywanie rodzajów danych + + + + Disable the automatic data type detection when creating a new table. + Wyłącz samowykrywanie rodzaju danych przy tworzeniu nowej tabeli. + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + Przy importowaniu do istniejącej tabeli o głównym kluczu, ograniczeniu lub indeksie niepowtarzalności istnieje szansa na sprzeczność. To ustawienie umożliwia wybranie strategii dla tego przypadku. Domyślnie importowanie jest przerywane, a zmiany wycofywane, lecz można także pominąć wiersze będące w sprzeczności lub zastąpić istniejący wiersz w tabeli. + + + + Abort import + Przerwij importowanie + + + + Ignore row + Pomiń wiersz + + + + Replace existing row + Zastąp istniejący wiersz + + + + Conflict strategy + Strategia na sprzeczności + + + + + Deselect All + Odznacz wszystkie + + + + Match Similar + Dopasuj do podobnych + + + + Select All + Zaznacz wszystkie + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + Tabela o nazwie '%1' już istnieje i importowanie do istniejącej tabeli jest możliwe tylko gdy liczba kolumn zgadza się. + + + + There is already a table named '%1'. Do you want to import the data into it? + Tabela o nazwie '%1' już istnieje. Czy chcesz zaimportować dane do niej? + + + + Creating restore point failed: %1 + Nie można utworzyć punktu przywracania: %1 + + + + Creating the table failed: %1 + Tworzenie tabeli nie powiodło się: %1 + + + + importing CSV + importowanie CSV + + + + Inserting row failed: %1 + Wstawianie rzędu nie powiodło się: %1 + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + Importowanie pliku '%1' zajęło %2ms. Z tego %3ms spędzono na funkcji wiersza. + + + + MainWindow + + + DB Browser for SQLite + Przeglądarka SQLite + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Struktura danych + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + Uwaga: to polecenie pragma nie jest czytelne, więc ta wartość powstała z domysłu. Zapisanie polecenie pragma może zastąpić LIKE dostarczony przez rozszerzenie SQLite. + + + + toolBar1 + toolBar1 + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + Oto struktura bieżącej bazy danych. +Można przeciągać polecenia SQL z wiersza obiektu i upuszczać je na innych aplikacjach lub wstawiać je do innego wystąpienia 'Przeglądarki SQLite'. + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Przeglądarka danych + + + + Execute line + Wykonaj wiersz + + + + Un/comment block of SQL code + Dodaj/Usuń uwagę do kawałka kodu SQL + + + + Un/comment block + Dodaj/Usuń uwagę do kawałka kodu + + + + Comment or uncomment current line or selected block of code + Dodaj lub usuń uwagę do bieżącego wiersza lub zaznaczonego kawałka kodu + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + Dodaj lub usuń uwagę do bieżącego wiersza lub zaznaczonych wierszy, gdy jest coś zaznaczone. Cały kawałek przełączany jest wg pierwszego wiersza. + + + + Ctrl+/ + + + + + Stop SQL execution + Zatrzymaj wykonywanie SQL + + + + Stop execution + Zatrzymaj wykonywanie + + + + Stop the currently running SQL script + Zatrzymaj wykonywanie bieżącego skryptu SQL + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Polecenia Pragmy + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + Polecenia SQL + + + + &File + &Plik + + + + &Import + &Importuj + + + + &Export + &Eksportuj + + + + &Edit + &Edycja + + + + &View + &Widok + + + + &Help + Po&moc + + + + &Tools + &Narzędzia + + + + DB Toolbar + Pasek zadań bazy danych + + + + Edit Database &Cell + Zmiana komórki bazy dany&ch + + + + SQL &Log + Dziennik SQ&L + + + + Show S&QL submitted by + Pokaż S&QL wydane przez + + + + User + Użytkownika + + + + Application + Aplikację + + + + Error Log + Dziennik błędów + + + + This button clears the contents of the SQL logs + Ten przycisk czyści zawartość logów SQL + + + + &Clear + Wy&czyść + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + Ten panel umożliwia przegląd dziennika wszystkich poleceń SQL wydanych przez aplikację lub przez ciebie + + + + &Plot + &Wykres + + + + DB Sche&ma + Struktura da&nych + + + + &Remote + &Zdalne BD + + + + + Project Toolbar + Pasek zadań projektu + + + + Extra DB toolbar + Dodatkowy pasek zadań bazy danych + + + + + + Close the current database file + Zamknij obecny plik bazy danych + + + + &New Database... + &Nowa baza danych… + + + + + Create a new database file + Utwórz nowy plik bazy danych + + + + This option is used to create a new database file. + Ta opcja jest wykorzystywana do tworzenia nowego pliku bazy danych. + + + + Ctrl+N + + + + + + &Open Database... + &Otwórz bazę danych… + + + + + + + + Open an existing database file + Otwórz istniejącą bazę danych + + + + + + This option is used to open an existing database file. + Ta opcja otwiera istniejący plik bazy danych. + + + + Ctrl+O + + + + + &Close Database + Zamknij bazę dany&ch + + + + This button closes the connection to the currently open database file + Ten przycisk kończy połączenie z obecnie otwartym plikiem bazy danych + + + + Open SQL file(s) + + + + + This button opens files containing SQL statements and loads them in new editor tabs + + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + + + + + This button lets you open a DB Browser for SQLite project file + + + + + Browse Table + Przeglądaj tabelę + + + + + Ctrl+W + + + + + &Revert Changes + &Wycofaj zmiany + + + + + Revert database to last saved state + Przywróć bazę danych do ostatniego zapisanego stanu + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + Ten działanie służy do przywrócenia bieżącej bazy danych do ostatnio zapisanego stanu. Wszystkie zmiany od czasu ostatniego zapisu zostaną utracone. + + + + &Write Changes + &Zapisz zmiany + + + + + Write changes to the database file + Zapisz zmiany w pliku bazy danych + + + + This option is used to save changes to the database file. + Ta opcja zapisuje zmiany w pliku bazy danych. + + + + Ctrl+S + + + + + Ctrl+Shift+O + + + + + &Save Project As... + Zapi&sz projekt jako... + + + + + + Save the project in a file selected in a dialog + Zapisuje projekt w pliku wskazanym w dialogu + + + + Save A&ll + Zapisz w&szystko + + + + + + Save DB file, project file and opened SQL files + Zapisuje plik bazy danych, projektu i otwarte pliki SQL + + + + Ctrl+Shift+S + + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + Oto struktura bieżącej bazy danych. +Można przeciągać wiele nazw obiektów z kolumny nazwy i upuszczać je w edytorze SQL. Następnie można dostosować właściwości upuszczonych nazw poprzez menu podręczne. To ma na celu pomoc w tworzeniu polecenia SQL. +Można przeciągać polecenia SQL z kolumny schematu i upuszczać je w edytorze SQL lub innych aplikacjach. + + + + Compact &Database... + Ściśnij bazę &danych... + + + + Compact the database file, removing space wasted by deleted records + Ściśnij plik bazę danych, usuwając przestrzenie marnowane przez usunięte rekordy + + + + + Compact the database file, removing space wasted by deleted records. + Ściśnij plik bazę danych, usuwając przestrzenie marnowane przez usunięte rekordy. + + + + E&xit + &Wyjdź + + + + Ctrl+Q + + + + + &Database from SQL file... + Baza &danych z pliku SQL… + + + + Import data from an .sql dump text file into a new or existing database. + Importuj dane z pliku tekstowego zrzutu .sql do nowej lub istniejącej bazy danych. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + To działanie, umożliwia importowanie danych z pliku tekstowego zrzutu .sql do nowej lub istniejącej bazy danych. Pliki zrzutu SQL można utworzyć w większości silników baz danych, włączając w to MySQL oraz PostgreSQL. + + + + &Table from CSV file... + &Tabela z pliku CSV… + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Otwiera okno pomocnika do importowania danych z pliku CSV do tabeli bazy danych. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + Otwiera okno pomocnika do importowania danych z pliku CSV do tabeli bazy danych. +Plik CSV można stworzyć na podstawie większości baz danych i aplikacji arkuszy kalkulacyjnych. + + + + &Database to SQL file... + Baza &danych do pliku SQL… + + + + Export a database to a .sql dump text file. + Eksportuj bazę danych do pliku tekstowego zrzutu .sql + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + To działanie umożliwia eksportowanie bazy danych do pliku tekstowego zrzutu .sql. Plik zrzutu SQL zawiera wszystkie dane niezbędne do odtworzenia bazy danych na większości silników baz danych, włączając w to MySQL oraz PostgreSQL. + + + + &Table(s) as CSV file... + &Tabele do pliku CSV… + + + + Export a database table as a comma separated text file. + Eksportuje tabelę bazy danych jako plik tekstowy, oddzielając wartości przecinkami. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + Eksportuje tabelę bazy danych jako plik tekstowym który można zaimportować w innych aplikacjach bazodanowych lub arkuszach kalkulacyjnych; oddzielając wartości przecinkami. + + + + &Create Table... + &Utwórz tabelę… + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + Otwiera okno tworzenia tabel, gdzie można zdefiniować nazwę i pola w nowej tabeli w bazie danych + + + + &Delete Table... + U&suń tabelę… + + + + + Delete Table + Usuń tabelę + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + Otwiera pomocnika do Usunięcia Tabeli, gdzie można wybrać tabelę bazy danych do usunięcia. + + + + &Modify Table... + Z&mień tabelę… + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + Otwiera pomocnika do Zmiany Tabeli, gdzie można przemianować istniejącą tabelą. +Można także dodawać i usuwać pola z tabli, a także zmieniać nazwy oraz rodzaje pól. + + + + Create &Index... + Utwórz &indeks… + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + Otwiera pomocnika do Tworzenia Indeksu, gdzie można określić nowy indeks na istniejącej tabeli bazy danych. + + + + &Preferences... + &Ustawienia... + + + + + Open the preferences window. + Otwórz okno ustawień. + + + + &DB Toolbar + Pasek narzędzi bazy &danych + + + + Shows or hides the Database toolbar. + Pokazuje lub ukrywa pasek narzędzi Baza danych + + + + Ctrl+T + + + + + W&hat's This? + &Co to jest? + + + + Ctrl+F4 + + + + + Shift+F1 + + + + + &About + O progr&amie + + + + &Load Extension... + &Wczytaj rozszerzenia... + + + + &Wiki + &Wiki + + + + F1 + + + + + Bug &Report... + &Zgłoszenie błędu... + + + + Feature Re&quest... + Zgłoszenie ż&yczenia... + + + + Web&site + Strona &sieciowa + + + + &Donate on Patreon... + &Darowizna na Patreon... + + + + Open &Project... + Otwórz &projekt... + + + + &Attach Database... + Dołącz bazę d&anych... + + + + &Set Encryption... + U&staw szyfrowanie... + + + + This button saves the content of the current SQL editor tab to a file + Ten przycisk zapisuje treść bieżącej karty edytora SQL do pliku + + + + SQLCipher &FAQ + &Najczęściej zadawane pytania SQLCipher + + + + New In-&Memory Database + Nowa baza danych w-pa&mięci + + + + Drag && Drop Qualified Names + Przeciągnij && upuść nazwy ze struktury + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + Używaj nazw ze struktury (np. "Tabela"."Pole") przy przeciąganiu obiektów i upuszczaniu ich w edytorze + + + + Drag && Drop Enquoted Names + Przeciągnij && upuść nazw w cudzysłowach + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + Używaj nazw w cudzysłowach (np. "Tabela1") przy przeciąganiu obiektów i upuszczaniu ich w edytorze + + + + &Integrity Check + Sprawdzanie spójnośc&i + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + Wykonuje polecenie pragma integrity_check na bieżącej bazie danych i zwraca wynik na karcie Wykonywania SQL. To polecenie pragma wykonuje sprawdzenie spójności całej bazy danych. + + + + &Foreign-Key Check + &Sprawdzenie obcego klucza + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + Wykonuje polecenie pragma foreign_key_check na bieżącej bazie danych i zwraca wynik na karcie Wykonywania SQL + + + + &Quick Integrity Check + &Szybkie sprawdzenie spójności + + + + Run a quick integrity check over the open DB + Wykonaj sprawdzenie spójności bieżącej bazy danych + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + Wykonuje polecenie pragma quick_check na bieżącej bazie danych i zwraca wynik na karcie Wykonywania SQL. To polecenie pragma wykonuje większość tego, co wykonuje polecenie pragma integrity_check lecz robi to znacznie szybciej. + + + + &Optimize + &Optymalizacja + + + + Attempt to optimize the database + Próba optymalizacji bazy danych + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + Wykonuje polecenie pragma optimize na bieżącej bazie danych. To polecenie może wykonać optymalizacje, które zwiększą wydajność przyszłych zapytań. + + + + + Print + Drukuj + + + + Print text from current SQL editor tab + Drukuj tekst z bieżącej karty edytora SQL + + + + Open a dialog for printing the text in the current SQL editor tab + Otwiera okno dialogowe do drukowania tekstu w bieżącej karcie edytora SQL + + + + Print the structure of the opened database + Drukuj strukturę bieżącej bazy danych + + + + Open a dialog for printing the structure of the opened database + Otwiera okno dialogowe do drukowania struktury bieżącej bazy danych + + + + &Recently opened + Ostatnio otwie&rane + + + + Open &tab + Otwórz kar&tę + + + + This button opens a new tab for the SQL editor + Ten przycisk otwiera nową tabelę w edytorze SQL + + + + &Execute SQL + &Wykonaj SQL + + + + Execute all/selected SQL + Wykonaj wszystkie/zaznaczone SQL + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + Ten przycisk wykona obecnie zaznaczone polecenia SQL. Jeśli nie zaznaczone tekstu, to zostaną wykonane wszystkie polecenia SQL. + + + + + + Save SQL file + Zapisz plik SQL + + + + + Execute current line + Wykonaj bieżący wiersz + + + + This button executes the SQL statement present in the current editor line + Ten przycisk wykonuje polecenie SQL z obecnego wiersza edytora + + + + Shift+F5 + + + + + Export as CSV file + Eksportuj do pliku CSV + + + + Export table as comma separated values file + Eksportuj tabelę jako plik z wartościami oddzielonymi przecinkami + + + + Sa&ve Project + &Zapisz projekt + + + + + Save the current session to a file + Zapisz obecną sesję do pliku + + + + + Load a working session from a file + Wczytaj otoczenie pracy z pliku + + + + + Add another database file to the current database connection + Dodaj kolejny plik bazy danych do połączenia bieżącej bazy danych + + + + This button lets you add another database file to the current database connection + Ten przycisk umożliwia dodanie kolejnego pliku bazy danych do połączenia bieżącej bazy danych + + + + + Save SQL file as + Zapisz plik SQL jako + + + + &Browse Table + &Przeglądaj tabelę + + + + Copy Create statement + Skopiuj polecenie tworzące + + + + Copy the CREATE statement of the item to the clipboard + Skopiuj polecenie CREATE elementu do schowka + + + + Opens the SQLCipher FAQ in a browser window + Otwiera FAQ SQLCipher w oknie przeglądarki + + + + Table(&s) to JSON... + Tabele do pliku J&SON… + + + + Export one or more table(s) to a JSON file + Eksportuj jedną lub więcej tabel do pliku JSON + + + + Open Data&base Read Only... + Otwórz &bazę danych tylko do odczytu… + + + + Open an existing database file in read only mode + Otwórz istniejący plik bazy danych w trybie tylko do odczytu + + + + Save results + Zapisz wyniki + + + + Save the results view + Zapisuje widok wyniku + + + + This button lets you save the results of the last executed query + Ten przycisk umożliwia zapisanie wyników ostatnio wykonanego zapytania + + + + + Find text in SQL editor + Znajdź tekst w edytorze SQL + + + + Find + Znajdź + + + + This button opens the search bar of the editor + Ten przycisk otwiera pasek wyszukiwania edytora + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + Znajdź lub zastąp tekst w edytorze SQL + + + + Find or replace + Znajdź i zastąp + + + + This button opens the find/replace dialog for the current editor tab + Ten przycisk otwiera okno dialogowe znajdowania/zastępowania dla bieżącej karty edytora + + + + Ctrl+H + + + + + Export to &CSV + Eksportuj do &CSV + + + + Save as &view + Zapisz jako &widok + + + + Save as view + Zapisz jako widok + + + + Shows or hides the Project toolbar. + Pokazuje lub ukrywa pasek narzędzi Projekt. + + + + Extra DB Toolbar + Dodatkowy pasek narzędzi bazy danych + + + + Ctrl+Return + Ctrl+Return + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Ctrl+E + + + + + Reset Window Layout + Wyzeruj układ okien + + + + Alt+0 + + + + + The database is currenctly busy. + Baza danych jest obecnie zajęta. + + + + Click here to interrupt the currently running query. + Naciśnij tutaj, aby przerwać wykonywanie bieżącego zapytania. + + + + Encrypted + Szyfrowana + + + + Database is encrypted using SQLCipher + Baza danych jest zaszyfrowana z użyciem SQLCipher + + + + Read only + Tylko do odczytu + + + + Database file is read only. Editing the database is disabled. + Plik bazy danych jest tylko do odczytu. Edytowanie bazy danych jest wyłączone. + + + + Database encoding + Kodowanie bazy danych + + + + + Choose a database file + Wybierz plik bazy danych + + + + Could not open database file. +Reason: %1 + Nie można otworzyć pliku bazy danych. +Powód: %1 + + + + + + Choose a filename to save under + Wybierz nazwę pliku do zapisu + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + Ustawianie wartości PRAGMA lub odkurzanie spowoduje wdrożenie twoich zmian +z bieżącej transakcji. +Czy na pewno? + + + + In-Memory database + Baza danych w-pamięci + + + + Do you want to save the changes made to the project file '%1'? + Czy chcesz zapisać zmiany wprowadzone w plik projektu '%1'? + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + Czy na pewno usunąć tabelę '%1'? +Wszystkie dane skojarzone z tą tabelą zostaną utracone. + + + + Are you sure you want to delete the view '%1'? + Czy na pewno usunąć widok '%1'? + + + + Are you sure you want to delete the trigger '%1'? + Czy na pewno usunąć wyzwalacz '%1'? + + + + + Are you sure you want to delete the index '%1'? + Czy na pewno usunąć indeks '%1'? + + + + Error: could not delete the table. + Błąd: nie można usunąć bazy danych. + + + + Error: could not delete the view. + Błąd: nie można usunąć widoku. + + + + Error: could not delete the trigger. + Błąd: nie można usunąć wyzwalacza. + + + + Error: could not delete the index. + Błąd: nie można usunąć indeksu. + + + + Message from database engine: +%1 + Wiadomość z silnika bazy danych: +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + Zmiana tabeli wymaga zapisania wszystkich oczekujących zmian. +Czy na pewno zapisać bazę danych? + + + + Error checking foreign keys after table modification. The changes will be reverted. + Błąd sprawdzania kluczy obcych po zmianie tabeli. Zmiany zostaną wycofane. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + Tabela nie przeszła sprawdzenia klucza obcego.<br/>Należy wykonać 'Narzędzia | Sprawdzenie obcego klucza' i naprawić zgłoszone kłopoty. + + + + Edit View %1 + + + + + Edit Trigger %1 + + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + Już wykonujesz polecenia SQL. Czy zatrzymać je, aby wykonać bieżące polecenia? Działanie to może spowodować niespójność w bazie danych. + + + + -- EXECUTING SELECTION IN '%1' +-- + -- WYKONYWANIE ZAZNACZENIA W '%1' +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- WYKONYWANIE WIERSZA W '%1' +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- WYKONYWANIE WSZYSTKIEGO W '%1' +-- + + + + + At line %1: + W wierszu %1: + + + + Result: %1 + Wynik: %1 + + + + Result: %2 + Wynik: %2 + + + + %1 rows returned in %2ms + Zwrócono %1 wierszy w czasie %2ms + + + + Choose text files + Wybierz pliki tekstowe + + + + Opened '%1' in read-only mode from recent file list + + + + + Opened '%1' from recent file list + + + + + Project saved to file '%1' + Projekt zapisano do pliku '%1' + + + + This action will open a new SQL tab with the following statements for you to edit and run: + + + + + Rename Tab + Przemianuj kartę + + + + Duplicate Tab + Powiel kartę + + + + Close Tab + Zamknij kartę + + + + Opening '%1'... + Otwieranie '%1'... + + + + There was an error opening '%1'... + Błąd otwierania '%1'... + + + + Value is not a valid URL or filename: %1 + Wartość nie jest prawidłowym adresem URL lub nazwą pliku: %1 + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + Nie można zapisać bazy danych. Oznacza to, że nie wszystkie zmiany dało się zapisać w bazie danych. Najpierw trzeba pozbyć się następujących kłopotów. + +%1 + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + Czy na pewno wycofać wszystkie zmiany wprowadzone w pliku bazy danych '%1' od czasu ostatniego zapisu? + + + + Choose a file to import + Wybierz pliki do zaimportowania + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (tylko do odczytu) + + + + Open Database or Project + Otwórz bazę danych lub projekt + + + + Attach Database... + Dołącz bazę danych... + + + + Import CSV file(s)... + Importuj plik(i) CSV... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + Wybierz działanie dla upuszczonego pliku. <br/>Uwaga: tylko 'Import' przetworzy więcej niż jeden plik. + Wybierz działanie dla upuszczonych plików. <br/>Uwaga: tylko 'Import' przetworzy więcej niż jeden plik. + Wybierz działanie dla upuszczonych plików. <br/>Uwaga: tylko 'Import' przetworzy więcej niż jeden plik. + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + Czy chcesz zapisać zmiany wprowadzone w tabelach SQL do pliku projektu '%1'? + + + + Text files(*.sql *.txt);;All files(*) + Pliki tekstowe(*.sql *.txt);;Wszystkie pliki(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + Czy utworzyć plik nowej bazy danych do przechowania zaimportowanych danych? +Jeśli nie, to dane zostaną zaimportowane do pliku bieżącej bazy danych. + + + + Window Layout + + + + + Simplify Window Layout + + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + + + + + Dock Windows at Left Side + + + + + Dock Windows at Top + + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + Nadal wykonujesz polecenia SQL. Wykonywanie tych poleceń zostanie zatrzymane, po zamknięciu bazy danych, co może spowodować w niej niespójności. Czy na pewno zamknąć tę bazę danych? + + + + File %1 already exists. Please choose a different name. + Plik %1 już istnieje. Wybierz inną nazwę. + + + + Error importing data: %1 + Błąd importowania danych: %1 + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + Ukończono import. Nastąpiło przekroczenie niektórych z ograniczeń obcego klucza. Napraw je przed zapisaniem. + + + + Import completed. + Importowanie zakończone. + + + + Delete View + Usuń widok + + + + Modify View + Zmień widok + + + + Delete Trigger + Usuń wyzwalacz + + + + Modify Trigger + Zmień wyzwalacz + + + + Delete Index + Usuń indeks + + + + Modify Index + Zmień indeks + + + + Modify Table + Zmień tabelę + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + Ustawianie wartości PRAGMA spowoduje wdrożenie twoich zmian +z bieżącej transakcji. +Czy na pewno? + + + + Select SQL file to open + Wybierz plik SQL do otworzenia + + + + Select file name + Wybierz nazwę pliku + + + + Select extension file + Wybierz plik rozszerzenia + + + + Execution finished with errors. + Wykonano z błędami. + + + + Execution finished without errors. + Wykonano bez błędów. + + + + Do you want to save the changes made to SQL tabs in a new project file? + Czy chcesz zapisać zmiany wprowadzone w tabelach SQL do nowego pliku projektu? + + + + Do you want to save the changes made to the SQL file %1? + Czy chcesz zapisać zmiany wprowadzone w SQL do pliku %1? + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + Polecenia w tej karcie nadal są wykonywane. Wykonywanie tych poleceń zostanie zatrzymane, po zamknięciu karty, co może spowodować niespójności w bazie danych. Czy na pewno zamknąć tę kartę? + + + + Extension successfully loaded. + Pomyślnie wczytano rozszerzenie. + + + + Error loading extension: %1 + Nie można wczytać rozszerzenia: %1 + + + + Could not find resource file: %1 + Nie można znaleźć pliku zasobów: %1 + + + + + Don't show again + Nie pokazuj ponownie + + + + New version available. + Nowa wersja jest dostępna. + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Dostępna jest nowa wersja Przeglądarki SQLite (%1.%2.%3).<br/><br/>Pobierz z <a href='%4'>%4</a>. + + + + Choose a project file to open + Wybierz plik projektu do otworzenia + + + + DB Browser for SQLite project file (*.sqbpro) + Plik projektu Przeglądarki SQLite (*.sqbpro) + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + Ten plik projektu używa starego formatu pliku, bo został stworzony przy użyciu Przeglądarki SQLite w wersji 3.10 lub niższej. Wczytywanie tego formatu pliku jest nadal w pełni obsługiwane, lecz zalecamy przekształcenie wszystkich plików projektu na nowy format pliku, bo obsługa starych formatów może zniknąć w przyszłości. Aby przekształcić plik, wystarczy go otworzyć i zapisać. + + + + Could not open project file for writing. +Reason: %1 + Nie można otworzyć pliku projektu do zapisu. +Powód: %1 + + + + Collation needed! Proceed? + Potrzebne zestawianie! Postąpić naprzód? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + Tabela w tej bazie danych wymaga wyjątkowej funkcji zestawienia '%1' której ta aplikacja nie może dostarczyć bez dalszej wiedzy. +Pójścia z tym dalej, może spowodować uszkodzenia w bazie danych. +Stwórz kopię zapasową! + + + + creating collation + tworzenie zestawienia + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + Przemianowuje kartę SQL. Wstaw znaku '&&' aby móc wykorzystać następujący po nim znak jako skrót klawiszowy. + + + + Please specify the view name + Określ nazwę widoku + + + + There is already an object with that name. Please choose a different name. + Istnieje już obiekt o tej nazwie. Nadaj inną nazwę. + + + + View successfully created. + Pomyślnie utworzono widok. + + + + Error creating view: %1 + Błąd tworzenia widoku: %1 + + + + This action will open a new SQL tab for running: + To działanie otworzy nową kartę SQL aby wykonać: + + + + Press Help for opening the corresponding SQLite reference page. + Naciśnij Pomoc, aby otworzyć powiązaną stronę w podręczniku SQLite. + + + + Busy (%1) + Zajęty (%1) + + + + NullLineEdit + + + Set to NULL + Ustaw na NULL + + + + Alt+Del + + + + + PlotDock + + + Plot + Wykres + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>To okno pokazuje wykaz wszystkich kolumn w bieżącej tabeli lub właśnie wykonane zapytanie. Można wybrać kolumny wykorzystywane jako oś X lub Y do okna wykresu poniżej. Tabela pokazuje wykryty rodzaj osi, który wpłynie na wynikowy wykres. Dla osi Y można wybrać tylko kolumny liczbowe, a dla osi X można wybrać:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Data/Czas</span>: ciągi znaków o formacie &quot;yyyy-MM-dd hh:mm:ss&quot; lub &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Data</span>: ciągi znaków o formacie &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Czas</span>: ciągi znaków o formacie &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Etykieta</span>: inne ciągi znaków. Wybranie tej kolumny jako osi X utworzy wykres słupkowy z wartościami z kolumny będącymi etykietami dla słupków</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Liczbowe</span>: liczby całkowite lub rzeczywiste</li></ul><p>Aby zmienić barwy wykresu, należy kliknąć dwukrotnie na komórkach Y.</p></body></html> + + + + Columns + Kolumny + + + + X + X + + + + Y1 + + + + + Y2 + + + + + Axis Type + Rodzaj osi + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + Tutaj rysowany jest wykres po wybraniu wartości x oraz y powyżej. + +Aby zaznaczyć punkt na wykresie i w tabeli, należy kliknąć na niego. Ctrl+Klik aby zaznaczyć zakres punktów. + +Aby zmienić zakres osi, należy kliknąć i przeciągnąć myszą. Aby powiększyć należy przewinąć rolką myszy. + +Aby przeciągnąć i powiększyć tylko w jedną stronę, należy wybrać osie lub etykiety osi. + + + + Line type: + Rodzaj linii: + + + + + None + Brak + + + + Line + Linia + + + + StepLeft + Krok w lewo + + + + StepRight + Krok w prawo + + + + StepCenter + Krok do środka + + + + Impulse + Impuls + + + + Point shape: + Kształt punktu: + + + + Cross + Krzyż + + + + Plus + Plus + + + + Circle + Kółko + + + + Disc + Dysk + + + + Square + Kwadrat + + + + Diamond + Diament + + + + Star + Gwiazda + + + + Triangle + Trójkąt + + + + TriangleInverted + Trójkąt odwrócony + + + + CrossSquare + Krzyż w kwadracie + + + + PlusSquare + Plus w kwadracie + + + + CrossCircle + Krzyż w okręgu + + + + PlusCircle + Plus w okręgu + + + + Peace + Znak pokoju + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>Zapisz bieżący wykres...</p><p>Format pliku wybierany na podstawie rozszerzenia (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + Zapisz bieżący wykres… + + + + + Load all data and redraw plot + Wczytaj wszystkie dane i przerysuj wykres + + + + Copy + Skopiuj + + + + Print... + Drukuj... + + + + Show legend + Pokaż legendę + + + + Stacked bars + Słupki na stosie + + + + Date/Time + Data/Czas + + + + Date + Data + + + + Time + Czas + + + + + Numeric + Liczbowa + + + + Label + Podpis + + + + Invalid + Nieprawidłowy + + + + + + Row # + Nr wiersza + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + Wczytaj wszystkie dane i przerysuj wykres. +Uwaga: jeszcze nie wczytano wszystkich danych z tabeli ze względu na mechanizm częściowego wczytywania. + + + + Choose an axis color + Wybierz barwę osi + + + + Choose a filename to save under + Wybierz nazwę pliku do zapisu + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;Wszystkie pliki(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + W tym wykresie występują krzywe, a wybrany wygląd linii można zastosować tylko dla wykresów uszeregowanych po X. Uszereguj tabelę lub zapytaj po X, aby usunąć krzywe lub wybierz jeden z wyglądów obsługiwanych przez krzywe: Brak lub Linia. + + + + Loading all remaining data for this table took %1ms. + Wczytywanie wszystkich pozostałych danych dla tej tabeli zajęło %1ms. + + + + PreferencesDialog + + + Preferences + Ustawienia + + + + &General + O&gólne + + + + Default &location + Domyś&lne położenie + + + + Remember last location + Pamiętaj ostatnie położenie + + + + Always use this location + Zawsze używaj poniższego położenia + + + + Remember last location for session only + Zapomnij ostatnie położenie, dopiero po zamknięciu programu + + + + + + ... + + + + + Lan&guage + &Język + + + + Toolbar style + Wygląd paska narzędzi + + + + + + + + Only display the icon + Wyświetl tylko ikonę + + + + + + + + Only display the text + Wyświetl tylko tekst + + + + + + + + The text appears beside the icon + Tekst obok ikony + + + + + + + + The text appears under the icon + Tekst pod ikoną + + + + + + + + Follow the style + Domyślnie dla wyglądu + + + + Show remote options + Pokaż ustawienia zdalnych BD + + + + + + + + + + + + enabled + włączone + + + + Automatic &updates + Sam &uaktualniaj + + + + DB file extensions + Rozszerzenia plików bazy danych + + + + Manage + Zarządzaj + + + + Main Window + Główne okno + + + + Database Structure + Struktura danych + + + + Browse Data + Przeglądarka danych + + + + Execute SQL + Wykonaj SQL + + + + Edit Database Cell + Zmiana komórki bazy danych + + + + When this value is changed, all the other color preferences are also set to matching colors. + Po zmianie tej wartości, wszystkie inne ustawienia barw zostaną także ustawione na +pasujące barwy. + + + + Follow the desktop style + Zgodny z systemem + + + + Dark style + Ciemny + + + + Application style + Wygląd programu + + + + This sets the font size for all UI elements which do not have their own font size option. + + + + + Font size + + + + + &Database + Baza &danych + + + + Database &encoding + Kodowani&e bazy danych + + + + Open databases with foreign keys enabled. + Otwiera bazy danych z włączonymi kluczami obcymi. + + + + &Foreign keys + &Obce klucze + + + + Remove line breaks in schema &view + Usuń podziały wierszy w &widoku schematu + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + Po zaznaczeniu, usuwany jest znak łamania wiersza w kolumnie schematu karty struktury bazy danych, doku oraz drukowanym wyniku. + + + + Prefetch block si&ze + Ro&zmiar obszaru wczytanego z wyprzedzeniem + + + + SQ&L to execute after opening database + SQ&L do wykonania po otworzeniu bazy danych + + + + Default field type + Domyślny rodzaj pola + + + + Data &Browser + &Przeglądarka danych + + + + Font + Czcionka + + + + &Font + &Czcionka + + + + Font si&ze + Ro&zmiar czcionki + + + + Content + Zawartość + + + + Symbol limit in cell + Graniczna liczba znaków w komórce + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + Jest to graniczna liczba elementów, która jest dozwolona dla niektórych obliczeniowo pracochłonnych działań: +Graniczna liczba wierszy w tabeli do włączenia uzupełniania wartości na podstawie bieżących wartości w kolumnie. +Graniczna liczba indeksów w zaznaczeniu do obliczenia sumy i średniej. +Można ustawić na 0, aby wyłączyć wszystkie te działania. + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + Jest to graniczna liczba wierszy w tabeli do włączenia uzupełniania wartości na podstawie wartości znajdujących się już w kolumnie. +Można ustawić na 0, aby wyłączyć uzupełnianie. + + + + Close button on tabs + + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + + + + + Proxy + Pośrednik + + + + Configure + Ustawienia + + + + Field display + Wyświetlanie pola + + + + Displayed &text + Wyświetlany &tekst + + + + Binary + Dane dwójkowe + + + + NULL + Wartości NULL + + + + Regular + Zwykłe dane + + + + + + + + + Click to set this color + Naciśnij, aby ustawić tę barwę + + + + Text color + Barwa tekstu + + + + Background color + Barwa tła + + + + Preview only (N/A) + Tylko do podglądu (ND) + + + + Filters + Filtry + + + + Escape character + Znak wyjścia + + + + Delay time (&ms) + Czas opóźnienia (&ms) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + Ustaw czas oczekiwania przed zastosowaniem nowej wartości filtra. Może być ustawiony na 0, aby wyłączyć oczekiwanie. + + + + &SQL + &SQL + + + + Settings name + Nazwa ustawienia + + + + Context + Występowanie + + + + Colour + Barwa + + + + Bold + Pogrubienie + + + + Italic + Pochylenie + + + + Underline + Podkreślenie + + + + Keyword + Słowo kluczowe + + + + Function + Funkcja + + + + Table + Tabela + + + + Comment + Uwaga + + + + Identifier + Identyfikator + + + + String + Ciąg znaków + + + + Current line + Bieżący wiersz + + + + Background + Tło + + + + Foreground + Pierwszy plan + + + + SQL &editor font size + Rozmiar czcionki &edytora SQL + + + + SQL &results font size + &Rozmiar czcionki wyników SQL + + + + Tab size + Rozmiar tabulatora + + + + SQL editor &font + &Czcionka edytora SQL + + + + Database structure font size + + + + + Threshold for completion and calculation on selection + Uzupełniaj i obliczaj do tej liczby wierszy + + + + Show images in cell + Pokaż obrazy w komórce + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + Włącz to, aby pokazać podgląd obiektów BLOB zawierających dane obrazów w komórkach. Może to jednak wpłynąć na wydajność przeglądarki danych. + + + + &Wrap lines + Za&wijaj wiersze + + + + &Quotes for identifiers + &Cudzysłowy dla identyfikatorów + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + Wybierz zapis cudzysłowów stosowany w aplikacji do identyfikatorów w kodzie SQL. + + + + "Double quotes" - Standard SQL (recommended) + "Podwójne cudzysłowy" - Standard SQL (zalecane) + + + + `Grave accents` - Traditional MySQL quotes + `Pojedyncze cudzysłowy` - Tradycyjne cudzysłowy MySQL + + + + [Square brackets] - Traditional MS SQL Server quotes + [Nawiasy kwadratowe] - Tradycyjne cudzysłowy MS SQL Server + + + + Code co&mpletion + Uzupełnianie &kodu + + + + Keywords in &UPPER CASE + Słowa kl&uczowe WIELKIMI LITERAMI + + + + When set, the SQL keywords are completed in UPPER CASE letters. + Po zaznaczeniu, polecenia SQL są uzupełniane wielkimi literami. + + + + Error indicators + Wskaźniki błędów + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + Po zaznaczeniu, wiersze kodu SQL, które powodowały błędy podczas ostatniego wykonywania, są podświetlana, a okno wyniku pokazuje błąd w tle + + + + Hori&zontal tiling + Kafelki w po&ziomie + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + Po zaznaczeniu, edytor kodu SQL oraz widok tabeli wynikowej będą wyświetlane obok siebie zamiast jedno nad drugim. + + + + Never + Nigdy + + + + At word boundaries + Na granicach słów + + + + At character boundaries + Na granicach znaków + + + + At whitespace boundaries + Na granicach białych znaków + + + + &Extensions + Rozsz&erzenia + + + + Select extensions to load for every database: + Wybierz rozszerzenia wczytywane dla każdej bazy danych: + + + + Add extension + Dodaj rozszerzenie + + + + Remove extension + Usuń rozszerzenie + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>Mimo obsługi polecenia REGEXP, SQLite nie implementuje żadnego z algorytmu wyrażeń regularnych<br/>lecz zwraca się z powrotem do aplikacji, która je uruchomiła. Przeglądarka SQLite implementuje ten<br/>algorytm, aby móc od razu korzystać z REGEXP. Jednakże, ze względu na to, że istnieje wiele możliwych<br/>implementacji wyrażeń regularnych, to można wyłączyć ten wbudowany<br/>i wczytać swój własny. Wymaga to jednak ponownego uruchomienia aplikacji.</p></body></html> + + + + Disable Regular Expression extension + Wyłącz rozszerzenie wyrażeń regularnych + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html><head/><body><p>SQLite dostarcza funkcję SQL do wczytywania rozszerzeń z pliku biblioteki współdzielonej. Zaznacz to, aby używać funkcji <span style=" font-style:italic;">load_extension()</span> z kodu SQL.</p><p>Ze względu na bezpieczeństwo, wczytywanie rozszerzeń jest domyślnie wyłączone i musi zostać włączone przez to ustawienie. Zawsze można wczytywać rozszerzenia przez interfejs użytkownika, nawet gdy pole to jest odznaczone.</p></body></html> + + + + Allow loading extensions from SQL code + Zezwól na wczytywanie rozszerzeń z kodu SQL + + + + Remote + Zdalne BD + + + + CA certificates + Certyfikaty UC + + + + + Subject CN + NP podmiotu + + + + Common Name + Nazwa powszechna + + + + Subject O + O podmiotu + + + + Organization + Organizacja + + + + + Valid from + Ważny od + + + + + Valid to + Ważny do + + + + + Serial number + Numer seryjny + + + + Your certificates + Twoje certyfikaty + + + + File + Plik + + + + Subject Common Name + Nazwa powszechna podmiotu + + + + Issuer CN + NP wydawcy + + + + Issuer Common Name + Nazwa powszechna wydawcy + + + + Clone databases into + Pobieraj bazy danych do + + + + + Choose a directory + Wybierz katalog + + + + The language will change after you restart the application. + Język zmieni się po ponownym uruchomieniu aplikacji. + + + + Select extension file + Wybierz plik rozszerzenia + + + + Extensions(*.so *.dylib *.dll);;All files(*) + Rozszerzenia(*.so *.dylib *.dll);;Wszystkie pliki(*) + + + + Import certificate file + Importuj plik certyfikatu + + + + No certificates found in this file. + Nie znaleziono certyfikatów w tym pliku. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + Czy na pewno usunąć ten certyfikat? Wszystkie dane certyfikatu zostaną usunięte z ustawień aplikacji! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + Czy na pewno wyczyścić wszystkie zapisane ustawienia? +Wszystkie zapisane ustawienia zostaną utracone i zastąpione domyślnymi. + + + + ProxyDialog + + + Proxy Configuration + Ustawienia proxy + + + + Pro&xy Type + &Rodzaj pośrednika: + + + + Host Na&me + Nazwa &gospodarza + + + + Port + Port + + + + Authentication Re&quired + &Wymagane uwierzytelnienie + + + + &User Name + Nazwa &użytkownika + + + + Password + Hasło + + + + None + Brak + + + + System settings + Ustawienia systemowe + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + All files (*) + Wszystkie pliki (*) + + + + Error importing data + Błąd importowania danych + + + + from record number %1 + z rekordu o numerze %1 + + + + . +%1 + . +%1 + + + + Importing CSV file... + Importowanie pliku CSV… + + + + Cancel + Zaniechaj + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + Pliki bazy danych SQLite (*.db *.sqlite *.sqlite3 *.db3) + + + + Left + Do lewej + + + + Right + Do prawej + + + + Center + Do środka + + + + Justify + Wyjustuj + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + Pliki bazy danych SQLite (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + Przeglądarka BD dla plików projektu SQLite (*.sqbpro) + + + + SQL Files (*.sql) + Pliki SQL (*.sql) + + + + All Files (*) + Wszystkie pliki (*) + + + + Text Files (*.txt) + Pliki tekstowe (*.txt) + + + + Comma-Separated Values Files (*.csv) + Pliki z wartościami oddzielonymi przecinkiem (*.csv) + + + + Tab-Separated Values Files (*.tsv) + Pliki z wartościami oddzielonymi tabulatorem (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + Pliki z wartościami oddzielonymi rozdzielaczem (*.dsv) + + + + Concordance DAT files (*.dat) + Pliki Concordance DAT (*.dat) + + + + JSON Files (*.json *.js) + Pliki JSON (*.json *.js) + + + + XML Files (*.xml) + Pliki XML (*.xml) + + + + Binary Files (*.bin *.dat) + Pliki dwójkowe (*.bin *.dat) + + + + SVG Files (*.svg) + Pliki SVG (*.svg) + + + + Hex Dump Files (*.dat *.bin) + Pliki zrzutu szesnastkowego (*.dat *.bin) + + + + Extensions (*.so *.dylib *.dll) + Rozszerzenia (*.so *.dylib *.dll) + + + + RemoteCommitsModel + + + Commit ID + + + + + Message + + + + + Date + Data + + + + Author + + + + + Size + Rozmiar + + + + Authored and committed by %1 + + + + + Authored by %1, committed by %2 + + + + + RemoteDatabase + + + Error opening local databases list. +%1 + Nie można otworzyć wykazu lokalnych baz danych. +%1 + + + + Error creating local databases list. +%1 + Nie można utworzyć wykazu lokalnych baz danych. +%1 + + + + RemoteDock + + + Remote + Zdalne BD + + + + Identity + Tożsamość + + + + Push currently opened database to server + Wypchnij bieżącą bazę danych na serwer + + + + DBHub.io + + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + + + + + Local + + + + + Current Database + + + + + Clone + + + + + User + Użytkownika + + + + Database + Baza danych + + + + Branch + Gałąź + + + + Commits + + + + + Commits for + + + + + Delete Database + + + + + Delete the local clone of this database + + + + + Open in Web Browser + + + + + Open the web page for the current database in your browser + + + + + Clone from Link + + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + + + + + Refresh + Odśwież + + + + Reload all data and update the views + + + + + F5 + + + + + Clone Database + + + + + Open Database + + + + + Open the local copy of this database + + + + + Check out Commit + + + + + Download and open this specific commit + + + + + Check out Latest Commit + + + + + Check out the latest commit of the current branch + + + + + Save Revision to File + + + + + Saves the selected revision of the database to another file + + + + + Upload Database + + + + + Upload this database as a new commit + + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html><head/><body><p>Obecnie używasz wbudowanej tożsamości, która jest tylko do odczytu. Aby wysłać bazę danych musisz posłużyć się kontem z DBHub.io.</p><p>Nie masz jeszcze konta DBHub.io? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Utwórz je teraz</span></a> i zaimportuj swój certyfikat<a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">tutaj</span></a>, aby móc dzielić się swoimi bazami danych.</p><p>Aby uzyskać pomoc w sieci, zajrzyj <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">tutaj</span></a>.</p></body></html> + + + + Back + Wstecz + + + + Select an identity to connect + + + + + Public + Publiczna + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + + + + + Invalid URL: The host name does not match the host name of the current identity. + + + + + Invalid URL: No branch name specified. + + + + + Invalid URL: No commit ID specified. + + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + + + + + The database has unsaved changes. Are you sure you want to push it before saving? + + + + + The database you are trying to delete is currently opened. Please close it before deleting. + + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + + + + + RemoteLocalFilesModel + + + Name + Nazwa + + + + Branch + Gałąź + + + + Last modified + Ostatnia zmiana + + + + Size + Rozmiar + + + + Commit + + + + + File + Plik + + + + RemoteModel + + + Name + Nazwa + + + + Commit + Wdroż + + + + Last modified + Ostatnia zmiana + + + + Size + Rozmiar + + + + Size: + + + + + Last Modified: + + + + + Licence: + + + + + Default Branch: + + + + + RemoteNetwork + + + Choose a location to save the file + + + + + Error opening remote file at %1. +%2 + Wystąpił błąd podczas otwierania zdalnego pliku w %1. +%2 + + + + Error: Invalid client certificate specified. + Błąd: Podano nieprawidłowy certyfikat klienta. + + + + Please enter the passphrase for this client certificate in order to authenticate. + Podaj hasło dla certyfikatu tego klienta, aby się uwierzytelnić. + + + + Cancel + Zaniechaj + + + + Uploading remote database to +%1 + Wysyłanie zdalnej bazy danych do +%1 + + + + Downloading remote database from +%1 + Pobieranie zdalnej bazy danych z +%1 + + + + + Error: The network is not accessible. + Błąd: Sieć jest niedostępna. + + + + Error: Cannot open the file for sending. + Błąd: Nie można otworzyć pliku do wysłania. + + + + RemotePushDialog + + + Push database + Wypchnij bazę danych + + + + Database na&me to push to + &Nazwa bazy danych, do której wypchnąć + + + + Commit message + Opis wdrożenia + + + + Database licence + Licencja bazy danych + + + + Public + Publiczna + + + + Branch + Gałąź + + + + Force push + Wymuś wypchnięcie + + + + Username + + + + + Database will be public. Everyone has read access to it. + Baza danych będzie publiczna. Każdy będzie mógł uzyskać do niej dostęp. + + + + Database will be private. Only you have access to it. + Baza danych będzie prywatna. Tylko Ty będziesz mieć do niej dostęp. + + + + Use with care. This can cause remote commits to be deleted. + Bądź ostrożny. Może to usunąć wdrożenia ze zdalnych miejsc. + + + + RunSql + + + Execution aborted by user + Wykonywanie przerwane przez użytkownika + + + + , %1 rows affected + , dotyczyło %1 wiersza + + + + query executed successfully. Took %1ms%2 + pomyślnie wykonano zapytanie. Zajęło to %1ms%2 + + + + executing query + wykonywanie zapytania + + + + SelectItemsPopup + + + A&vailable + &Dostępne + + + + Sele&cted + &Wybrane + + + + SqlExecutionArea + + + Form + Formularz + + + + Find previous match [Shift+F3] + Znajdź poprzednie trafienie [Shift+F3] + + + + Find previous match with wrapping + Znajdź poprzednie pasujące z zawijaniem + + + + Shift+F3 + + + + + The found pattern must be a whole word + Wzorzec do znalezienia musi być całym słowem + + + + Whole Words + Całe słowa + + + + Text pattern to find considering the checks in this frame + Wzorzec tekstu do znalezienia, biorąc pod uwagę pola zaznaczone w tym oknie + + + + Find in editor + Znajdź w edytorze + + + + The found pattern must match in letter case + Wzorzec do znalezienia musi pasować wielkością liter + + + + Case Sensitive + Rozróżniaj wielkość znaków + + + + Find next match [Enter, F3] + Znajdź następne trafienie [Enter, F3] + + + + Find next match with wrapping + Znajdź następne pasujące z zawijaniem + + + + F3 + + + + + Interpret search pattern as a regular expression + Rozpatrz wzorzec wyszukiwania jako wyrażenie regularne + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Po zaznaczeniu, wzorzec do znalezienia jest rozważany jako wyrażenie regularne UNIX. Zajrzyj do <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Wyrażeń Regularnych w Wikibooks</a>.</p></body></html> + + + + Regular Expression + Wyrażenie regularne + + + + + Close Find Bar + Zamknij pasek wyszukiwania + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html><head/><body><p>Wynik ostatnio wykonanych poleceń.</p><p>Zalecamy zwinięcie tego okna i otworzenie doku <span style=" font-style:italic;">Dziennika SQL</span> z wyborem <span style=" font-style:italic;">Użytkownika</span>.</p></body></html> + + + + Results of the last executed statements + Wyniki ostatnio wykonanych poleceń + + + + This field shows the results and status codes of the last executed statements. + To pole pokazuje wyniki i kody wyjścia ostatnio wykonanych poleceń + + + + Couldn't read file: %1. + Nie można odczytać pliku: %1. + + + + + Couldn't save file: %1. + Nie można zapisać pliku: %1. + + + + Your changes will be lost when reloading it! + Utracisz swoje zmiany po ponownym wczytaniu! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + Inny program zmienił plik "%1". Czy chcesz wczytać go ponownie?%2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) Funkcja abs(X) zwraca wartość bezwzględną argumentu liczbowego X. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () Funkcja changes() zwraca liczbę wierszy bazy danych, które zostały wstawiony lub usunięte przez ostatnio ukończone polecenie INSERT, DELETE, or UPDATE. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) Funkcja char(X1,X2,...,XN) zwraca ciąg znaków składający się ze znaków mających wartości punków kodu unikod będących liczbami całkowitymi w zakresie od X1 do XN, odpowiednio. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) Funkcja coalesce() zwraca kopię swojego pierwszego argumentu nie-NULL lub NULL, jeśli wszystkie argumenty są NULL + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) Funkcja glob(X,Y) jest tożsama wyrażeniu "Y GLOB X". + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) Funkcja ifnull() zwraca kopię swojego pierwszego argumentu nie-NULL lub NULL, jeśli oba argumenty są NULL. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) Funkcja instr(X,Y) znajduje pierwsze wystąpienie ciągu znaków Y wewnątrz ciągu znaków X i zwraca liczbę znaków poprzedzających plus 1, lub 0, jeśli nie można znaleźć Y w X. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) Funkcja hex() interpretuje swoje argumenty jako KAWAŁKI i zwraca ciągi znaków, które są przedstawieniem szesnastkowym treści kawałka, zapisanym wielkimi literami. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () Funkcja last_insert_rowid() zwraca ROWID ostatniego wstawionego wiersza z połączenia bazy danych, która wywołała tę funkcję. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) Dla wartości ciągu znaków X, funkcja length(X) zwraca liczbę znaków (nie bajtów) w X do chwili napotkania pierwszego znaku NUL. + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X,Y) Funkcja like() jest używana do implementacji wyrażenia "Y LIKE X". + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) Funkcja like() jest używana do implementacji wyrażenia "Y LIKE X ESCAPE Z". + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) Funkcja load_extension(X) wczytuje rozszerzenia SQLite z pliku biblioteki współdzielonej o nazwie X. +Aby użyć tej funkcji, należy wyrazić zgodę w Ustawieniach. + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X,Y) Funkcja load_extension(X) wczytuje rozszerzenia SQLite z pliku biblioteki współdzielonej o nazwie X przy użyciu punktu wejściowego Y. +Aby użyć tej funkcji, należy wyrazić zgodę w Ustawieniach. + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) Funkcja lower(X) zwraca kopię ciągu znaków X po przekształceniu wszystkich znaków ASCII na pisane małymi literami. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ltrim(X) usuwa odstępy z lewej strony X. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) Funkcja ltrim(X,Y) zwraca ciąg znaków utworzony po usunięciu dowolnego i wszystkich znaków, które ukazują się w Y z lewej strony X. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) Funkcja wieloargumentowa max() zwraca argument o wartości największej lub NULL, jeśli dowolny argument jest NULL. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) Funkcja wieloargumentowa min() zwraca argument o wartości najmniejszej. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) Funkcja nullif(X,Y) zwraca swój pierwszy argument, jeśli argumenty są różne i NULL, jeśli argumenty są te same. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) Funkcja SQL printf(FORMAT,...) działa jak funkcja sqlite3_mprintf() języka C oraz printf() ze standardowej biblioteki C. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) Funkcja quote(X) zwraca dosłowny tekst SQL, który jest wartością jego argumentów +gotową do wstawienia w polecenie SQL. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () Funkcja random() zwraca pseudo-losową liczbę całkowitą z zakresu od -9223372036854775808 do +9223372036854775807. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) Funkcja randomblob(N) zwraca N-bajtowy kawałek zawierający pseudo-losowe bajty. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) Funkcja replace(X,Y,Z) zwraca ciąg znaków utworzony poprzez podmianę ciągu znaków Z dla każdego wystąpienia ciągu znaków Y w ciągu znaków X. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) Funkcja round(X) zwraca wartość liczby zmiennoprzecinkowej X zaokrąglonej do części całkowitej. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) Funkcja round(X,Y) zwraca wartość liczby zmiennoprzecinkowej X zaokrąglonej do liczby znaków dziesiętnych określonych przez Y. + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) rtrim(X) usuwa odstępy z prawej strony X. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) Funkcja rtrim(X,Y) zwraca ciąg znaków utworzony po usunięciu dowolnego i wszystkich znaków, które ukazują się w Y z prawej strony X. + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) Funkcja soundex(X) zwraca ciąg znaków X zakodowany jako soundex. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) substr(X,Y) zwraca wszystkie znaki do końca ciągu znaków X zaczynając od Y-tego. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y,Z) Funkcja substr(X,Y,Z) zwraca podciąg znaków ciągu wejściowego znaków X, który zaczyna się na Y-tym znaku i który jest długi na Z znaków. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () Funkcja total_changes() zwraca liczbę zmienionych wierszy przez polecenia INSERT, UPDATE lub DELETE od chwili nawiązania połączenia z bazą danych. + + + + (X) trim(X) removes spaces from both ends of X. + (X) trim(X) usuwa odstępy z obu stron X. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) Funkcja trim(X,Y) zwraca ciąg znaków utworzony po usunięciu dowolnego i wszystkich znaków, które ukazują się w Y z obu stron X. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) Funkcja typeof(X) zwraca ciąg znaków, który wskazuje na rodzaj danych wyrażenia X. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) Funkcja unicode(X) zwraca punkt numerycznego kodu unikodu odpowiadający pierwszemu znakowi ciągu X. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) Funkcja upper(X) zwraca kopię ciągu znaków X po przekształceniu wszystkich znaków ASCII na pisane wielkimi literami. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) Funkcja zeroblob(N) zwraca KAWAŁEK składający się z N bajtów 0x00. + + + + + + + (timestring,modifier,modifier,...) + (ciąg_znaków_czasu,zmieniacz,zmieniacz,...) + + + + (format,timestring,modifier,modifier,...) + (format,ciąg_znaków_czasu,zmieniacz,zmieniacz,...) + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) Funkcja avg() zwraca wartość średnią wszystkich nie-NULL X wewnątrz grupy. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) Funkcja count(X) zwraca liczbę tego ile razy X nie jest NULL w grupie. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) Funkcja group_concat() zwraca ciąg znaków, który jest złączeniem wszystkich wartości nie-NULL X. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) Funkcja group_concat() zwraca ciąg znaków będący złączeniem wszystkich wartości nie-NULL X. Jeśli obecne jest Y, to służy jako znak oddzielający wystąpienia X. + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) Funkcja max() zwraca najwyższą wartość z wartości w grupie. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) Funkcja min() zwraca najmniejszą wartość nie-NULL z wartości w grupie. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) Funkcje sum() oraz total() zwracają sumę wszystkich wartości nie-NULL w grupie. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () Numer wiersza wewnątrz bieżącej partycji. Partycje są ponumerowane od 1 w kolejności określonej przez wyrażenie ORDER BY w określeniu okna lub w dowolnej kolejności. + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Numer wiersza row_number() pierwszego członka w każdej grupie - ranga bieżącego wiersza w rozstępach. Jeśli brak polecenia ORDER BY, to wszystkie wiersze są rozważane jako członkowie i funkcja zawsze zwraca 1. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Numer grupy bieżącego wiersza wewnątrz jego partycji - ranga bieżącego wiersza bez przerw. Partycje są ponumerowane od 1 w kolejności określonej przez wyrażenie ORDER BY w określeniu okna. Jeśli brak wyrażenia ORDER BY, to wszystkie wiersze są rozważane jako leżące obok siebie, a funkcja ta zwraca 1. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () Pomimo nazwy, funkcja ta zawsze zwraca wartość pomiędzy 0.0 oraz 1.0 równą (rank - 1)/(wiersze-partycji - 1), gdzie rank jest wartością zwracaną przez wbudowaną funkcję rank() okna, a wiersze-partycji jest całkowitą liczbą wierszy w partycji. Jeśli partycja zawiera tylko jeden wiersz, to ta funkcja zwraca 0.0. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () Rozkład nagromadzony. Obliczany jako numer-wiersza/wiersze-partycji, gdzie +numer-wiersza jest wartością zwracaną przez row_number() dla ostatniego +elementu w grupie, a wiersze-partycji to liczba wierszy w partycji. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) Argument N jest rozważany jako liczba całkowita. Ta funkcja dzieli partycję na N grup tak równo jak to możliwe i przypisuje liczbę całkowitą z zakresu od 1 do N każdej grupie w kolejności określonej przez polecenie ORDER BY lub dowolnej. Jeśli zajdzie taka potrzeba, to większe grupy wystąpią jako pierwsze. Ta funkcja zwraca liczbę całkowitą przypisaną do grupy, do której bieżący wiersz należy. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) Zwraca wynik obliczania wyrażenia expr na poprzednim wierszu w partycji. Lub, jeśli nie ma poprzedniego wiersza (bo bieżący wiersz jest pierwszym), NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr,przesunięcie) Jeśli podano argument przesunięcia, to musi on być nieujemną liczbą całkowitą. W tym przypadku wartością zwracaną jest wynik obliczenia wyrażenia na wierszu przesuniętym o daną liczbę wierszy wstecz względem bieżącego wiersza. Jeśli nie będzie takiego wiersza, to zwracane jest NULL. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,przesunięcie,domyślne) Jeśli podano także domyślne, to jest to wartości zwracana zamiast NULL, jeśli wiersz określony przez przesunięcie nie istnieje. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) Zwraca wynik obliczania wyrażenia expr na następnym wierszu w partycji. Lub, jeśli nie ma następnego wiersza (bo bieżący wiersz jest ostatnim), NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,przesunięcie) Jeśli podano argument przesunięcia, to musi on być nieujemną liczbą całkowitą. W tym przypadku wartością zwracaną jest wynik obliczenia wyrażenia na wierszu przesuniętym o daną liczbę wierszy wprzód względem bieżącego wiersza. Jeśli nie będzie takiego wiersza, to zwracane jest NULL. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) Ta wbudowana funkcja okna oblicza ramę okna dla każdego wiersza w ten sam sposób jak funkcja okna złożonego. Zwraca wartość expr obliczoną na pierwszym wierszu ramy okna dla każdego wiersza. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) Ta wbudowana funkcja okna oblicza ramę okna dla każdego wiersza w ten sam sposób jak funkcja okna złożonego. Zwraca wartość expr obliczoną na ostatnim wierszu ramy okna dla każdego wiersza. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr,N) Ta wbudowana funkcja okna oblicza ramę okna dla każdego wiersza w ten sam sposób jak funkcja okna złożonego. Zwraca wartość expr obliczoną na N-tym wierszu ramy okna. Wiersze są numerowane wewnątrz ramy okna poczynając od 1 w kolejności określonej przez polecenie ORDER BY jeśli jest obecne lub w dowolnej kolejności. Jeśli N-ty wiersz nie istnieje w partycji, to zwracane jest NULL. + + + + SqliteTableModel + + + reading rows + czytanie wierszy + + + + loading... + wczytywanie... + + + + References %1(%2) +Hold %3Shift and click to jump there + Odwołania %1(%2) +Przyciśnij %3Shift i kliknij, aby tu przejść + + + + Error changing data: +%1 + Wystąpił błąd podczas zmiany danych: +%1 + + + + retrieving list of columns + uzyskiwanie listy kolumn + + + + Fetching data... + Uzyskiwanie danych… + + + + + Cancel + Zaniechaj + + + + TableBrowser + + + Browse Data + Przeglądaj dane + + + + &Table: + &Tabela: + + + + Select a table to browse data + Wybierz tabelę, aby przeglądać dane + + + + Use this list to select a table to be displayed in the database view + Użyj tej listy, aby zaznaczyć tabelę wyświetlaną w widoku bazy danych + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + Oto widok tabeli bazy danych. Możliwe są następujące działania: + - Pisanie do przeedytowania wartości w-wierszu. + - Dwukrotne kliknięcie na rekordzie, aby edytować jego zawartość w edytorze komórek. + - Alt+Del do usunięcia treści komórki i ustawienia NULL. + - Ctrl+" do powielenia bieżącego rekordu. + - Ctrl+' do skopiowania wartości z komórki powyżej. + - Standardowe zaznaczanie/kopiowanie/wklejanie. + + + + Text pattern to find considering the checks in this frame + Wzorzec tekstu do znalezienia, biorąc pod uwagę pola zaznaczone w tym oknie + + + + Find in table + Znajdź w tabeli + + + + Find previous match [Shift+F3] + Znajdź poprzednie pasujące [Shift+F3] + + + + Find previous match with wrapping + Znajdź poprzednie pasujące z mapowaniem + + + + Shift+F3 + + + + + Find next match [Enter, F3] + Znajdź następne pasujące [Enter, F3] + + + + Find next match with wrapping + Znajdź następne pasujące z nawracaniem + + + + F3 + + + + + The found pattern must match in letter case + Wzorzec do znalezienia musi pasować wielkością liter + + + + Case Sensitive + Rozróżniaj wielkość liter + + + + The found pattern must be a whole word + Wzorzec do znalezienia musi być całym słowem + + + + Whole Cell + Cała komórka + + + + Interpret search pattern as a regular expression + Rozpatrz wzorzec wyszukiwania jako wyrażenie regularne + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Po zaznaczeniu, wzorzec do znalezienia jest rozważany jako wyrażenie regularne UNIX. Zajrzyj do <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Wyrażeń Regularnych w Wikibooks</a>.</p></body></html> + + + + Regular Expression + Wyrażenie regularne + + + + + Close Find Bar + Zamknij pasek wyszukiwania + + + + Text to replace with + Tekst do zastąpienia + + + + Replace with + Zastąp + + + + Replace next match + Zastąp następne pasujące wyrażenie + + + + + Replace + Zastąp + + + + Replace all matches + Zastąp wszystkie pasujące wyrażenia + + + + Replace all + Zastąp wszystkie + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Przewiń do początku</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Naciśnięcie tego przycisku kieruje na początek powyższego widoku tabeli.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + Przewiń jedną stronę w górę + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>Naciśnięcie tego przycisku przenosi o jedną stronę wyżej w powyższym widoku tabeli.</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 z 0 + + + + Scroll one page downwards + Przewiń jedną stronę w dół + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>Naciśnięcie tego przycisku przenosi o jedną stronę niżej w powyższym widoku tabeli.</p></body></html> + + + + > + > + + + + Scroll to the end + Przewiń na koniec + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>Naciśnij tutaj, aby przejść do danego rekordu</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>Ten przycisk służy to przejścia do rekordu o numerze podanym w obszarze Przejścia.</p></body></html> + + + + Go to: + Przejdź do: + + + + Enter record number to browse + Wprowadź numer rekordu do przejrzenia + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Wpisz numer rekordu w tym obszarze i naciśnij na Przejdź Do, aby wyświetlić rekord w widoku bazy danych + + + + 1 + 1 + + + + Show rowid column + Pokaż kolumnę ID wiersza + + + + Toggle the visibility of the rowid column + Pokaż/Ukryj kolumnę ID wiersza + + + + Unlock view editing + Odblokuj zmianę widoku + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + To umożliwia wprowadzanie zmian w bieżącym widoku. Jednakże potrzebne będą odpowiednie wyzwalacze do zmiany. + + + + Edit display format + Zmień format wyświetlania + + + + Edit the display format of the data in this column + Zmień sposób wyświetlania danych w tej kolumnie + + + + + New Record + Nowy rekord + + + + + Insert a new record in the current table + Wstaw nowy rekord bieżącej tabeli + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>Ten przycisk tworzy nowy rekord w bazie danych. Przyciśnij przycisk myszy, aby otworzyć menu podręczne z różnymi ustawieniami:</p><ul><li><span style=" font-weight:600;">Nowy rekord</span>: wstawia nowy rekord o domyślnych wartościach do bazy danych.</li><li><span style=" font-weight:600;">Wstaw wartości...</span>: otwiera okno dialogowe do wpisywania wartości przed ich wstawieniem do bazy danych. Umożliwia to wpisanie wartości przy zachowaniu różnych ograniczeń. To okno dialogowe jest także otwarte, gdy nie powiedzie się wykonanie polecenia <span style=" font-weight:600;">Nowy rekord</span> ze względu na te ograniczenia .</li></ul></body></html> + + + + + Delete Record + Usuń rekord + + + + Delete the current record + Usuń bieżący rekord + + + + + This button deletes the record or records currently selected in the table + Ten przycisk usuwa obecnie zaznaczony rekord lub rekordy z tabeli + + + + + Insert new record using default values in browsed table + Wstaw nowy rekord przy użyciu domyślnych wartości bieżącej tabeli + + + + Insert Values... + Wstaw wartości... + + + + + Open a dialog for inserting values in a new record + Otwiera okno dialogowe do wstawiania wartości do nowego rekordu + + + + Export to &CSV + Eksportuj do &CSV + + + + + Export the filtered data to CSV + Eksportuj przefiltrowane dane do CSV + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + Ten przycisk wyeksportuje dane bieżącej tabeli tak jak są obecnie wyświetlane (po filtrach, z formatami wyświetlania i kolejnością kolumn) jako plik CSV. + + + + Save as &view + Zapisz jako &widok + + + + + Save the current filter, sort column and display formats as a view + Zapisuje bieżący filtr, kolumnę do szeregowania oraz formaty wyświetlania jako widok + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + Ten przycisk zapisuje bieżące ustawienia oglądanej tabeli (filtry, formaty wyświetlania i kolejność kolumn) jako widok SQL, który można później przeglądać lub wstawić do polecenia SQL. + + + + Save Table As... + Zapisz tabelę jako... + + + + + Save the table as currently displayed + Zapisz tabelę tak, jak jest obecnie wyświetlana + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>To menu podręczne zawiera następujące ustawienie stosujące się do obecnie oglądanej i filtrowanej tabeli:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Eksportuj do CSV: eksportuje dane oglądanej tabeli tak jak jest obecnie wyświetlana (po filtrach, z formatami wyświetlania i kolejnością kolumn) do pliku CSV.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Zapisz jako widok: zapisuje bieżące ustawienia oglądanej tabeli (filtry, formaty wyświetlania i kolejność kolumn) jako widok SQL, który można później przeglądać lub wstawić do polecenia SQL.</li></ul></body></html> + + + + Hide column(s) + Ukryj kolumnę/y + + + + Hide selected column(s) + Ukryj zaznaczoną/e kolumnę/y + + + + Show all columns + Pokaż wszystkie kolumny + + + + Show all columns that were hidden + Pokaż wszystkie ukryte kolumny + + + + + Set encoding + Ustaw kodowanie + + + + Change the encoding of the text in the table cells + Zmień kodowanie tekstu w komórkach tabeli + + + + Set encoding for all tables + Ustaw kodowanie dla wszystkich tabel + + + + Change the default encoding assumed for all tables in the database + Zmień domyślne kodowanie przyjęte dla wszystkich table w bazie danych + + + + Clear Filters + Wyczyść filtry + + + + Clear all filters + Wyczyść wszystkie filtry + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + Ten przycisk wyczyści wszystkie filtry ustawione na polach wejściowych nagłówka dla bieżącej tabeli. + + + + Clear Sorting + Wyczyść szeregowanie + + + + Reset the order of rows to the default + Przywróć porządek wierszy do domyślnego + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + Ten przycisk czyści kolumny szeregowania dla danej tabeli i powraca do domyślnego porządku. + + + + Print + Drukuj + + + + Print currently browsed table data + Wyświetl dane bieżącej tabeli + + + + Print currently browsed table data. Print selection if more than one cell is selected. + Drukuj dane bieżącej tabeli. Drukuj zaznaczenie, jeśli zaznaczono więcej niż jedną komórkę. + + + + Ctrl+P + + + + + Refresh + Odśwież + + + + Refresh the data in the selected table + Odśwież dane w zaznaczonej tabeli + + + + This button refreshes the data in the currently selected table. + Ten przycisk odświeża dane w obecnie zaznaczonej tabeli. + + + + F5 + + + + + Find in cells + Znajdź w komórkach + + + + Open the find tool bar which allows you to search for values in the table view below. + Otwórz pasek wyszukiwania, który umożliwi wyszukiwanie wartości w poniższym widoku tabeli. + + + + + Bold + Pogrubienie + + + + Ctrl+B + + + + + + Italic + Kursywa + + + + + Underline + Podkreślenie + + + + Ctrl+U + + + + + + Align Right + Wyrównaj do prawej + + + + + Align Left + Wyrównaj do lewej + + + + + Center Horizontally + Wyśrodkuj w poziomie + + + + + Justify + Justowanie + + + + + Edit Conditional Formats... + Edytuj formatowanie warunkowe... + + + + Edit conditional formats for the current column + Zmień formatowania warunkowe dla bieżącej kolumny + + + + Clear Format + Wyczyść format + + + + Clear All Formats + Wyczyść wszystkie formatowania + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + Wyczyść wszystkie formatowania warunkowe dla zaznaczonej komórki i wszystkie formatowania warunkowe dla zaznaczonych kolumn + + + + + Font Color + Barwa czcionki + + + + + Background Color + Barwa tła + + + + Toggle Format Toolbar + Pokaż pasek formatowania + + + + Show/hide format toolbar + Pokaż/ukryj pasek formatu + + + + + This button shows or hides the formatting toolbar of the Data Browser + Ten przycisk pokazuje lub ukrywa pasek formatowania dla przeglądarki danych + + + + Select column + Zaznacz kolumnę + + + + Ctrl+Space + Ctrl+Spacja + + + + Replace text in cells + Zastąp tekst w komórkach + + + + Filter in any column + + + + + Ctrl+R + + + + + %n row(s) + + %n wiersz + %n wiersze + %n wierszy + + + + + , %n column(s) + + , %n kolumna + , %n kolumny + , %n kolumn + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . Suma: %1; Średnia: %2; Min: %3; Maks: %4 + + + + Conditional formats for "%1" + Formatowania warunkowe dla "%1" + + + + determining row count... + określanie liczby wierszy… + + + + %1 - %2 of >= %3 + %1 - %2 z >= %3 + + + + %1 - %2 of %3 + %1 - %2 z %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + Podaj pseudo-główny klucz, aby rozpocząć edytowanie w tym widoku. Powinna to być nazwa niepowtarzalnej kolumny w widoku. + + + + Delete Records + Usuń rekordy + + + + Duplicate records + Powielone rekordy + + + + Duplicate record + Powiel rekord + + + + Ctrl+" + + + + + Adjust rows to contents + Dostosuj wiersze do treści + + + + Error deleting record: +%1 + Błąd usuwania rekordu: +%1 + + + + Please select a record first + Najpierw wybierz rekord + + + + There is no filter set for this table. View will not be created. + Nie ustawiono filtru dla tej tabeli. Widok nie zostanie utworzony. + + + + Please choose a new encoding for all tables. + Wybierz nowe kodowanie dla wszystkich tabel. + + + + Please choose a new encoding for this table. + Wybierz kodowanie dla tej tabeli. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Pozostaw pole pustym, aby użyć kodowania bazy danych. + + + + This encoding is either not valid or not supported. + To kodowanie jest nieprawidłowe lub nieobsługiwane + + + + %1 replacement(s) made. + Wykonano %1 zastąpień + + + + VacuumDialog + + + Compact Database + Ściśnij bazę danych... + + + + Warning: Compacting the database will commit all of your changes. + Uwaga: Ściskanie bazy danych spowoduje wdrożenie wszystkich twoich zmian. + + + + Please select the databases to co&mpact: + Wybierz bazę danych do ściś&nięcia: + + + diff --git a/ConfigFiles/translations/sqlb_pt_BR.qm b/ConfigFiles/translations/sqlb_pt_BR.qm new file mode 100644 index 0000000..c869afe Binary files /dev/null and b/ConfigFiles/translations/sqlb_pt_BR.qm differ diff --git a/ConfigFiles/translations/sqlb_pt_BR.ts b/ConfigFiles/translations/sqlb_pt_BR.ts new file mode 100644 index 0000000..cc8776f --- /dev/null +++ b/ConfigFiles/translations/sqlb_pt_BR.ts @@ -0,0 +1,7023 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + Sobre DB Browser para SQLite + + + + Version + Versão + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB Browser para SQLite é uma ferramenta de código livre gratuita usada para criar, projetar e editar bancos de dados SQLite.</p><p>Ela é bi-licensiada sob a Mozilla Public License Version 2 e sob a GNU General Public License Version 3 ou posterior. Você pode modificar ou redistribuir ela sob as condições de qualquer uma dessas licenças.</p><p>Veja <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> e <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> para mais detalhes.</p><p>Para mais informações sobre esse programa visite nosso site em: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">Esse software usa o GPL/LGPL Qt Toolkit de </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>Veja </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> para termos de licença e informação.</span></p><p><span style=" font-size:small;">Ele também usa o conjunto de ícones Silk por Mark James licenciado sob a Creative Commons Attribution 2.5 e 3.0.<br/>Veja </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> para detalhes.</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + Adicionar novo registro + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + Entre valores para o novo registro considerando as restriões. Campos em negrito são obrigatórios. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + Na coluna Valor você pode especificar o valor para o campo identificado na coluna Nome. A coluna Tipo indica qual o tipo do campo. Valores padrão são exibidos no mesmo estilo que valores nulos. + + + + Name + Nome + + + + Type + Tipo + + + + Value + Valor + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + Valores para inserir. Valores padrão pré-preenchidos são inseridos automaticamente a não ser que sejam alterados. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + Quando você edita os valores no frame acima, a consulta SQL para inserir esse novo registro é exibida aqui. Você pode editar manualmente a consulta antes de salvar. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Salvar</span> irá enviar o comando SQL exibido para o banco de dados para a inserção do novo registro.</p><p><span style=" font-weight:600;">Restaurar Padrões</span> irá restaurar os valores iniciais na coluna <span style=" font-weight:600;">Valor</span>.</p><p><span style=" font-weight:600;">Cancelar</span> irá fechar esse diálogo sem executar a consulta.</p></body></html> + + + + Auto-increment + + Auto-incremento + + + + + Unique constraint + + Restrição de unicidade + + + + + Check constraint: %1 + + Restrição de condição %1 + + + + + Foreign key: %1 + + Chave estrangeira: %1 + + + + + Default value: %1 + + Valor padrão: %1 + + + + + Error adding record. Message from database engine: + +%1 + Erro adicionando registro. Mensagem do banco de dados: + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + Você tem certeza que deseja restaurar todos os valores inseridos para os seus valores padrão? + + + + Application + + + Possible command line arguments: + Possíveis argumentos da linha de comando: + + + + Usage: %1 [options] [<database>|<project>] + + Uso: %1 [opções] [<banco de dados>|<projeto>] + + + + + -h, --help Show command line options + -h, --help Exibir opções de linha de comando + + + + -q, --quit Exit application after running scripts + -q, --quit Sair do programa após executar os scripts + + + + -s, --sql <file> Execute this SQL file after opening the DB + -s, --sql <arquivo> Executar esse arquivo de SQL após abrir o BD + + + + -t, --table <table> Browse this table after opening the DB + -t, --table <tabela> Navegar essa tabela após abrir o banco de dados + + + + -R, --read-only Open database in read-only mode + -R, --read-only Abrir o banco de dados em modo somente leitura + + + + -o, --option <group>/<setting>=<value> + -o, -option <grupo>/<configuração>=valor + + + + Run application with this setting temporarily set to value + Roda a aplicação com esse valor para essa configuração temporariamente + + + + -O, --save-option <group>/<setting>=<value> + -O, --save-option <grupo>/<configuração>=valor + + + + Run application saving this value for this setting + Roda a aplicação salvando esse valor para essa configuração + + + + -v, --version Display the current version + -v, --version Exibir a versão atual + + + + <database> Open this SQLite database + <banco de dados> Abre esse banco de dados SQLite + + + + <project> Open this project file (*.sqbpro) + <projeto> Abre esse projeto (*.sqbpro) + + + + The -s/--sql option requires an argument + A opção -s/--sql requer um argumento + + + + The file %1 does not exist + O arquivo %1 não existe + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + As opções -o/--option e -O/--save-option requerem um argumento no formato grupo/configuração=valor + + + + Invalid option/non-existant file: %1 + Opção inválida/arquivo inexistente: %1 + + + + SQLite Version + Versão do SQLite + + + + SQLCipher Version %1 (based on SQLite %2) + SQLCipher versão %1 (baseado em SQLite %2) + + + + DB Browser for SQLite Version %1. + DB Browser para SQLite versão %1. + + + + Built for %1, running on %2 + Compilado para %1, rodando em %2 + + + + Qt Version %1 + Versão do Qt: %1 + + + + The -t/--table option requires an argument + A opção -t/--table requer um argumento + + + + CipherDialog + + + SQLCipher encryption + Encriptação SQLCipher + + + + &Password + &Senha + + + + &Reenter password + &Entre a senha novamente + + + + Encr&yption settings + &Configurações de encriptação + + + + SQLCipher &3 defaults + Padrões do SQLCipher &3 + + + + SQLCipher &4 defaults + Padrões do SQLCipher &4 + + + + Custo&m + Custo&mizado + + + + &KDF iterations + Iterações &KDF + + + + HMAC algorithm + Algoritmo de HMAC + + + + KDF algorithm + Algoritmo de KDF + + + + Plaintext Header Size + Tamanho do cabeçalho de texto + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + Por favor, entre a chave usada para encriptar o banco de dados. +Se quaisquer das outras configurações foram alteradas você terá de prover essas informações também. + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + Por favor, selecione uma chave para encriptar o banco de dados. +Note que se você alterar quaisquer configurações opcionais você terá de entrá-las todas as vezes que você abrir o arquivo do banco de dados. +Deixe os campos de senha em branco para desativar a encriptação. +O processo de encriptação pode demorar alguns minutos e você deve ter um backup do seu banco de dados! Alterações não salvas são aplicadas antes de se modificar a encriptação. + + + + Page si&ze + &Tamanho da página + + + + Passphrase + Palavra chave + + + + Raw key + Chave desencriptada + + + + ColumnDisplayFormatDialog + + + Choose display format + Escolha um formato de exibição + + + + Display format + Formato de exibição + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + Escolha um formato de exibição para a coluna '%1' que será aplicado a cada valor antes de exibí-lo. + + + + Default + Padrão + + + + Decimal number + Número decimal + + + + Exponent notation + Notação exponencial + + + + Hex blob + BLOB hexadecimal + + + + Hex number + Número hexadecimal + + + + .NET DateTime.Ticks to date + .NET DateTime.Ticks até a data + + + + Julian day to date + Dia juliano para data + + + + Lower case + Caixa baixa + + + + Custom display format must contain a function call applied to %1 + Formato de exibição customizado precisa conter uma função aplicada a %1 + + + + Error in custom display format. Message from database engine: + +%1 + Erro em formato de exibição customizado. Mensagem da engine da base de dados: + +%1 + + + + Custom display format must return only one column but it returned %1. + Formato de exibição customizado precisa retornar apenas uma coluna mas retornou %1. + + + + Octal number + Octal + + + + Round number + Número arredondado + + + + Unix epoch to date + Era unix para data + + + + Upper case + Caixa alta + + + + Windows DATE to date + DATE do Windows para data + + + + Custom + Personalizado + + + + Apple NSDate to date + NSDate da Apple para date + + + + Java epoch (milliseconds) to date + Época Java (ms) para data + + + + Unix epoch to local time + Época Unix para tempo local + + + + Date as dd/mm/yyyy + Data como dd/mm/yyyy + + + + CondFormatManager + + + Conditional Format Manager + Gerenciador de formato condicional + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + Esse diálogo permite a criação e edição de formatos condicionais. O estilo de cada célula será escolhido pela primeira condição satisfeita pelo valor daquela célula. Formatos condicionais podem ser movidos para cima e para baixo, tendo precedência os formatos localizados mais acima. A sintaxe para as condições é a mesma utilizada para os filtros e uma condição vazia é sempre satisfeita. + + + + Add new conditional format + Adicionar novo formato condicional + + + + &Add + &Adicionar + + + + Remove selected conditional format + Remover formato condicional selecionado + + + + &Remove + &Remover + + + + Move selected conditional format up + Mover formato condicional selecionado para cima + + + + Move &up + Mover para &cima + + + + Move selected conditional format down + Mover formato condicional selecionado para baixo + + + + Move &down + Mover para &baixo + + + + Foreground + Plano de frente + + + + Text color + Cor do texto + + + + Background + Fundo + + + + Background color + Cor do plano de fundo + + + + Font + Fonte + + + + Size + Tamanho + + + + Bold + Negrito + + + + Italic + Itálico + + + + Underline + Sublinhado + + + + Alignment + Alinhamento + + + + Condition + Condição + + + + + Click to select color + Clique para selecionar a cor + + + + Are you sure you want to clear all the conditional formats of this field? + Você tem certeza de que deseja limpar todos os formatos condicionais deste campo? + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + Por favor, especifique o nome do banco de dados sob o qual você quer acessar o banco de dados anexado + + + + Do you want to save the changes made to the database file %1? + Você quer salvar as alterações feitas ao arquivo de banco de dados %1? + + + + Exporting database to SQL file... + Exportando banco de dados para arquivo SQL... + + + + + Cancel + Cancelar + + + + Executing SQL... + Executando SQL... + + + + Action cancelled. + Ação cancelada. + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + A restauração de alguns dos objetos associados com essa tabela falhou. Provavelmente porque os nomes de algumas colunas mudaram. Aqui está a consulta que você pode querer corrigir e executar manualmente: + + + + + + Error setting pragma %1 to %2: %3 + Erro definindo pragma %1 para %2: %3 + + + + File not found. + Arquivo não encontrado. + + + + Invalid file format + Formato de arquivo inválido + + + + + Error in statement #%1: %2. +Aborting execution%3. + Erro no comando #%1: %2. +Aborting execution%3. + + + + + and rolling back + e revertendo + + + + Cannot set data on this object + Não se pode definir dados nesse objeto + + + + could not get column information + não pôde obter informação sobre a coluna + + + + This database has already been attached. Its schema name is '%1'. + Esse banco de dados já foi anexado. O seu nome de esquema e '%1'. + + + + Do you really want to close this temporary database? All data will be lost. + Você realmente quer fechar esse banco de dados temporário? Todos os dados serão perdidos. + + + + Database didn't close correctly, probably still busy + A base de dados não fechou corretamente, provavelmente ainda ocupada + + + + The database is currently busy: + O banco de dados está ocupado: + + + + Do you want to abort that other operation? + Você quer abortar a outra operação? + + + + + No database file opened + Não há um arquivo de banco de dados aberto + + + + didn't receive any output from %1 + não recebeu nenhuma saída de %1 + + + + could not execute command: %1 + não pode executar comando: %1 + + + + Cannot delete this object + Não pode deletar esse objeto + + + + + A table with the name '%1' already exists in schema '%2'. + Uma tabela com o nome '%1' já existe no esquema '%2'. + + + + No table with name '%1' exists in schema '%2'. + Nem uma tabela chamada '%1' existe no esquema '%2'. + + + + + Cannot find column %1. + Não pode encontrar coluna %1. + + + + Creating savepoint failed. DB says: %1 + Criação de savepoint falhou. BD diz: %1 + + + + Renaming the column failed. DB says: +%1 + Renomeação de coluna falhou. BD diz: +%1 + + + + + Releasing savepoint failed. DB says: %1 + Liberação de savepoint falhou. BD diz: %1 + + + + Creating new table failed. DB says: %1 + Criação de tabela falhou. BD diz: %1 + + + + Copying data to new table failed. DB says: +%1 + Cópia de dados para uma nova tabela falhou. BD diz: +%1 + + + + Deleting old table failed. DB says: %1 + Deletando tabela antiga falhou. BD diz: %1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + Erro renomeando tabela de '%1' para '%2'. +Mensagem da engine do banco de dados: +%3 + + + + could not get list of db objects: %1 + não conseguiu listar objetos da BD: %1 + + + + could not get list of databases: %1 + não pôde obter a lista de bancos de dados: %1 + + + + Error loading extension: %1 + Erro carregado extensão: %1 + + + + DbStructureModel + + + Name + Nome + + + + Object + Objeto + + + + Type + Tipo + + + + Schema + Esquema + + + + Tables (%1) + Tabelas (%1) + + + + Indices (%1) + Índices (%1) + + + + Views (%1) + Vistas (%1) + + + + Triggers (%1) + Gatilhos (%1) + + + + All + Todos + + + + Database + Banco de dados + + + + Browsables + Navegáveis + + + + Temporary + Temporário + + + + EditDialog + + + Edit database cell + Editar célula + + + + Text + Texto + + + + Binary + Binário + + + + Erases the contents of the cell + Apaga os conteúdos da célula + + + + This area displays information about the data present in this database cell + Essa área exibe informação sobre os dados presentes nessa célula + + + + Type of data currently in cell + Tipo de dados atualmente na célula + + + + Size of data currently in table + Tamanho dos dados atualmente na célula + + + + Choose a filename to export data + Escolha um arquivo para exportar dados + + + + + Type of data currently in cell: Text / Numeric + Tipo de dados atualmente na célula: Texto / Numérico + + + + + + %n character(s) + + %n char + %n chars + + + + + Type of data currently in cell: Binary + Tipo de dados atualmente na célula: Binário + + + + + %n byte(s) + + %n byte + %n bytes + + + + + Mode: + Modo: + + + + + Image + Imagem + + + + Set as &NULL + Definir como &NULL + + + + Apply + Aplicar + + + + Type of data currently in cell: %1 Image + Tipo de dado atualmente na célula: %1 Imagem + + + + %1x%2 pixel(s) + %1x%2 pixel(s) + + + + Type of data currently in cell: NULL + Tipo de dado atualmente na célula: NULL + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + Essa é a lista de modos suportados pelo editor de célula. Escolha um modo para visualizar ou editar os dados da célula atual. + + + + RTL Text + Texto para a esquerda + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + Automaticamente ajustar o modo do editor para o tipo de dado carregado + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + Esse botão assinalável ativa ou desativa a troca automática do modo do editor. Quando uma nova célula é selecionado ou novos dados são importados e a troca automática está habilitada, o modo ajusta para o tipo detectado. Você pode então mudar o modo do editor manualmente. Se você quer manter o modo manualmente escolhido enquanto movendo pelas células, desmarque essa opção. + + + + Auto-switch + Auto-trocar + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + O modo do editor de texto deixa você editar tanto texto simples como JSON e XML com realce de sintaxe, formatação automática e validação antes de salvar. + +Erros são indicados com um sublinhado vermelho. + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + Esse editor do QT é usado para scripts da direita para a esquerda, que não são suportados pelo editor de texto padrão. Quando a presença de caracteres da direita para a esquerda é detectada, esse modo é automaticamente selecionado. + + + + Open preview dialog for printing the data currently stored in the cell + Abrir diálogo de prévia para impressão dos dados atualmente armazenados na célula + + + + Auto-format: pretty print on loading, compact on saving. + Auto-formatar: exibir formatado ao carregar, compactar ao salvar. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + Quando ativado, a funcionalidade de auto-formatar formata os dados ao carregar, quebrando o texto em linhas e indentando ele para melhor legibilidade. Ao salvar os dados, o auto-formatador compacta os dados removendo espaços em branco desnecessários. + + + + Word Wrap + Quebra de linha + + + + Wrap lines on word boundaries + Quebra de linha em limites de palavras + + + + + Open in default application or browser + Abrir em aplicação padrão ou navegador + + + + Open in application + Abrir em aplicação + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + O valor é interpretado como um arquivo ou URL e aberto na aplicação padrão ou navegador. + + + + Save file reference... + Salvar referência de arquivo... + + + + Save reference to file + Salvar referência para arquivo + + + + + Open in external application + Abrir em aplicação externa + + + + Autoformat + Autoformatar + + + + &Export... + &Exportar... + + + + + &Import... + &Importar... + + + + + Import from file + Importar do arquivo + + + + + Opens a file dialog used to import any kind of data to this database cell. + Abre um seletor de arquivos usado para importar qualquer tipo de dado para essa célula. + + + + Export to file + Exportar para arquivo + + + + Opens a file dialog used to export the contents of this database cell to a file. + Abre um seletor de arquivo para exportar os conteúdos dessa célula para um arquivo. + + + + Apply data to cell + Aplicar dados à célula + + + + This button saves the changes performed in the cell editor to the database cell. + Esse botão salva as modificações realizadas no editor da célula para a célula do banco de dados. + + + + + Image data can't be viewed in this mode. + Dados de imagem não podem ser visualizados nesse modo. + + + + + Try switching to Image or Binary mode. + Tente mudar para modo de Imagem ou Binário. + + + + + Binary data can't be viewed in this mode. + Dados binários não podem ser visualizados nesse modo. + + + + + Try switching to Binary mode. + Tente mudar para modo binário. + + + + Couldn't save file: %1. + Não pôde salvar arquivo: %1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + Os dados foram salvos em um arquivo temporário e este foi aberto com a aplicação padrão. Você pode agora editar os dados e, quando você estiver pronto, salvar suas mudanças para o editor de células ou cancelar quaisquer mudanças. + + + + + Image files (%1) + Arquivos de imagem (%1) + + + + Binary files (*.bin) + Arquivos binários (*.bin) + + + + Choose a file to import + Escolha um arquivo para importar + + + + %1 Image + %1 Imagem + + + + Invalid data for this mode + Dados inválidos para esse modo + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + A célula contém dados inválidos %1. Motivo: %2. Você realmente quer aplicar isso? + + + + Type of data currently in cell: Valid JSON + Tipo de dados atualmente na célula: JSON válido + + + + + Print... + Imprimir... + + + + Open preview dialog for printing displayed image + Abrir diálogo de prévia para imprimir imagem exibida + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + Abrir diálogo de prévia para imprimir texto exibido + + + + Copy Hex and ASCII + Copiar Hex e ASCII + + + + Copy selected hexadecimal and ASCII columns to the clipboard + Copiar colunas hexadecimal e ASCII selecionadas para a área de transferência + + + + Ctrl+Shift+C + + + + + EditIndexDialog + + + &Name + &Nome + + + + Order + Ordem + + + + &Table + &Tabela + + + + &Unique + &Único + + + + Creating the index failed: +%1 + Criação de índice falhou: +%1 + + + + Edit Index Schema + Editar esquema do índice + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + Para restringir o índice para somente uma parte da tabela você pode especificar uma cláusula WHERE aqui que seleciona a parte da tabela que deveria ser indexada + + + + Partial inde&x clause + Cláusula de índi&ce parcial + + + + Colu&mns + Colu&nas + + + + Table column + Coluna da tabela + + + + Type + Tipo + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + Adicionar uma nova coluna de expressão para o índice. Colunas de expressão contêm expressões SQL em vez de nomes de coluna. + + + + Index column + Indexar coluna + + + + Deleting the old index failed: +%1 + Deletar o índice antigo falhou: +%1 + + + + EditTableDialog + + + Edit table definition + Editar definição da tabela + + + + Table + Tabela + + + + Advanced + Avançado + + + + Database sche&ma + Esque&ma do banco de dados + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + Fazer dessa uma tabela 'SEM rowid'. Definir essa flag requer um campo do tipo INTEGER com a primary key flag definida e a auto increment flag não. + + + + Without Rowid + Sem Rowid + + + + Fields + Campos + + + + Add + Adicionar + + + + Remove + Remover + + + + Move to top + Mover para o topo + + + + Move up + Mover para cima + + + + Move down + Mover para baixo + + + + Move to bottom + Mover para o fundo + + + + + Name + Nome + + + + + Type + Tipo + + + + Not null + Não null + + + + PK + PK + + + + Primary key + Primary key + + + + AI + AI + + + + Autoincrement + Autoincrement + + + + U + U + + + + + + Unique + Unique + + + + Default + Default + + + + Default value + Default value + + + + + + Check + Check + + + + Check constraint + Check constraint + + + + Collation + Agrupamento + + + + + + Foreign Key + Foreign Key + + + + Constraints + Restrições + + + + Add constraint + Adicionar restrição + + + + Remove constraint + Remover restrição + + + + Columns + Colunas + + + + SQL + SQL + + + + + Primary Key + Chave primária + + + + Add a primary key constraint + Adicionar restrição de chave primária + + + + Add a foreign key constraint + Adicionar restrição de chave estrangeira + + + + Add a unique constraint + Adicionar uma restrição de unicidade + + + + Add a check constraint + Adicionar uma restrição de verificação + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + Cada tabela pode ter apenas uma chave primária. Por favor, modifique a chave primária existente. + + + + Error creating table. Message from database engine: +%1 + Erro criando tabela. Mensagem da engine do banco de dados: +%1 + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + Há pelo menos uma linha com esse campo definido NULL. Logo, é impossível definir essa flag. Por favor, mude os dados da tabela primeiro. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + Há pelo menos uma linha com um valor não-inteiro nesse campo. Logo, é impossível definir essa flag. Por favor, mude os dados da tabela primeiro. + + + + Column '%1' has duplicate data. + + Coluna '%1' tem dados duplicados. + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + Isso faz com que seja impossível de se habilitar a flag de unicidade. Por favor, remova os dados duplicados para permitir que a flag seja habilitada. + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + Você tem certeza de que deseja deletar o campo '%1? +Todos os dados atualmente armazenados nesse campo serão perdidos. + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Já existe um campo com este nome. Por favor, renomeie-o primeiro ou escolha um nome diferente para esse campo. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + Por favor, adicione um campo que atende aos seguintes critérios antes de definir a flag "without rowid": + - Flag "primary key" definida + - Incremento automático desativado + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + Essa coluna é referenciada em uma chave estrangeira na tabela %1 e portanto seu nome não pode ser alterado. + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Alerta: </span>Nosso parser não entende algo dessa definição de tabela. Modificar e salvar essa tabela pode causar problemas.</p></body></html> + + + + NN + NN + + + + ExportDataDialog + + + Export data as CSV + Exportar dados como CSV + + + + , + , + + + + ; + ; + + + + Tab + Tab + + + + | + | + + + + + + Other + Outro + + + + &Quote character + &Áspas + + + + " + " + + + + ' + ' + + + + + Could not open output file: %1 + Não pôde abrir arquivo de saída: %1 + + + + + Choose a filename to export data + Escolha um arquivo para exportar dados + + + + Please select at least 1 table. + Por favor, selecione pelo menos uma tabela. + + + + Choose a directory + Escolha um diretório + + + + Export completed. + Exportação completa. + + + + New line characters + Caracteres de nova linha + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Tab&le(s) + Tabe&las(s) + + + + Colu&mn names in first line + &Nomes das colunas na primeira linha + + + + Fie&ld separator + Se&parador de campo + + + + Pretty print + Otimizar para leitura humana + + + + Export data as JSON + Exportar dados como JSON + + + + exporting CSV + exportando CSV + + + + exporting JSON + exportando JSON + + + + ExportSqlDialog + + + Export SQL... + Exportar SQL... + + + + &Options + &Opções + + + + Keep column names in INSERT INTO + Manter nomes de colunas em INSERT INTO + + + + Export schema only + Exportar somente esquema + + + + Choose a filename to export + Escolha um arquivo para exportar + + + + Export completed. + Exportação completa. + + + + Export cancelled or failed. + Exportação falhou ou foi cancelada. + + + + Tab&le(s) + Tabe&las(s) + + + + Select All + Selecionar tudo + + + + Deselect All + Limpar seleção + + + + Multiple rows (VALUES) per INSERT statement + Múltiplas linhas (VALUES) por INSERT + + + + Export everything + Exportar tudo + + + + Export data only + Exportar somente dados + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + Manter esquema antigo (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Sobrescrever esquema antigo (DROP TABLE, then CREATE TABLE) + + + + Please select at least one table. + Por favor selecione pelo menos uma tabela. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + Encontrar... + + + + Find and Replace... + Encontrar e substituir... + + + + Print... + Imprimir... + + + + ExtendedTableWidget + + + Set to NULL + Definir como NULL + + + + Copy + Copiar + + + + Paste + Colar + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + O conteúdo da área de transferência é maior do que o intervalo selecionado. +Deseja inserir mesmo assim? + + + + Use as Exact Filter + Usar como filtro exato + + + + Containing + Contendo + + + + Not containing + Não contendo + + + + Not equal to + Diferente de + + + + Greater than + Maior que + + + + Less than + Menor que + + + + Greater or equal + Maior ou igual a + + + + Less or equal + Menor ou igual a + + + + Between this and... + Entre isso e... + + + + Regular expression + Expressão regular + + + + Edit Conditional Formats... + Editar formatos condicionais... + + + + Copy with Headers + Copiar com cabeçalhos + + + + Copy as SQL + Copiar como SQL + + + + Print... + Imprimir... + + + + Use in Filter Expression + Usar na expressão de filtro + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>Nem todos os dados foram carregados. <b>Você quer carregar todos os dados antes de selecionar todas as linhas?</b><p><p>Respondendo <b>Não</b> significa que mais dados não serão carregados e a seleção não será executada.<br/>Respondendo <b>Sim</b> pode levar algum tempo enquanto os dados são carregados mas a seleção será incompleta.</p>Aviso: carregar todos os dados pode exigir uma grande quantidade de memória para tabelas grandes. + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + Não é possível definir a seleção como NULL. Coluna %1 tem uma restrição de nulidade. + + + + FileExtensionManager + + + File Extension Manager + Gerenciador de extensão de arquivo + + + + &Up + &Subir + + + + &Down + &Descer + + + + &Add + &Adicionar + + + + &Remove + &Remover + + + + + Description + Descrição + + + + Extensions + Extensões + + + + *.extension + *.extensão + + + + FilterLineEdit + + + Filter + Filtro + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + Esses campos de entrada permitem você realizar filtros rápidos na tabela atualmente selecionada. +Por padrão, as linhas que contém o texto de entrada são filtradas +Os seguintes operadores também são suportados: +% Curinga +> Maior que +< Menor que +>= Maior ou igual a +<= Menor ou igual a += Igual +<> Diferente +x~y Intervalo: valores entre x e y +/regexp/ Valores satisfazendo a expressão regular + + + + Clear All Conditional Formats + Limpar todos os formatos condicionais + + + + Use for Conditional Format + Usar para formato condicional + + + + Edit Conditional Formats... + Editar formatos condicionais... + + + + Set Filter Expression + Definir expressão de filtro + + + + What's This? + O que é isso? + + + + Is NULL + É NULL + + + + Is not NULL + Não é NULL + + + + Is empty + É vazio + + + + Is not empty + Não é vazio + + + + Not containing... + Não contendo... + + + + Equal to... + Igual a... + + + + Not equal to... + Diferente de... + + + + Greater than... + Maior que... + + + + Less than... + Menor que... + + + + Greater or equal... + Maior ou igual... + + + + Less or equal... + Menor ou igual... + + + + In range... + No intervalo... + + + + Regular expression... + Expressão regular... + + + + FindReplaceDialog + + + Find and Replace + Encontrar e substituir + + + + Fi&nd text: + E&ncontrar texto: + + + + Re&place with: + Su&bstituir com: + + + + Match &exact case + Casar caixa &exata + + + + Match &only whole words + Casar s&omente palavras inteiras + + + + When enabled, the search continues from the other end when it reaches one end of the page + Quando ativado, a busca continua do outro fim quando ela atinge um fim da página + + + + &Wrap around + &Envolver em torno + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + Quando ativado, a busca retrocede a partir do cursor em vez de ir para frente + + + + Search &backwards + Buscar para &trás + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>Quando selecionado, o padrão procurado é testado somente na seleção atual.</p></body></html> + + + + &Selection only + &Somente seleção + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Quando selecionado, o padrão a ser encontrado é interpretado como uma expressão regular UNIX. Veja <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression nos Wikibooks</a>.</p></body></html> + + + + Use regular e&xpressions + Usar e&xpressões regulares + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + Encontrar a próxima ocorrência a partir da posição do cursor na direção selecionada por "Buscar para trás" + + + + &Find Next + &Encontrar próximo + + + + F3 + + + + + &Replace + &Substituir + + + + Highlight all the occurrences of the text in the page + Realçar todas as ocorrências do texto na página + + + + F&ind All + Encontrar &todos + + + + Replace all the occurrences of the text in the page + Substituir todas as ocorrências do texto na página + + + + Replace &All + Substituir &todos + + + + The searched text was not found + O texto procurado não foi encontrado + + + + The searched text was not found. + O texto procurado não foi encontrado. + + + + The searched text was found one time. + O texto procurado foi encontrado uma vez. + + + + The searched text was found %1 times. + O texto procurado foi encontrado %1 vezes. + + + + The searched text was replaced one time. + O texto procurado foi substituído uma vez. + + + + The searched text was replaced %1 times. + O texto procurado foi substituído %1 vezes. + + + + ForeignKeyEditor + + + &Reset + &Resetar + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + Cláusulas de chave estrangeira (ON UPDATE, ON DELETE etc.) + + + + ImportCsvDialog + + + Import CSV file + Importar arquivo CSV + + + + &Column names in first line + Nomes das &colunas na primeira linha + + + + Field &separator + &Separador de campos + + + + , + , + + + + ; + ; + + + + + Tab + Tab + + + + | + | + + + + Other + Outro + + + + &Quote character + &Áspas + + + + + Other (printable) + Outro (imprimível) + + + + + Other (code) + Outro (código) + + + + " + " + + + + ' + ' + + + + &Encoding + &Encoding + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + Trim fields? + + + + Creating restore point failed: %1 + Criação de ponto de restauração falhou: %1 + + + + Creating the table failed: %1 + Criação de tabela falhou: %1 + + + + Inserting row failed: %1 + Inserir linha falhou: %1 + + + + Separate tables + Tabelas separadas + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + Quando importando em uma tabela existente com uma chave primária, restrições de unicidade ou índice único há uma chance para conflitos. Essa opção permite a você selecionar uma estratégia para esse caso. Por padrão, a importação é abortada e revertida, mas você também pode escolher ignorar e não importar linhas conflitantes ou substituir as entradas existentes na tabela. + + + + Abort import + Abortar importação + + + + Ignore row + Ignorar linha + + + + Replace existing row + Substituir linhas existentes + + + + Conflict strategy + Estratégia para conflitos + + + + + Deselect All + Limpar seleção + + + + Match Similar + Detectar similares + + + + Select All + Selecionar tudo + + + + Table na&me + No&me da tabela + + + + Advanced + Avançado + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + Quando importando um valor em branco do arquivo CSV em uma tabela existente com um valor padrão para essa coluna, aquele valor padrão é inserido. Ative essa opção para inserir um valor em branco em vez. + + + + Ignore default &values + Ignorar &valores padrão + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + Ative essa opção para parar a importação quando tentando importar um valor em branco em uma coluna NOT NULL sem um valor padrão. + + + + Fail on missing values + Falhar em valores faltando + + + + Disable data type detection + Desativar detecção de tipo de dados + + + + Disable the automatic data type detection when creating a new table. + Desativa a detecção automática de tipo de dados quando criando uma nova tabela. + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + Já existe uma tabela chamada '%1' e uma importação em uma tabela existente só é possível se o número de colunas bate. + + + + There is already a table named '%1'. Do you want to import the data into it? + Já existe uma tabela chamada '%1'. Você quer importar os dados nela? + + + + importing CSV + Importando CSV + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + Importando o arquivo '%1' levou %2 ms. Desses, %3 ms foram gastos na função da linha. + + + + MainWindow + + + DB Browser for SQLite + DB Browser para SQLite + + + + toolBar1 + toolBar1 + + + + &File + &Arquivo + + + + &Import + &Importar + + + + &Export + E&xportar + + + + &Edit + &Editar + + + + &View + &Exibir + + + + &Help + A&juda + + + + DB Toolbar + Barra de ferramentas do banco de dados + + + + User + Usuário + + + + Application + Aplicativo + + + + &Clear + &Limpar + + + + &New Database... + &Novo banco de dados... + + + + + Create a new database file + Criar um novo arquivo de banco de dados + + + + This option is used to create a new database file. + Essa opção e utilizada para criar um novo arquivo de banco de dados. + + + + Ctrl+N + + + + + + &Open Database... + &Abrir banco de dados... + + + + + + + + Open an existing database file + Abre um arquivo de banco de dados existente + + + + + + This option is used to open an existing database file. + Esta opção abre um arquivo de banco de dados existente. + + + + Ctrl+O + + + + + &Close Database + &Fechar banco de dados + + + + + Ctrl+W + + + + + + Revert database to last saved state + Reverter banco de dados para o último estado salvo + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + Essa opção é usada para reverter o atual arquivo de banco de dados para seu último estado salvo. Todas as modificações feitas desde a última operação de salvamento são perdidas. + + + + + Write changes to the database file + Salva modificações para o arquivo de banco de dados + + + + This option is used to save changes to the database file. + Essa opção é usada para salvar modificações para o arquivo de banco de dados. + + + + Ctrl+S + + + + + Compact the database file, removing space wasted by deleted records + Compactar o arquivo do banco de dados, removendo espaço desperdiçado por registros deletados + + + + + Compact the database file, removing space wasted by deleted records. + Compactar o arquivo do banco de dados, removendo espaço desperdiçado por registros deletados. + + + + E&xit + &Sair + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + Importar dados de um arquivo de texto .sql em um banco de dados. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + Essa opção deixa você importar dados de um arquivo SQL em um banco de dados. Arquivos de SQL podem ser criados na maioria dos bancos de dados, como MySQL e PostgreSQL. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Abre um assistente que permite você importar dados de um arquivo CSV em uma tabela de banco de dados. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + Abre um assistente que permite você importar dados de um arquivo CSV em uma tabela de banco de dados. Arquivos CSV podem ser criados pela maioria dos programas de banco de dados e planilhas. + + + + Export a database to a .sql dump text file. + Exportar o banco de dados para um arquivo de texto .sql. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + Essa opção permite você exportar um banco de dados para um arquivo de texto .sql. Arquivos de despejo SQL contêm todos os dados necessários para recriar o banco de dados na maioria dos motores de banco de dados, incluindo MySQL e PostgreSQL. + + + + Export a database table as a comma separated text file. + Exportar uma tabela de banco de dados como um arquivo CSV. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + Exportar uma tabela de banco de dados como um arquivo CSV, pronto para ser importado por outro banco de dados ou planilhas. + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + Abre o assistente de criação de tabelas, em que é possível definir o nome e os campos para uma nova tabela no banco de dados + + + + + Delete Table + Deletar tabela + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + Abre o assistente de deleção de tabelas, em que você pode selecionar uma tabela para ser eliminada. + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + Abre o assistente de modificação de tabelas, em que você pode renomear uma tabela existente. Também é possível adicionar ou deletar campos de uma tabela, assim como modificar nomes e tipos de campos. + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + Abre o assistente de criação de índice, em que é possível definir um novo índice em um tabela de banco de dados já existente. + + + + &Preferences... + &Configurações... + + + + + Open the preferences window. + Abre a janela de configurações. + + + + &DB Toolbar + Barra de ferramentas do banco de &dados + + + + Shows or hides the Database toolbar. + Exibe ou oculta a barra de ferramentas do banco de dados. + + + + Shift+F1 + + + + + &Recently opened + &Recentemente aberto + + + + Open &tab + Abrir &aba + + + + Ctrl+T + + + + + &Execute SQL + &Executar SQL + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + Executar SQL + + + + + + Save SQL file + Salvar arquivo SQL + + + + + Execute current line + Executar linha atual + + + + Ctrl+E + + + + + Export as CSV file + Exportar como arquivo CSV + + + + Export table as comma separated values file + Exportar tabela como CSV + + + + + Save the current session to a file + Salvar a atual sessão para um arquivo + + + + + Load a working session from a file + Carregar uma sessão de um arquivo + + + + + Save SQL file as + Salvar arquivo SQL como + + + + &Browse Table + &Navegar tabela + + + + Copy Create statement + Copiar comando Create + + + + Copy the CREATE statement of the item to the clipboard + Copia o comando CREATE do item para a área de transferência + + + + Ctrl+Return + Ctrl+ENTER + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Reset Window Layout + Resetar layout da janela + + + + Alt+0 + + + + + The database is currenctly busy. + O banco de dados está ocupado. + + + + Click here to interrupt the currently running query. + Clique aqui para interromper a consulta atual. + + + + Database encoding + Codificação do banco de dados + + + + Database is encrypted using SQLCipher + Banco de dados encriptado usando SQLCipher + + + + + Choose a database file + Escolha um arquivo de banco de dados + + + + + + Choose a filename to save under + Escolha um nome de arquivo para salvar + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + Você tem certeza de que deseja desfazer todas as modificações feitas no arquivo de banco de dados '%1' desde o último salvamento? + + + + Choose a file to import + Escolha um arquivo para importar + + + + Text files(*.sql *.txt);;All files(*) + Arquivos de texto(*.sql *.txt);;Todos os arquivos(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + Você deseja criar um novo arquivo de banco de dados para armazenar os dados importados? +Se você disser que não, tentaremos importar os dados do arquivo SQL para o banco de dados atual. + + + + Window Layout + Layout da janela + + + + Simplify Window Layout + Simplificar layout da janela + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + Encaixar janelas embaixo + + + + Dock Windows at Left Side + Encaixar janelas à esquerda + + + + Dock Windows at Top + Encaixar janelas no topo + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + Você ainda está executando comandos SQL. Fechar o banco de dados agora fará a execução parar, talvez deixando o banco de dados em um estado inconsistente. Você tem certeza de que deseja fechar o banco de dados? + + + + Do you want to save the changes made to the project file '%1'? + Você quer salvar as modificações feitas para o arquivo de projeto '%1'? + + + + Result: %1 + Resulto: %1 + + + + File %1 already exists. Please choose a different name. + Arquivo %1 já existe. Por favor, escolha um nome diferente. + + + + Error importing data: %1 + Erro importando dados: %1 + + + + Import completed. + Importação completa. + + + + Delete View + Deletar vista + + + + Delete Trigger + Deletar gatilho + + + + Delete Index + Deletar índice + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + Definir valores de PRAGMA vai cometer sua transação atual. +Você tem certeza? + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + Você quer salvar as mudanças feitas nas abas de SQL no arquivo de projeto '%1'? + + + + Select SQL file to open + Selecione arquivo SQL para abrir + + + + Select file name + Selecione o nome do arquivo + + + + Select extension file + Selecione o arquivo de extensão + + + + Extension successfully loaded. + Extensão carregada com sucesso. + + + + Error loading extension: %1 + Erro carregado extensão: %1 + + + + + Don't show again + Não mostrar novamente + + + + New version available. + Nova versão disponível. + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Uma nova vesão do DB Browser para SQLite está disponível (%1.%2.%3)<br/><br/>Por favor, baixe em <a href='%4'>%4</a>. + + + + DB Browser for SQLite project file (*.sqbpro) + Arquivo de projeto DB Browser para SQLite (*.sqbpro) + + + + SQL &Log + &Log do SQL + + + + Show S&QL submitted by + Exibir S&QL enviado por + + + + &Plot + &Plotar + + + + &Revert Changes + &Reverter modificações + + + + &Write Changes + &Escrever modificações + + + + &Database from SQL file... + &Banco de dados a partir de arquivo SQL... + + + + &Table from CSV file... + &Tabela a partir de arquivo CSV... + + + + &Database to SQL file... + &Banco de dados para arquivo SQL... + + + + &Table(s) as CSV file... + &Tabela para arquivo CSV... + + + + &Create Table... + &Criar tabela... + + + + &Delete Table... + &Deletar tabela... + + + + &Modify Table... + &Modificar tabela... + + + + Create &Index... + &Criar índice... + + + + W&hat's This? + O &que é isso? + + + + Sa&ve Project + &Salvar projeto + + + + Encrypted + Encriptado + + + + Read only + Somente leitura + + + + Database file is read only. Editing the database is disabled. + Arquivo de banco de dados é somente leitura. Edição do banco de dados está desativada. + + + + Execution finished with errors. + Execução finalizada com erros. + + + + Execution finished without errors. + Execução finalizada sem erros. + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Estrutura do banco de dados + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Navegar dados + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Editar pragmas + + + + Edit Database &Cell + Editar &célula do banco de dados + + + + DB Sche&ma + Esque&ma do banco de dados + + + + Open SQL file(s) + Abrir arquivo(s) SQL + + + + This button opens files containing SQL statements and loads them in new editor tabs + Este botão abre arquivos SQL e carrega eles em novas abas no editor + + + + Shift+F5 + + + + + Opens the SQLCipher FAQ in a browser window + Abre o FAQ do SQLCipher em uma janela do navegador + + + + Export one or more table(s) to a JSON file + Exporta uma ou mais tabela(s) para um arquivo JSON + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + Erro enquanto salvava o banco de dados. Isso indica que nem todas as mudanças foram salvas. Você precisa resolver o seguinte erro primeiro. + +%1 + + + + &Remote + &Remoto + + + + Open an existing database file in read only mode + Abre um banco de dados existente em modo somente leitura + + + + Could not open database file. +Reason: %1 + Não pôde abrir arquivo do banco de dados. +Motivo: %1 + + + + Choose text files + Escolha arquivos de texto + + + + Modify View + Modificar vista + + + + Modify Trigger + Modificar gatilho + + + + Modify Index + Modificar índice + + + + Modify Table + Modificar tabela + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + Definir valores de PRAGMA ou fazer vacuum irá commitar sua transação atual. +Deseja continuar? + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + Essa é a estrutura do banco de dados aberto. +Você pode arrastar comandos SQL de uma linha e soltá-los em outras aplicações ou em outra instância do DB Browser para SQLite. + + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + Alerta: esse pragma não é legível e esse valor foi inferido. Escrever o pragma pode sobrescrever um LIKE redefinido provido por uma extensão SQL. + + + + &Tools + Ferramen&tas + + + + Error Log + Log de erros + + + + This button clears the contents of the SQL logs + Esse botão limpa os logs do SQL + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + Esse painel deixa você examinar um log de todos os comandos SQL dados pela aplicação ou por você + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + Essa é a estrutura do banco de dados aberto. +Você pode arrastar múltiplos nomes de objetos da coluna Nome e largá-los no editor SQL e você pode ajustar as propriedades dos nomes largados usando o menu de contexto. Isso ajudaria você a compor comandos SQL. +Você pode arrastar comandos SQL da coluna Esquema e largá-los no editor SQL ou em outras aplicações. + + + + + + Project Toolbar + Barra de ferramentas do projeto + + + + Extra DB toolbar + Barra de ferramentas do banco de dados extra + + + + + + Close the current database file + Fechar o arquivo de banco de dados aberto + + + + This button closes the connection to the currently open database file + Esse botão fecha a conexão com o arquivo aberto + + + + Ctrl+F4 + + + + + Compact &Database... + Compactar banco de &dados... + + + + &About + &Sobre + + + + This button opens a new tab for the SQL editor + Esse botão abre uma nova aba para o editor SQL + + + + Execute all/selected SQL + Executar todo/selecionado SQL + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + Esse botão executa o SQL selecionado. Se não existe SQL selecionado, todo o SQL é executado. + + + + &Load Extension... + &Carregar extensão... + + + + Execute line + Executar linha + + + + This button executes the SQL statement present in the current editor line + Esse botão executa o comando SQL presente na linha atual do editor + + + + &Wiki + &Wiki + + + + F1 + + + + + Bug &Report... + &Reportar bug... + + + + Feature Re&quest... + Re&quisitar feature... + + + + Web&site + &Site + + + + &Donate on Patreon... + &Doar no Patreon... + + + + Open &Project... + Abrir &projeto... + + + + &Attach Database... + &Anexar banco de dados... + + + + + Add another database file to the current database connection + Adiciona outro arquivo de banco de dados para a conexão atual + + + + This button lets you add another database file to the current database connection + Esse botão deixa você adicionar outro banco de dados para a conexão atual com o banco de dados + + + + &Set Encryption... + Definir en&criptação... + + + + This button saves the content of the current SQL editor tab to a file + Esse botão salva o conteúdo do editor SQL para um arquivo + + + + SQLCipher &FAQ + &FAQ do SQLCipher + + + + Table(&s) to JSON... + Tabela(&s) para JSON... + + + + Open Data&base Read Only... + Abrir &banco de dados somente leitura... + + + + Ctrl+Shift+O + + + + + Save results + Salvar resultados + + + + Save the results view + Salvar a vista de resultados + + + + This button lets you save the results of the last executed query + Esse botão deixa você salvar os resultados da última consulta executada + + + + + Find text in SQL editor + Encontrar texto no editor SQL + + + + Find + Encontrar + + + + This button opens the search bar of the editor + Esse botão abre a barra de busca do editor + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + Encontrar ou substituir texto no editor SQL + + + + Find or replace + Encontrar ou substituir + + + + This button opens the find/replace dialog for the current editor tab + Esse botão abre o diálogo de encontrar/substituir para a aba atual do editor + + + + Ctrl+H + + + + + Export to &CSV + Exportar para &CSV + + + + Save as &view + Salvar como &vista + + + + Save as view + Salvar como vista + + + + Shows or hides the Project toolbar. + Mostra ou oculta a barra de ferramentos do Projeto. + + + + Extra DB Toolbar + Barra de ferramentas do banco de dados extra + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + Este botão lhe permite salvar todas as configurações associadas ao banco de dados aberto a um arquivo de projeto do DB Browser para SQLite + + + + This button lets you open a DB Browser for SQLite project file + Este botão lhe permite abrir um arquivo de projeto do DB Browser para SQLite + + + + New In-&Memory Database + Nova tabela em &memória + + + + Drag && Drop Qualified Names + Arrastar e soltar nomes qualificados + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + Use nomes qualificados (p.e. "Tabela"."Campo") quando arrastando objetos e soltando eles no editor + + + + Drag && Drop Enquoted Names + Arrastar e soltar nomes entre áspas + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + Use identificadores escapados (p.e. "Tabela1") quando arrastando e soltando objetos no editor + + + + &Integrity Check + Teste de &integridade + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + Roda o teste de integridade sobre o banco de dados aberto e retorna os resultados na aba Executar SQL. + + + + &Foreign-Key Check + Teste de chave &estrangeira + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + Roda o teste de chave estrangeira sobre o banco de dados aberto e retorna os resultados na aba Executar SQL + + + + &Quick Integrity Check + Teste de integridade &rápido + + + + Run a quick integrity check over the open DB + Roda um teste de integridade rápido sobre o banco de dados aberto + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + Roda um outro pragma para a verificação de integridade do banco de dados. Faz quase tantos testes quando o outro PRAGMA mas executa muito mais rápido. + + + + &Optimize + &Otimizar + + + + Attempt to optimize the database + Tenta otimizar o banco de dados + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + Roda o pragma de otimização sobre o banco de dados aberto. Esse pragma pode realizar otimizações que vão melhorar a performance de consultas futuras. + + + + + Print + Imprimir + + + + Print text from current SQL editor tab + Imprimir texto do editor SQL + + + + Open a dialog for printing the text in the current SQL editor tab + Abre um diálogo para imprimir o texto na aba atual do editor SQL + + + + Print the structure of the opened database + Imprime a estrutura do banco de dados aberto + + + + Open a dialog for printing the structure of the opened database + Abre um diálogo para imprimir a estrutura do banco de dados aberto + + + + Un/comment block of SQL code + Comentar bloco de SQL + + + + Un/comment block + Comentar bloco + + + + Comment or uncomment current line or selected block of code + Comentar ou remover comentário da linha ou bloco atualmente selecionado + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + Comentar ou remover comentários das linhas selecionadas ou da linha atual, se não há seleção. Todo o bloco é alterado de acordo com a primeira linha. + + + + Ctrl+/ + + + + + Stop SQL execution + Parar execução do SQL + + + + Stop execution + Parar execução + + + + Stop the currently running SQL script + Parar o script de SQL atualmente executando + + + + &Save Project As... + &Salvar projeto como... + + + + + + Save the project in a file selected in a dialog + Salvar o projeto em um arquivo selecionado em um diálogo + + + + Save A&ll + Salvar &todos + + + + + + Save DB file, project file and opened SQL files + Salvar arquivo do BD, arquivo do projeto e arquivos SQL abertos + + + + Ctrl+Shift+S + + + + + Browse Table + Navegar tabelas + + + + In-Memory database + Banco de dados em memória + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + Você tem certeza de que deseja deletar a tabela '%1'? +Todos os dados associados com a tabela serão perdidos. + + + + Are you sure you want to delete the view '%1'? + Você tem certeza que deseja deletar a vista '%1'? + + + + Are you sure you want to delete the trigger '%1'? + Você tem certeza que deseja deletar o gatilho '%1'? + + + + Are you sure you want to delete the index '%1'? + Você tem certeza que deseja deletar o índice '%1'? + + + + Error: could not delete the table. + Erro: não pôde deletar a tabela. + + + + Error: could not delete the view. + Erro: não pôde deletar a vista. + + + + Error: could not delete the trigger. + Erro: não pôde deletar o gatilho. + + + + Error: could not delete the index. + Erro: não pôde deletar o índice. + + + + Message from database engine: +%1 + Mensagem do banco de dados: +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + Editar a tabela requer salvar todas as mudanças pendentes agora. +Você tem certeza que quer salvar o banco de dados? + + + + Edit View %1 + Editar vista %1 + + + + Edit Trigger %1 + Editar gatilho %1 + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + Você já está executando comandos SQL. Você quer pará-los para executar os comandos atuais? Fechar o banco de dados agora pode deixá-lo em um estado inconsistente. + + + + -- EXECUTING SELECTION IN '%1' +-- + -- EXECUTANDO SELEÇÃO EM '%1' +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- EXECUTANDO LINHA EM '%1' +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- EXECUTANDO TUDO EM '%1' +-- + + + + Opened '%1' in read-only mode from recent file list + Abiu '%1' em modo somente leitura a partir da lista de arquivos recentes + + + + Opened '%1' from recent file list + Abiu '%1' a partir da lista de arquivos recentes + + + + Project saved to file '%1' + Projeto salvo no arquivo '%1' + + + + This action will open a new SQL tab with the following statements for you to edit and run: + Esta ação abrirá uma nova aba SQL com os seguintes comandos para você editar e executar: + + + + Rename Tab + Renomear aba + + + + Duplicate Tab + Duplicar aba + + + + Close Tab + Fechar aba + + + + Opening '%1'... + Abrindo '%1'... + + + + There was an error opening '%1'... + Houve um erro abrindo '%1'... + + + + Value is not a valid URL or filename: %1 + Valor não é uma URL ou nome de arquivo válido: %1 + + + + %1 rows returned in %2ms + %1 linhas retornadas em %2 ms + + + + + At line %1: + Na linha %1: + + + + Result: %2 + Resultado: %2 + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + Importação completa. Algumas chaves estrangeiras são violadas. Por favor corrija-as antes de salvar. + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (somente leitura) + + + + Open Database or Project + Abrir banco de dados ou projeto + + + + Attach Database... + Anexar banco de dados... + + + + Import CSV file(s)... + Importar arquivo(s) CSV... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + Selecione a ação para aplicar ao %n arquivo dropado. <br/>Note que só 'Importar' vai processar mais de um arquivo. + Selecione a ação para aplicar aos %n arquivos dropados. <br/>Note que só 'Importar' vai processar mais de um arquivo. + + + + + Do you want to save the changes made to SQL tabs in a new project file? + Você quer salvar as mudanças feitas nas abas de SQL no arquivo de projeto? + + + + Do you want to save the changes made to the SQL file %1? + Você quer salvar as alterações feitas ao arquivo SQL %1? + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + Os comandos nessa aba ainda estão executando. Fechar a aba vai parar a execução. Isso pode deixar o banco de dados em um estado inconsistente. Você tem certeza de que deseja fechar a aba? + + + + Could not find resource file: %1 + Não pôde encontrar o arquivo de recursos: %1 + + + + Choose a project file to open + Escolha um arquivo de projeto para abrir + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + Esse arquivo de projeto está usando um formato de arquivo mais velho porque ele foi criado usando DB Browser para SQLite versão 3.10 ou menor. Esse arquivo é suportado mas nós aconselhamos converter todos os projetos para o novo formato de arquivos porque o suporte para arquivos antigos pode ser abandonado no futuro. Você pode converter seus arquivos simplesmente abrindo e salvando eles. + + + + Could not open project file for writing. +Reason: %1 + Não pôde abrir arquivo de projeto para a escrita. +Motivo: %1 + + + + Collation needed! Proceed? + Função de comparação necessária! Proceder? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + Uma tabela nesse banco de dados requer uma função de comparação especial '%1' que esse aplicativo não pode prover. +So você optar por proceder, esteja avisado de que coisas ruins podem acontecer para o seu banco de dados. +Faça um backup! + + + + creating collation + criando função de comparação + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + Defina um novo nome para a aba de SQL. Use o caractere '&&' para poder usar o seguinte caractere como um atalho de teclado. + + + + Please specify the view name + Por favor, especifique o nome da vista + + + + There is already an object with that name. Please choose a different name. + Já existe um objeto com esse nome. Por favor, escolha um nome diferente. + + + + View successfully created. + Vista criada com sucesso. + + + + Error creating view: %1 + Erro criando vista: %1 + + + + This action will open a new SQL tab for running: + Essa ação irá abrir uma nova aba SQL para rodar: + + + + Press Help for opening the corresponding SQLite reference page. + Pressione Help para abrir a página de referência SQL correspondente. + + + + Busy (%1) + Ocupado (%1) + + + + Error checking foreign keys after table modification. The changes will be reverted. + Erro verificando as chaves estrangeiras após modificação. Mudanças serão revertidas. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + Essa tabela não passou um teste de chave estrangeira.<br/>Você deveria rodar 'Ferramentas | Teste de Chave Estrangeira| e corrigir os problemas reportados. + + + + NullLineEdit + + + Set to NULL + Definir como NULL + + + + Alt+Del + + + + + PlotDock + + + Plot + Plotar + + + + Columns + Colunas + + + + X + X + + + + Line type: + Tipo da linha: + + + + + None + Nenhum + + + + Line + Linha + + + + StepLeft + Passo à esquerda + + + + StepRight + Passo à direita + + + + StepCenter + Passo centralizado + + + + Impulse + Impulso + + + + Point shape: + Ponto: + + + + Cross + Cruz + + + + Plus + Mais + + + + Circle + Círculo + + + + Disc + Disco + + + + Square + Quadrado + + + + Diamond + Diamante + + + + Star + Estrela + + + + Triangle + Triângulo + + + + TriangleInverted + Triângulo Invertido + + + + CrossSquare + Cruz Quadrado + + + + PlusSquare + Mais Quadrado + + + + CrossCircle + Cruz Círculo + + + + PlusCircle + Mais Círculo + + + + Peace + Paz + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>Salvar plotagem atual...</p><p>Formato de arquivo definido pela extensão (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + Salvar plotagem atual... + + + + + + Row # + Coluna # + + + + Choose a filename to save under + Escolha um nome de arquivo para salvar + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;Todos os arquivos(*) + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>Esse painel mostra a lista de colunas da tabela atualmente exibida ou a consulta recém executada. Você pode selecionar as colunas que você quer que sejam utilizadas como os eixos X e Y para o painel de plotagem abaixo. A tabela mostra o tipo detectado de exio que será utilizado na plotagem. For o eixo Y você só pode selecionar colunas numéricas, mas para o eixo X você pode selecionar:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Data/Hora</span>: strings com o formato &quot;yyyy-MM-dd hh:mm:ss&quot; ou &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Data</span>: strings com o formato &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Hora</span>: strings com o formato &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Rótulo</span>: outros formatos de string. Selecionando essa coluna como X vai produzir um gráfico de barras com as colunas como rótulos para as barras</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numérico</span>: valores inteiros ou reais</li></ul><p>Clicando duas vezes nas células Y você pode mudar a cor usada para aquele gráfico.</p></body></html> + + + + Y1 + Y1 + + + + Y2 + Y2 + + + + Axis Type + Tipo do eixo + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + Aqui está um gráfico feito quando você seleciona os valores X e Y acima. + +Clique nos pontos para selecioná-los no gráfico e na tabela. Ctrl+Clique para selecionar um intervalo de pontos. + +Use o scroll do mouse para dar zoom e arraste o mouse para alterar o intervalo dos eixos. + +Selecione os eixos ou rótulos dos eixos para arrastar e dar zoom somente naquela orientação. + + + + + Load all data and redraw plot + Carregar todos os dados e plotar de novo + + + + Copy + Copiar + + + + Show legend + Mostrar legenda + + + + Stacked bars + Barras empilhadas + + + + Date/Time + Data/Hora + + + + Date + Data + + + + Time + Hora + + + + + Numeric + Numérico + + + + Label + Rótulo + + + + Invalid + Inválido + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + Carregar todos os dados e plotar de novo. +Aviso: nem todos os dados foram obtidos da tabela ainda devido ao mecanismo de obtenção parcial. + + + + Choose an axis color + Escolher a cor do eixo + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + Existem curvas nesse gráfico e o estilo de linha selecionado só pode ser aplicado para gráficos ordenados por X. Ou ordene a tabela ou consulte por X para remover curvas ou selecione um dos estilos suportados por curvas: Nenhum ou Linha. + + + + Loading all remaining data for this table took %1ms. + Carregar os dados restantes para essa tabela levou %1ms. + + + + Print... + Imprimir... + + + + PreferencesDialog + + + Preferences + Configurações + + + + &General + &Geral + + + + Remember last location + Lembrar do último diretório + + + + Always use this location + Sempre usar esse diretório + + + + Remember last location for session only + Lembrar do último diretório somente nessa sessão + + + + + + ... + ... + + + + Default &location + Diretório &padrão + + + + Lan&guage + &Idioma + + + + Automatic &updates + &Atualizações automáticas + + + + + + + + + + + + enabled + ativado + + + + &Database + &Banco de dados + + + + Database &encoding + &Codificação do banco de dados + + + + Open databases with foreign keys enabled. + Abrir bancos de dados com chaves estrangeiras ativado. + + + + &Foreign keys + &Chaves estrangeiras + + + + Data &Browser + Navegador de &dados + + + + &SQL + &SQL + + + + Settings name + Settings name + + + + Context + Context + + + + Colour + Cor + + + + Bold + Negrito + + + + Italic + Itálico + + + + Underline + Underline + + + + Keyword + Palavra-chave + + + + Function + Função + + + + Table + Tabela + + + + Comment + Comentário + + + + Identifier + Identificador + + + + String + String + + + + Current line + Linha atual + + + + SQL &editor font size + Tamanho da fonte do &editor de SQL + + + + SQL editor &font + &Fonte do editor de SQL + + + + &Extensions + &Extensões + + + + Select extensions to load for every database: + Selecione extensões para carregar para todos os bancos de dados: + + + + Add extension + Adicionar extensão + + + + Remove extension + Remover extensão + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>Embora suporte o operador REGEXP, SQLite não implementa expressões regulares mas recorre ao aplicativo em execução.<br/>DB Browser para SQLite implementa esse algoritmo para você poder utilizar REGEXP.<br/>Todavia, como existem múltiplas implementações possíveis desse algoritmo e você pode querer usar outra, você pode desativar a implementação do aplicativo e carregar a sua própria implementação através de uma extensão.<br/>Requer que o programa seja reiniciado.</p></body></html> + + + + Disable Regular Expression extension + Desativar extensão de expressões regulares + + + + + Choose a directory + Escolha um diretório + + + + The language will change after you restart the application. + A linguagem mudará após reiniciar o programa. + + + + Select extension file + Selecione arquivo de extensão + + + + Extensions(*.so *.dylib *.dll);;All files(*) + Extensões(*.so *.dylib *.dll);;Todos os arquivos(*) + + + + Remove line breaks in schema &view + Remover quebras de linhas em &vista de esquema + + + + Prefetch block si&ze + &Tamanho de bloco de prefetch + + + + Default field type + Tipo padrão de campo + + + + Font + Fonte + + + + &Font + &Fonte + + + + NULL + NULL + + + + Regular + Regular + + + + Binary + Binário + + + + Background + Fundo + + + + Filters + Filtros + + + + Escape character + Caractere de escape + + + + Delay time (&ms) + Tempo de delay (&ms) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + Definir o tempo de espera antes de aplicar um novo filtro de valor. Pode ser definido para zero para desativar espera. + + + + Tab size + Tamanho de tabulação + + + + Error indicators + Indicadores de erro + + + + Hori&zontal tiling + Disposição &horizontal + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + Se ativados, o editor de SQL e a tabela de resultados são exibidos lado a lado em vez de um sobre o outro. + + + + Code co&mpletion + Co&mpletação de código + + + + Show remote options + Mostrar opções remotas + + + + SQ&L to execute after opening database + SQ&L para executar após abrir o banco de dados + + + + Content + Conteúdo + + + + Symbol limit in cell + Limite de símbolos na célula + + + + Threshold for completion and calculation on selection + Limite de compleção e cálculo em seleção + + + + Show images in cell + Mostrar imagens na célula + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + Habilite essa opção para mostrar uma prévia de BLOBs contendo dados de imagens nas células. Isso pode afetar a performance do visualizados de dados. + + + + Remote + Remoto + + + + CA certificates + Certificados CA + + + + + Subject CN + Nome comum do sujeito + + + + Common Name + Nome comum + + + + Subject O + O do sujeito + + + + Organization + Organização + + + + + Valid from + Válido de + + + + + Valid to + Válido para + + + + + Serial number + Número serial + + + + Your certificates + Seus certificados + + + + File + Arquivo + + + + Subject Common Name + Nome comum do sujeito + + + + Issuer CN + CN do emissor + + + + Issuer Common Name + Nome Comum do emissor + + + + Import certificate file + Importar certificado + + + + No certificates found in this file. + Nem um certificado encontrado nesse arquivo. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + Você tem certeza de que deseja remover esse certificado? Todos os dados do certificado serão deletados das configurações da aplicação! + + + + Clone databases into + Clonar bancos de dados em + + + + Toolbar style + Estilo da barra de ferramentas + + + + + + + + Only display the icon + Exibir apenas o ícone + + + + + + + + Only display the text + Exibir apenas o texto + + + + + + + + The text appears beside the icon + O texto aparece ao lado do ícone + + + + + + + + The text appears under the icon + O texto aparece sob o ícone + + + + + + + + Follow the style + Seguir o estilo + + + + DB file extensions + Extensões de arquivo de bancos de dados + + + + Manage + Gerenciar + + + + Main Window + Janela principal + + + + Database Structure + Estrutura do banco de dados + + + + Browse Data + Navegar dados + + + + Execute SQL + Executar SQL + + + + Edit Database Cell + Editar célula do banco de dados + + + + When this value is changed, all the other color preferences are also set to matching colors. + Quando este valor é alterado, todas as outras preferências de cor são definidas para cores compatíveis. + + + + Follow the desktop style + Seguir o estilo do desktop + + + + Dark style + Estilo escuro + + + + Application style + Estilo da aplicação + + + + This sets the font size for all UI elements which do not have their own font size option. + Isso define o tamanho da fonte para todos os elementos da interface que não possuem sua própria opção de tamanho de fonte. + + + + Font size + Tamanho da fonte + + + + Database structure font size + Tamanho da fonte da estrutura do banco de dados + + + + Font si&ze + &Tamanho da fonte + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + Esse é o número máximo de itens permitidos para que algumas funcionalidades computacionalmente caras sejam habilitadas: +Número máximo de linhas em uma tabela para habilitar compleção de valores baseada nos valores atualmente na coluna. +Número máximo de índices em uma seleção para se calcular soma e média. +Pode ser deixado em 0 para se desabilitar as funcionalidades. + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + Esse é o número máximo de linhas na tabela para preencher baseado nos valores atualmente na coluna. +Pode ser 0 para desabilitar preenchimento. + + + + Field display + Exibição do campo + + + + Displayed &text + &Texto exibido + + + + + + + + + Click to set this color + Clique para definir essa cor + + + + Text color + Cor do texto + + + + Background color + Cor do plano de fundo + + + + Preview only (N/A) + Somente prévia (N/D) + + + + Foreground + Plano de frente + + + + SQL &results font size + Tamanho da fonte dos &resultados do SQL + + + + &Wrap lines + &Quebra de linhas + + + + Never + Nunca + + + + At word boundaries + Nos limites de palavras + + + + At character boundaries + Nos limites de caractere + + + + At whitespace boundaries + Nos limites de espaço em branco + + + + &Quotes for identifiers + Áspas &para identificadores + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + Escolha as áspas utilizadas pela aplicação para identificadores no código SQL. + + + + "Double quotes" - Standard SQL (recommended) + "Áspas duplas" - SQL Padrão (recomendado) + + + + `Grave accents` - Traditional MySQL quotes + `Crases`- MySQL tradicional + + + + [Square brackets] - Traditional MS SQL Server quotes + [Colchetes] - MS SQL Server tradicional + + + + Keywords in &UPPER CASE + Palavras-chave em &CAIXA ALTA + + + + When set, the SQL keywords are completed in UPPER CASE letters. + Quando definido, as palavras-chave SQL serão completadas em CAIXA ALTA. + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + Quando definido, as linhas de código SQL que causaram erros durante a última execução são destacadas e os resultados indicam os erros no fundo + + + + Close button on tabs + Botão para fechar abas + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + Se ativado, as abas do editor de SQL terão um botão para fechá-las. De qualquer forma, você pode usar o menu de contexto ou o atalho de teclado para fechá-las. + + + + Proxy + Proxy + + + + Configure + Configurar + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + Você tem certeza que deseja limpar as configurações salvas? +Todas as suas preferências serão perdidas e os valores padrão serão utilizados. + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + Quando ativado, as quebras de linha na coluna Esquema da aba Estrutura do banco de dados e nas saídas impressas são removidas. + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html><head/><body><p>SQLite provê uma função SQL para carregar extensões de um arquivo de biblioteca. Ative isso se você quer usar a função <span style=" font-style:italic;">load_extension()</span> a partir de código SQL.</p><p>Por motivos de segurança, carregamento de extensões é desabilitado por padrão e precisa ser habilitado através dessa configuração. Você sempre pode carregar extensões através da interface gráfica, mesmo com essa opção desabilitada.</p></body></html> + + + + Allow loading extensions from SQL code + Permitir o carregamento de extensões a partir de código SQL + + + + ProxyDialog + + + Proxy Configuration + Configuração do proxy + + + + Pro&xy Type + Tipo do pro&xy + + + + Host Na&me + No&me do host + + + + Port + Porta + + + + Authentication Re&quired + Au&tenticação necessária + + + + &User Name + Nome do &usuário + + + + Password + Senha + + + + None + Nenhum + + + + System settings + Configurações do sistema + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + Error importing data + Erro importando dados + + + + from record number %1 + a partir de registro número %1 + + + + . +%1 + . +%1 + + + + Cancel + Cancelar + + + + All files (*) + Todos arquivos (*) + + + + Importing CSV file... + Importando arquivo CSV... + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + Bancos de dados SQLite (*.db *.sqlite *.sqlite3 *.db3) + + + + Left + Esquerda + + + + Right + Direita + + + + Center + Centro + + + + Justify + Justificar + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + Arquivos de banco de dados SQL (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + Arquivo de projeto DB Browser para SQLite (*.sqbpro) + + + + SQL Files (*.sql) + Arquivos SQL (*.sql) + + + + All Files (*) + Todos arquivos (*) + + + + Text Files (*.txt) + Arquivos de texto (*.txt) + + + + Comma-Separated Values Files (*.csv) + Arquivos de valores separados por vírgulas (*.csv) + + + + Tab-Separated Values Files (*.tsv) + Arquivos de valores separados por tabs (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + Arquivos de valores separados por delimitadores (*.dsv) + + + + Concordance DAT files (*.dat) + Arquivos DAT Concordance (*.dat) + + + + JSON Files (*.json *.js) + Arquivos JSON (*.json) + + + + XML Files (*.xml) + Arquivos XML (*.xml) + + + + Binary Files (*.bin *.dat) + Arquivos binários (*.bin) + + + + SVG Files (*.svg) + Arquivos SVG (*.svg) + + + + Hex Dump Files (*.dat *.bin) + Arquivos de dump hexadecimal (*.dat *.bin) + + + + Extensions (*.so *.dylib *.dll) + Extensões (*.so *.dylib *.dll) + + + + RemoteCommitsModel + + + Commit ID + ID do commit + + + + Message + Mensagem + + + + Date + Data + + + + Author + Autor + + + + Size + Tamanho + + + + Authored and committed by %1 + Autorado e cometido por %1 + + + + Authored by %1, committed by %2 + Autorado por %1, cometido por %2 + + + + RemoteDatabase + + + Error opening local databases list. +%1 + Erro abrindo lista local de bancos de dados. +%1 + + + + Error creating local databases list. +%1 + Erro criando lista local de bancos de dados. +%1 + + + + RemoteDock + + + Remote + Remoto + + + + Local + Local + + + + Identity + Identidade + + + + Push currently opened database to server + Enviar o banco de dados aberto para o servidor + + + + DBHub.io + DBHub.io + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + <html><head/><body><p>Neste painel, bancos de dados remotos do dbhub.io podem ser adicionados ao DB Browser para SQLite. Primeiro você precisa adicionar uma identidade:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Entre no dbhub.io (use suas credenciais do GitHub ou algum outro método)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Clique o botão &quot;Gerar certificado do cliente&quot; (essa é sua identidade). Isto te dará um certificado (salve-o no disco local).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Vá para a aba Remoto nas configurações do DB Browser para SQLite. Clique no botão para adicionar um novo certificado ao DB Browser para SQLite e escolha o arquivo recém baixado.</li></ol><p>Agora o painel remoto mostra sua identidade e você pode adicionar bancos de dados remotos.</p></body></html> + + + + Current Database + Banco de dados atual + + + + Clone + Clonar + + + + User + Usuário + + + + Database + Banco de dados + + + + Branch + Ramo + + + + Commits + Commits + + + + Commits for + Commits para + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html><head/><body><p>Você está utilizando uma identidade somente leitura. Para fazer upload do seu banco de dados, você precisa configurar e usar a sua conta no DBHub.io.</p><p>Se você ainda não tem uma conta no DBHub, <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">crie uma agora</span></a> e importe seu certificado <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">aqui</span></a> para compartilhar os seus bancos de dados.</p><p>Para ajuda online, visite <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">este link</span></a>.</p></body></html> + + + + Back + Voltar + + + + Delete Database + Deletar banco de dados + + + + Delete the local clone of this database + Deletar o clone local desse banco de dados + + + + Open in Web Browser + Abrir no navegador Web + + + + Open the web page for the current database in your browser + Abrir a página da Web do banco de dados atual no seu navegador + + + + Clone from Link + Clonar a partir de um link + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + Use isso para baixar um banco de dados remoto para edição local usando uma URL encontrada na página na Web do banco de dados. + + + + Refresh + Atualizar + + + + Reload all data and update the views + Recarregar todos os dados e atualizar as vistas + + + + F5 + + + + + Clone Database + Clonar banco de dados + + + + Open Database + Abrir banco de dados + + + + Open the local copy of this database + Abrir a cópia local desse banco de dados + + + + Check out Commit + Ver commit + + + + Download and open this specific commit + Baixar e abrir esse commit específico + + + + Check out Latest Commit + Ver último commit + + + + Check out the latest commit of the current branch + Ver último commit do ramo atual + + + + Save Revision to File + Salvar revisão em arquivo + + + + Saves the selected revision of the database to another file + Salva a revisão selecionada do banco de dados em outro arquivo + + + + Upload Database + Fazer upload do banco de dados + + + + Upload this database as a new commit + Fazer upload desse banco de dados como um novo commit + + + + Select an identity to connect + Selecione uma identidade para se conectar + + + + Public + Público + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + Isso baixa um banco de dados de um servidor remoto para edição local. +Por favor ,entre a URL a partir da qual o clone será feito. Você pode gerar +essa URL clicando no botão 'Clone Database in DB4S' na página na Web +do banco de dados. + + + + Invalid URL: The host name does not match the host name of the current identity. + URL inválida: o nome do host não confere com o nome do host da identidade atual. + + + + Invalid URL: No branch name specified. + URL inválida: ramo não especificado. + + + + Invalid URL: No commit ID specified. + URL inválida: ID do commit não especificada. + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + Você modificou seu clone local do banco de dados. Obter esse commit sobrescreve essas mudanças locais. +Você tem certeza de que deseja continuar? + + + + The database has unsaved changes. Are you sure you want to push it before saving? + O banco de dados tem mudanças não salvas. Você tem certeza de que deseja fazer o push antes de salvar? + + + + The database you are trying to delete is currently opened. Please close it before deleting. + O banco de dados que você está tentando deletar está atualmente aberto. Por favor, feche-o antes de deletar. + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + Isso deleta a versão local desse banco de dados com todas as mudanças que você ainda não cometeu. Você tem certeza de que deseja deletar esse banco de dados? + + + + RemoteLocalFilesModel + + + Name + Nome + + + + Branch + Ramo + + + + Last modified + Última modificação + + + + Size + Tamanho + + + + Commit + Commit + + + + File + Arquivo + + + + RemoteModel + + + Name + Nome + + + + Last modified + Última modificação + + + + Size + Tamanho + + + + Size: + Tamanho: + + + + Last Modified: + Última modificação: + + + + Licence: + licença: + + + + Default Branch: + Ramo padrão: + + + + Commit + Commit + + + + RemoteNetwork + + + Choose a location to save the file + Escolha um lugar para salvar o arquivo + + + + Error opening remote file at %1. +%2 + Erro abrindo arquivo remoto em %1. +%2 + + + + Error: Invalid client certificate specified. + Erro: Certificado de cliente inválido especificado. + + + + Please enter the passphrase for this client certificate in order to authenticate. + Por favor entre a frase chave para esse certificado de cliente para se autenticar. + + + + Cancel + Cancelar + + + + Uploading remote database to +%1 + Enviando banco de dados remoto para +%1 + + + + Downloading remote database from +%1 + Baixando banco de dados remoto de +%1 + + + + + Error: The network is not accessible. + Erro: A rede não é acessível. + + + + Error: Cannot open the file for sending. + Erro: Não pôde abrir o arquivo para envio. + + + + RemotePushDialog + + + Push database + Enviar banco de dados + + + + Database na&me to push to + No&me do banco de dados para enviar + + + + Commit message + Mensagem de commit + + + + Username + Nome de usuário + + + + Database licence + Licença do banco de dados + + + + Public + Público + + + + Database will be public. Everyone has read access to it. + Banco de dados será público. Todos poderão lê-lo. + + + + Database will be private. Only you have access to it. + Banco de dados será privado. Somente você terá acesso a ele. + + + + Branch + Ramo + + + + Force push + Forçar envio + + + + Use with care. This can cause remote commits to be deleted. + Use com cuidado. Isso pode causar a perda de commits remotos. + + + + RunSql + + + Execution aborted by user + Execução abortada pelo usuário + + + + , %1 rows affected + , %1 linhas afetadas + + + + query executed successfully. Took %1ms%2 + consulta executada com sucesso. Levou %1ms%2 + + + + executing query + executando consulta + + + + SelectItemsPopup + + + A&vailable + &Disponível + + + + Sele&cted + &Selecionado + + + + SqlExecutionArea + + + Form + Formulário + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html><head/><body><p>Resultados dos últimos comandos executados.</p><p>Você pode querer colapsar esse painel e usar o dock <span style=" font-style:italic;">Log SQL</span> com seleção <span style=" font-style:italic;">Usuário</span> em vez disso.</p></body></html> + + + + Results of the last executed statements + Resultados dos últimos comandos executados + + + + This field shows the results and status codes of the last executed statements. + Esse campo mostra os resultados e códigos de status dos últimos comandos executados. + + + + Find previous match [Shift+F3] + Encontrar resultado anterior [Shift+F3] + + + + Find previous match with wrapping + Encontrar resultado anterior com mapeamento + + + + Shift+F3 + + + + + The found pattern must be a whole word + O padrão encontrado precisa ser uma palavra inteira + + + + Whole Words + Palavras inteiras + + + + Text pattern to find considering the checks in this frame + Padrão de texto para encontrar considerando os testes nesse frame + + + + Find in editor + Encontrar no editor + + + + The found pattern must match in letter case + O padrão encontrado precisa casar em capitalização + + + + Case Sensitive + Sensível à capitalização + + + + Find next match [Enter, F3] + Encontrar próxima correspondência [Enter, F3] + + + + Find next match with wrapping + Encontrar próxima correspondência no arquivo inteiro + + + + F3 + + + + + Interpret search pattern as a regular expression + Interpretar padrão de busca como expressão regular + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Quando assinalado, o padrão a ser buscado é interpretado como uma expressão regular UNIX. Veja <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression nos Wikibooks</a>.</p></body></html> + + + + Regular Expression + Expressão Regular + + + + + Close Find Bar + Fechar barra de busca + + + + Couldn't read file: %1. + Não pôde ler arquivo: %1. + + + + + Couldn't save file: %1. + Não pôde salvar arquivo: %1. + + + + Your changes will be lost when reloading it! + Suas modificações serão perdidas quando recarregando! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + O arquivo "%1" foi modificado por outro programa. Você quer recarregá-lo?%2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) A função abs(X) retorna o valor absoluto do argumento numérico X. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + + + + + (X) ltrim(X) removes spaces from the left side of X. + + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + + + + + (X) rtrim(X) removes spaces from the right side of X. + + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + + + + + (X) trim(X) removes spaces from both ends of X. + + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + + + + + + + + (timestring,modifier,modifier,...) + + + + + (format,timestring,modifier,modifier,...) + + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () O número de linhas dentro da partição atual. Linhas são numeradas de 1 na ordem definida pela cláusula ORDER BY na definição da janela, ou de forma arbitrária. + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () O row_number() do primeiro elemento de cada grupo - o rank da linha atual com gaps. Se não há uma cláusula ORDER BY, então todas as linhas são consideradas elementos e essa função sempre retorna 1. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () O número do grupo de colegas da linha atual dentro da sua partição - o rank da linha atual sem intervalos. Partições são numeradas a partir de 1 na ordem definida pela cláusula ORDER BY na definição. Se não há ORDER BY, então todas as linhas são consideradas colegas e essa função sempre retorna 1. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () Apesar do nome, essa função sempre retorna um valor entre 0.0 e 1.0 igual a (rank - 1)/(linhas-na-partição - 1), onde rank é o valor retornado pela built-in rank() e linhas-na-partição é o número total de linhas na partição. Se a partição contém somente uma linha, essa função retorna 0. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () A distribuição cumulativa. Calculada como número-da-linha/linhas-na-partição em que número-da-linha é o valor retornado por row_number() para o último elemento do grupo e linhas-na-partição é o número de linhas na partição. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) Argumento N é interpretado como um inteiro. Essa função divide a partição em N grupos tão igualmente como possível e atribui um inteiro entre 1 e N para cada grupo, na ordem definida pela cláusula ORDER BY, ou em ordem arbitrária. Se necessário, grupos maiores ocorrem primeiro. Essa função retorna o valor inteiro atribuido ao grupo que a linha atual é parte de. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) Retorna o resultado de avaliar expressão expr contra a linha anterior na partição. Ou, se não há linha anterior, NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr,offset) Se o offset é fornecido, então ele precisa ser um inteiro não-negativo. Nesse caso, o valor retornado é o resultado de avaliar expr contra a linha offset linhas antes da linha atual dentro da partição. Se offset é 0, então expr é avaliada contra a linha atual. Se não há linha offset linhas antes da linha atual, NULL é retornado. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,offset,default) Se default também é fornecido, ele é retornado em vez de NULL se a linha identificada por offset não existe. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) Retorna o resultado de avaliar a expressão expr contra a próxima linha na partição. Ou, se não há próxima linha, NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,offset) Se o offset é fornecido, então ele precisa ser um inteiro não-negativo. Nesse caso, o valor retornado é o resultado de avaliar expr contra a linha offset linhas após a linha atual dentro da partição. Se offset é 0, então expr é avaliada contra a linha atual. Se não há linha offset linhas após a linha atual, NULL é retornado. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) Essa função de janela built-in calcula o frame da janela para cada linha na mesma forma que uma função de janela agregada. Ela retorna o valor de expr avaliada contra a primeira linha do frame da janela para cada linha. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) Essa função de janela built-in calcula o frame da janela para cada linha na mesma forma que uma função de janela agregada. Ela retorna o valor de expr avaliada contra a última linha do frame da janela para cada linha. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr) Essa função de janela built-in calcula o frame da janela para cada linha na mesma forma que uma função de janela agregada. Ela retorna o valor de expr avaliada contra a linha N do frame da janela para cada linha.Linhas são numeradas dentro do frame da janela começando em 1 na ordem definida pela cláusula ORDER BY se uma está presente, ou em ordem arbitrária, caso contrário. Se não há uma N-ésima linha na partição, NULL é retornado. + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) A função load_extension(X) carrega extensões para SQLite a partir de um arquivo chamado X. +Uso dessa função precisa ser autorizado em Preferências. + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X,Y) A função load_extension(X) carrega extensões para SQLite a partir de um arquivo chamado X usando o ponto de entrada Y. +Uso dessa função precisa ser autorizado em Preferências. + + + + SqliteTableModel + + + Error changing data: +%1 + Erro modificando dados: +%1 + + + + reading rows + lendo linhas + + + + loading... + carregando... + + + + References %1(%2) +Hold %3Shift and click to jump there + Referencia %1(%2) +Segure %3Shift e clique para ir para lá + + + + retrieving list of columns + obtendo lista de colunas + + + + Fetching data... + Obtendo dados... + + + + + Cancel + Cancelar + + + + TableBrowser + + + Browse Data + Navegar dados + + + + &Table: + &Tabela: + + + + Select a table to browse data + Selecione uma tabela para navegar + + + + Use this list to select a table to be displayed in the database view + Use esta lista para selecionar uma tabela para ser exibida na vista do banco de dados + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + Essa é a vista de tabela do banco de dados. Você pode fazer as seguintes ações: + - Começar a escrever para editar o valor. + - Clicar duas vezes em qualquer registro para editar seus conteúdos no editor de célula. + - Alt+Del para deletar o conteúdo da célula para NULL. + - Ctrl+" para duplicar o registro atual. + - Ctrl+' para copiar o valor da célula de cima. + - Seleção normal para copiar e colar. + + + + Text pattern to find considering the checks in this frame + Padrão de texto para encontrar considerando os testes nesse frame + + + + Find in table + Encontrar na tabela + + + + Find previous match [Shift+F3] + Encontrar resultado anterior [Shift+F3] + + + + Find previous match with wrapping + Encontrar resultado anterior com mapeamento + + + + Shift+F3 + + + + + Find next match [Enter, F3] + Encontrar próxima correspondência [Enter, F3] + + + + Find next match with wrapping + Encontrar próxima correspondência com quebra de linha + + + + F3 + + + + + The found pattern must match in letter case + O padrão encontrado precisa casar em capitalização + + + + Case Sensitive + Sensível à capitalização + + + + The found pattern must be a whole word + O padrão encontrado precisa ser uma palavra inteira + + + + Whole Cell + Célula inteira + + + + Interpret search pattern as a regular expression + Interpretar padrão de busca como expressão regular + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Quando marcado, o padrão para ser encontrado é interpretado como uma expressão regular do UNIX. Veja <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + Regular Expression + Expressão regular + + + + + Close Find Bar + Fechar barra de busca + + + + Text to replace with + Texto para substituir com + + + + Replace with + Substituir com + + + + Replace next match + Substituir próxima correspondência + + + + + Replace + Substituir + + + + Replace all matches + Substituir todas as correspondências + + + + Replace all + Substituir todos + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Rolar para o começo</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Clicar nesse botão navega até o começo da vista de tabela acima.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + Rolar uma página para cima + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>Clicando nesse botão navega uma página de registros para cima.</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 de 0 + + + + Scroll one page downwards + Rolar uma página para baixo + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>Clicando nesse botão navega uma página de registros para baixo.</p></body></html> + + + + > + > + + + + Scroll to the end + Rolar para o fim + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + <html><head/><body><p>Clicar nesse botão navega para o fim da tabela acima.</p></body></html> + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>Clique aqui para pular para o registro especificado</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>Esse botão navega para o registro especificado na área Ir para.</p></body></html> + + + + Go to: + Ir para: + + + + Enter record number to browse + Entre o número do registro para navegar + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Digite o número de um registro nessa área e clique no botão Ir para: para exibir o registro na vista do banco de dados + + + + 1 + 1 + + + + Show rowid column + Mostrar coluna rowid + + + + Toggle the visibility of the rowid column + Alternar a visibilidade da coluna rowid + + + + Unlock view editing + Liberar edição da vista + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + Isso libera a vista atual para edição. Todavia, você vai precisar dos gatilhos apropriados para editar. + + + + Edit display format + Editar formato de exibição + + + + Edit the display format of the data in this column + Editar o formato de exibição dos dados nessa coluna + + + + + New Record + Novo registro + + + + + Insert a new record in the current table + Inserir um novo registro na tabela atual + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>Esse botão cria um novo registro no banco de dados. Segure o botão do mouse para abrir um menu de opções diferentes:</p><ul><li><span style=" font-weight:600;">Novo Registro</span>: insere um novo registro com valores padrão no banco de dados.</li><li><span style=" font-weight:600;">Inserir Valores...</span>: abre um diálogo para novos valores antes de serem inseridos no banco de dados. Isso permite a entrada de valores de acordo com as restrições. Esse diálogo também é abaerto se a opção<span style=" font-weight:600;">Novo Registro</span> falha devido a essas restrições.</li></ul></body></html> + + + + + Delete Record + Deletar registro + + + + Delete the current record + Deletar o registro atual + + + + + This button deletes the record or records currently selected in the table + Esse botão deleta o registro ou registros selecionados + + + + + Insert new record using default values in browsed table + Inserir novo registro usando valores padrão na tabela + + + + Insert Values... + Inserir valores... + + + + + Open a dialog for inserting values in a new record + Abre um diálogo para inserir valores em um novo registro + + + + Export to &CSV + Exportar para &CSV + + + + + Export the filtered data to CSV + Exportar dados filtrados para CSV + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + Esse botão exporta os dados da tabela como atualmente exibidos como um arquivo CSV. + + + + Save as &view + Salvar como &vista + + + + + Save the current filter, sort column and display formats as a view + Salva o filtro, ordenação e formato como uma vista + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + Esse botão salva as configurações da tabela exibida como uma vista SQL que você pode utilizar em comandos SQL depois. + + + + Save Table As... + Salvar tabela como... + + + + + Save the table as currently displayed + Salva a tabela como atualmente exibida + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>Esse Menu provê as seguintes opções para a tabela atual:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Exportar para CSV: essa opção exporta os dados como estão exibidos para um arquivo CSV.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Salvar como vista: essa opção salva a configuração atual da tabela como uma vista SQL que você depois pode consultar em comandos SQL.</li></ul></body></html> + + + + Hide column(s) + Ocultar coluna(s) + + + + Hide selected column(s) + Ocultar coluna(s) selecionada(s) + + + + Show all columns + Mostrar todas as colunas + + + + Show all columns that were hidden + Mostrar todas as colunas ocultas + + + + + Set encoding + Definir codificação + + + + Change the encoding of the text in the table cells + Modificar a codificação do texto nas células da tabela + + + + Set encoding for all tables + Modificar codificação para todas as tabelas + + + + Change the default encoding assumed for all tables in the database + Modificar a codificação padrão assumida para todas as tabelas no banco de dados + + + + Clear Filters + Limpar filtros + + + + Clear all filters + Limpar todos os filtros + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + Esse botão limpa todos os filtros definidos no cabeçalho para a tabela atualmente navegada. + + + + Clear Sorting + Limpar ordenamento + + + + Reset the order of rows to the default + Resetar a ordem das linhas para o padrão + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + Esse botão limpa o ordenamento especificado para a tabela atual e volta para a ordem padrão. + + + + Print + Imprimir + + + + Print currently browsed table data + Imprimir dados da tabela atual + + + + Print currently browsed table data. Print selection if more than one cell is selected. + Imprimir dados da tabela atual. Imprime a seleção se mais de uma célula está selecionada. + + + + Ctrl+P + + + + + Refresh + Atualizar + + + + Refresh the data in the selected table + Atualizar os dados na tabela selecionada + + + + This button refreshes the data in the currently selected table. + Este botão atualiza os dados na tabela atualmente selecionada. + + + + F5 + + + + + Find in cells + Encontrar em células + + + + Open the find tool bar which allows you to search for values in the table view below. + Abre a barra de ferramentas para buscar que permite que você busque por valores na vista da tabela abaixo. + + + + + Bold + Negrito + + + + Ctrl+B + + + + + + Italic + Itálico + + + + + Underline + Sublinhado + + + + Ctrl+U + + + + + + Align Right + Alinhar à direita + + + + + Align Left + Alinhar à esquerda + + + + + Center Horizontally + Centralizar horizontalmente + + + + + Justify + Justificar + + + + + Edit Conditional Formats... + Editar formatos condicionais... + + + + Edit conditional formats for the current column + Editar os formatos condicionais para a coluna atual + + + + Clear Format + Limpar formato + + + + Clear All Formats + Limpar todos os formatos + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + Limpa toda a formatação das células selecionadas e todos os formatos condicionais das colunas selecionadas + + + + + Font Color + Cor do texto + + + + + Background Color + Cor do plano de fundo + + + + Toggle Format Toolbar + Alterar barra de ferramentas de formatação + + + + Show/hide format toolbar + Mostrar/esconder barra de ferramentas de formatação + + + + + This button shows or hides the formatting toolbar of the Data Browser + Esse botão mostra ou esconde a barra de ferramentas de formatação do navegador de dados + + + + Select column + Selecionar coluna + + + + Ctrl+Space + + + + + Replace text in cells + Substituir texto em células + + + + Filter in any column + Filtrar em qualquer coluna + + + + Ctrl+R + + + + + %n row(s) + + %n linha(s) + %n linhas + + + + + , %n column(s) + + , %n coluna(s) + , %n colunas + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . Soma: %1; Média: %2; Mínimo: %3; Máximo: %4 + + + + Conditional formats for "%1" + Formatos condicionais para "%1" + + + + determining row count... + determinando número de linhas... + + + + %1 - %2 of >= %3 + %1 - %2 de >= %3 + + + + %1 - %2 of %3 + %1 - %2 de %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + Por favor, entre uma pseudo-chave primária para habilitar edição nessa vista. Isso deveria ser o nome de uma coluna única na vista. + + + + Delete Records + Deletar registros + + + + Duplicate records + Duplicar registros + + + + Duplicate record + Duplicar registro + + + + Ctrl+" + + + + + Adjust rows to contents + Ajustar linhas aos conteúdos + + + + Error deleting record: +%1 + Erro deletando registro: +%1 + + + + Please select a record first + Por favor, selecione um registro primeiro + + + + There is no filter set for this table. View will not be created. + Não há filtro para essa tabela. Vista não será criada. + + + + Please choose a new encoding for all tables. + Por favor, escolha uma nova codificação para todas tabelas. + + + + Please choose a new encoding for this table. + Por favor, escolha uma nova codificação para essa tabela. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Deixe o campo em branco para usar a codificação do banco de dados. + + + + This encoding is either not valid or not supported. + Essa codificação é inválida ou não suportada. + + + + %1 replacement(s) made. + %1 substituição(ões) feita(s). + + + + VacuumDialog + + + Compact Database + Compactar banco de dados + + + + Warning: Compacting the database will commit all of your changes. + Alerta: compactando o banco de dados irá confirmar todas as suas modificações. + + + + Please select the databases to co&mpact: + Por favor selecione o banco de dados para co&mpactar: + + + diff --git a/ConfigFiles/translations/sqlb_ru.qm b/ConfigFiles/translations/sqlb_ru.qm new file mode 100644 index 0000000..37b587a Binary files /dev/null and b/ConfigFiles/translations/sqlb_ru.qm differ diff --git a/ConfigFiles/translations/sqlb_ru.ts b/ConfigFiles/translations/sqlb_ru.ts new file mode 100644 index 0000000..2942de8 --- /dev/null +++ b/ConfigFiles/translations/sqlb_ru.ts @@ -0,0 +1,6996 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + О программе Обозреватель для SQLite + + + + Version + Версия + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>Обозреватель для SQLite - это бесплатная программа, с открытым исходным кодом, предназначенная для создания и редактирования баз данных SQLite.</p><p>Программа лицензирована по двум лицензиям: Mozilla Public License Version 2 и GNU General Public License Version 3 or later. Можно изменять или распространять её на условиях этих лицензий.</p><p>Лицензии можно просмотреть по ссылкам <a href="http://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> и <a href="https://www.mozilla.org/MPL/2.0/index.txt"><span style=" text-decoration: underline; color:#0000ff;">https://www.mozilla.org/MPL/2.0/index.txt</span></a>.</p><p>Дополнительную информацию о программе можно узнать на веб-сайте:<br/><a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">Это программное обеспечение использует GPL/LGPL Qt Toolkit </span><a href="http://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>Условия лицензии на Qt Toolkit </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;">.</span></p><p><span style=" font-size:small;">Эта программа также использует набор иконок Silk от Марка Джеймса (Mark James), лицензированный под лицензией Creative Commons Attribution 2.5 and 3.0.<br/>Подробная информация по адресу </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;">.</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + Добавить Новую Запись + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + Введите значения для новой записи с учетом ограничений. Поля, выделенные жирным шрифтом, являются обязательными. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + В столбце "Значение" вы можете указать значение для поля, указанного в столбце "Имя". В столбце "Тип" указывается тип поля. Значения по умолчанию отображаются в том же стиле, что и значения NULL. + + + + Name + Имя + + + + Type + Тип + + + + Value + Значение + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + Значения для вставки. Предварительно заполненные значения по умолчанию вставляются автоматически, если они не изменены. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + Когда вы редактируете значения в верхнем фрейме, здесь отображается запрос SQL для вставки этой новой записи. Вы можете вручную отредактировать запрос перед сохранением. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Сохранение</span> отправит показанный оператор SQL в БД для вставки новой записи.</p><p><span style=" font-weight:600;">Восстановить значения по умолчанию</span> восстановит исходные значения в колонке <span style=" font-weight:600;">Значение</span>.</p><p><span style=" font-weight:600;">Отмена</span> закрывает этот диалог без выполнения запросов.</p></body></html> + + + + Auto-increment + + Авто-увеличение + + + + + Unique constraint + + Уникальнось + + + + + Check constraint: %1 + + Проверка: %1 + + + + + Foreign key: %1 + + Внешний ключ: %1 + + + + + Default value: %1 + + Значение по умолчанию: %1 + + + + + Error adding record. Message from database engine: + +%1 + Ошибка добавления записи. Сообщение из базы данных: + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + Вы действительно хотите восстановить все введенные значения по умолчанию? + + + + Application + + + Possible command line arguments: + + + + + Usage: %1 [options] [<database>|<project>] + + + + + + -h, --help Show command line options + + + + + -q, --quit Exit application after running scripts + + + + + -s, --sql <file> Execute this SQL file after opening the DB + + + + + -t, --table <table> Browse this table after opening the DB + + + + + -R, --read-only Open database in read-only mode + + + + + -o, --option <group>/<setting>=<value> + + + + + Run application with this setting temporarily set to value + + + + + -O, --save-option <group>/<setting>=<value> + + + + + Run application saving this value for this setting + + + + + -v, --version Display the current version + + + + + <database> Open this SQLite database + + + + + <project> Open this project file (*.sqbpro) + + + + + The -s/--sql option requires an argument + + + + + The file %1 does not exist + + + + + The -t/--table option requires an argument + + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + + + + + Invalid option/non-existant file: %1 + + + + + SQLite Version + Версия SQLite + + + + SQLCipher Version %1 (based on SQLite %2) + + + + + DB Browser for SQLite Version %1. + + + + + Built for %1, running on %2 + + + + + Qt Version %1 + + + + + CipherDialog + + + SQLCipher encryption + Шифрование SQLCipher + + + + &Password + &Пароль + + + + &Reenter password + Пароль &ещё раз + + + + Encr&yption settings + + + + + SQLCipher &3 defaults + + + + + SQLCipher &4 defaults + + + + + Custo&m + + + + + Page si&ze + Размер &страницы + + + + &KDF iterations + + + + + HMAC algorithm + + + + + KDF algorithm + + + + + Plaintext Header Size + + + + + Passphrase + Фраза + + + + Raw key + Ключ + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + Пожалуйста укажите ключ шифрования. +Если вы измените какую-либо опциональную настройку, то ее нужно будет вводить при каждом открытии этого файла базы данных. +Оставьте пароль пустым если шифрование не требуется. +Процесс может занять некоторое время и настоятельно рекомендуем создать резервную копию перед продолжением! Не сохраненные изменения автоматически будут сохранены. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + Пожалуйста введите ключ для шифрования базы данных. +Если любые другие настройки были изменены для данной базы данный то нужно так же предоставить данную информацию. + + + + ColumnDisplayFormatDialog + + + Choose display format + Выберите формат отображения + + + + Display format + Формат отображения + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + Выберите формат отображения для колонки '%1', который будет применен к каждому ее значению. + + + + Default + По умолчанию + + + + Decimal number + Десятичное число + + + + Exponent notation + Экспоненциальная запись + + + + Hex blob + Бинарные данные + + + + Hex number + Шестнадцатеричное число + + + + Apple NSDate to date + Apple NSDate дата + + + + Java epoch (milliseconds) to date + Java epoch дата + + + + .NET DateTime.Ticks to date + + + + + Julian day to date + Юлианская дата + + + + Unix epoch to local time + Unix-время + + + + Date as dd/mm/yyyy + Дата в формате дд/мм/гггг + + + + Lower case + Нижний регистр + + + + Custom display format must contain a function call applied to %1 + + + + + Error in custom display format. Message from database engine: + +%1 + + + + + Custom display format must return only one column but it returned %1. + + + + + Octal number + Восьмеричное число + + + + Round number + Округленное число + + + + Unix epoch to date + Unix-дата + + + + Upper case + Верхний регистр + + + + Windows DATE to date + Windows дата + + + + Custom + Мой формат + + + + CondFormatManager + + + Conditional Format Manager + + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + + + + + Add new conditional format + + + + + &Add + &Добавить + + + + Remove selected conditional format + + + + + &Remove + &Удалить + + + + Move selected conditional format up + + + + + Move &up + + + + + Move selected conditional format down + + + + + Move &down + + + + + Foreground + Передний план + + + + Text color + Цвет текста + + + + Background + Фон + + + + Background color + Цвет фона + + + + Font + Шрифт + + + + Size + Размер + + + + Bold + Жирный + + + + Italic + Курсив + + + + Underline + Подчёркивание + + + + Alignment + + + + + Condition + + + + + + Click to select color + + + + + Are you sure you want to clear all the conditional formats of this field? + + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + + + + + Invalid file format + Ошибочный формат файла + + + + Do you want to save the changes made to the database file %1? + Сохранить сделанные изменения в файле базы данных %1? + + + + Exporting database to SQL file... + Экспорт базы данных в файл SQL... + + + + + Cancel + Отменить + + + + Executing SQL... + Выполнить код SQL... + + + + Action cancelled. + Действие отменено. + + + + This database has already been attached. Its schema name is '%1'. + Эта БД уже присоединена. Имя ее схемы - '%1'. + + + + Do you really want to close this temporary database? All data will be lost. + Вы действительно хотите закрыть эту временную БД? Все данные будут потеряны. + + + + Database didn't close correctly, probably still busy + + + + + The database is currently busy: + БД занята: + + + + Do you want to abort that other operation? + Вы хотите отменить эту операцию? + + + + + No database file opened + Файл БД не открыт + + + + + Error in statement #%1: %2. +Aborting execution%3. + Ошибка в выражении #%1: %2. +Прерываем выполнение%3. + + + + + and rolling back + и отменяем + + + + didn't receive any output from %1 + + + + + could not execute command: %1 + + + + + Cannot delete this object + Не удается удалить этот объект + + + + Cannot set data on this object + Невозможно назначить данные для этого объекта + + + + + A table with the name '%1' already exists in schema '%2'. + Таблица с именем '%1' уже существует в схеме '%2'. + + + + No table with name '%1' exists in schema '%2'. + + + + + + Cannot find column %1. + + + + + Creating savepoint failed. DB says: %1 + + + + + Renaming the column failed. DB says: +%1 + + + + + + Releasing savepoint failed. DB says: %1 + + + + + Creating new table failed. DB says: %1 + + + + + Copying data to new table failed. DB says: +%1 + + + + + Deleting old table failed. DB says: %1 + + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + + + + + could not get list of db objects: %1 + + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + Ошибка восстановления некоторых объектов, ассоциированных с этой таблицей. Наиболее вероятная причина этого - изменение имён некоторых столбцов таблицы. Вот SQL оператор, который нужно исправить и выполнить вручную: + + + + + + could not get list of databases: %1 + не могу получить список БД: %1 + + + + Error loading extension: %1 + Ошибка загрузки расширения: %1 + + + + could not get column information + не могу полчить информацию о колонке + + + + Error setting pragma %1 to %2: %3 + Ошибка установки прагмы %1 в %2: %3 + + + + File not found. + Файл не найден. + + + + DbStructureModel + + + Name + Имя + + + + Object + Объект + + + + Type + Тип + + + + Schema + Схема + + + + Database + База данных + + + + Browsables + Просматриваемые + + + + All + Все + + + + Temporary + Временный + + + + Tables (%1) + Таблицы (%1) + + + + Indices (%1) + Индексы (%1) + + + + Views (%1) + Представления (%1) + + + + Triggers (%1) + Триггеры (%1) + + + + EditDialog + + + Edit database cell + Редактирование ячейки базы данных + + + + Mode: + Режим: + + + + + Image + Изображение + + + + Set as &NULL + Присвоить &NULL + + + + Apply data to cell + Применить данные к ячейке + + + + This button saves the changes performed in the cell editor to the database cell. + Нажав эту кнопку, вы сохраните изменения произведенные в этом редакторе, в соответствующую ячейку БД. + + + + Apply + Применить + + + + Text + Текст + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + Это список поддерживаемых режимов. Выбирете режим для просмотра или редактирования данных текущей ячейки. + + + + RTL Text + + + + + Binary + Двоичные данные + + + + JSON + + + + + XML + + + + + + Automatically adjust the editor mode to the loaded data type + Автоматически подбор режима редактора на основе данных + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + Эта кнопка позволяет включать или отключать автоматическое переключение режима редактора. Когда выбрана новая ячейка или импортированы новые данные, а автоматическое переключение включено, режим настраивается на обнаруженный тип данных. Вы можете вручную изменить режим редактора. Если вы хотите сохранить этот режим ручного переключения при перемещении по ячейкам, выключите кнопку. + + + + Auto-switch + Автопереключение + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + + + + + Open preview dialog for printing the data currently stored in the cell + + + + + Auto-format: pretty print on loading, compact on saving. + Автоматическое форматирование: стилистическое форматирование при загрузке, компактность - при сохранении. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + Когда включено, функция автоматического форматирования форматирует данные по загрузке, разбивая текст в строках и отступы для максимальной читаемости. При сохранении данных функция автоматического форматирования объединяет данные, удаляющие конец строк, и ненужные пробелы. + + + + Word Wrap + + + + + Wrap lines on word boundaries + + + + + + Open in default application or browser + + + + + Open in application + + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + + + + + Save file reference... + + + + + Save reference to file + + + + + + Open in external application + + + + + Autoformat + Автоформатирование + + + + &Export... + + + + + + &Import... + + + + + + Import from file + Импортировать из файла + + + + + Opens a file dialog used to import any kind of data to this database cell. + Открывает диалоговое окно файла, используемое для импорта любых данных в эту ячейку базы данных. + + + + Export to file + Экспортировать в файл + + + + Opens a file dialog used to export the contents of this database cell to a file. + Открывает диалоговое окно файла, используемое для экспорта содержимого этой ячейки базы данных в файл. + + + + Erases the contents of the cell + Очищается содержимое ячейки + + + + This area displays information about the data present in this database cell + Эта область отображает информацию о данных, находящихся в этой ячейке базы данных + + + + Type of data currently in cell + Тип данных в ячейке + + + + Size of data currently in table + Размер данных в таблице + + + + + Print... + Печать... + + + + Open preview dialog for printing displayed image + Открыть диалоговое окно предварительного просмотра для печати отображаемого изображения + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + Открыть диалоговое окно предварительного просмотра для печати отображаемого текста + + + + Copy Hex and ASCII + Копировать HEX и ASCII + + + + Copy selected hexadecimal and ASCII columns to the clipboard + Копировать выбранные HEX и ASCII столбцы в буфер обмена + + + + Ctrl+Shift+C + + + + + Choose a filename to export data + Выбрать имя файла для экспорта данных + + + + Type of data currently in cell: %1 Image + Тип данных в ячейке: %1 Изображение + + + + %1x%2 pixel(s) + %1x%2 пикселей + + + + Type of data currently in cell: NULL + Тип данных в ячейке: NULL + + + + + Type of data currently in cell: Text / Numeric + Тип данных в ячейке: Текст / Числовое + + + + + Image data can't be viewed in this mode. + Изображение не может быть отображено в этом режиме. + + + + + Try switching to Image or Binary mode. + Попробуйте переключиться в Бинарный режим или режим Изображения. + + + + + Binary data can't be viewed in this mode. + Бинарные данные не могут быть отображены в этом режиме. + + + + + Try switching to Binary mode. + Попробуйте переключиться в Бинарный режим. + + + + Couldn't save file: %1. + Не удалось сохранить файл:%1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + + + + + + Image files (%1) + Файлы изображений (%1) + + + + Binary files (*.bin) + Бинарные файлы (*.bin) + + + + Choose a file to import + Выбрать файл для импорта + + + + %1 Image + %1 Изображение + + + + Invalid data for this mode + Ошибочные данные для этого режима + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + Ячейка содержит ошибочные %1 данные. Причина: %2. Вы действительно хотите применить их? + + + + + + %n character(s) + + %n символ + %n символа + %n символов + + + + + Type of data currently in cell: Valid JSON + Тип данных в ячейке: JSON + + + + Type of data currently in cell: Binary + Тип данных в ячейке: Двоичные данные + + + + + %n byte(s) + + %n байт + %n байта + %n байтов + + + + + EditIndexDialog + + + &Name + &Имя + + + + Order + Сортировка + + + + &Table + &Таблица + + + + Edit Index Schema + Редактирование Индекса + + + + &Unique + &Уникальный + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + Для ограничения индекса только частью таблицы вы можете указать здесь выражение WHERE, которое выбирает часть таблицы, которая должна быть проиндексирована + + + + Partial inde&x clause + &Частичный индекс + + + + Colu&mns + &Колонки + + + + Table column + Колонка таблицы + + + + Type + Тип + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + Добавить новое колоночное-выражение в индекс. Колоночное выражение может содержкать SQL выражения вместо имен колонок. + + + + Index column + Колонка индекса + + + + Deleting the old index failed: +%1 + Удаление старого индекса завершилось с ошибкой: +%1 + + + + Creating the index failed: +%1 + Ошибка создания индекса: +%1 + + + + EditTableDialog + + + Edit table definition + Редактирование определения таблицы + + + + Table + Таблица + + + + Advanced + Дополнительно + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + Чтобы создать таблицу 'без rowid', нужно чтобы в ней был INTEGER первичный ключ с отключенным автоинкрементом. + + + + Without Rowid + Без rowid + + + + Database sche&ma + + + + + Fields + Поля + + + + Add + + + + + Remove + + + + + Move to top + + + + + Move up + + + + + Move down + + + + + Move to bottom + + + + + + Name + Имя + + + + + Type + Тип + + + + NN + НП + + + + Not null + Не пустое (null) + + + + PK + ПК + + + + Primary key + Первичный ключ + + + + AI + АИ + + + + Autoincrement + Автоинкремент + + + + U + У + + + + + + Unique + Уникальное + + + + Default + По умолчанию + + + + Default value + Значение по умолчанию + + + + + + Check + Проверить + + + + Check constraint + Проверить ограничение + + + + Collation + + + + + + + Foreign Key + Внешний ключ + + + + Constraints + + + + + Add constraint + + + + + Remove constraint + + + + + Columns + Столбцы + + + + SQL + + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Внимание: </span>В описании этой таблицы есть что-то, что наш парсер не понимает. Модификация и сохрание этой таблицы может породить проблемы.</p></body></html> + + + + + Primary Key + + + + + Add a primary key constraint + + + + + Add a foreign key constraint + + + + + Add a unique constraint + + + + + Add a check constraint + + + + + Error creating table. Message from database engine: +%1 + Ошибка создания таблицы. Сообщение от движка базы данных: %1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Поле с таким именем уже существует. Пожалуйста переименуйте его, либо выберите другое имя для данного поля. + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + На данную колонку ссылкается внешний ключ в таблице %1, поэтому ее имя не может быть изменено. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + Существует по крайней мере одна строка, где это поле установлено в NULL. Установить этот флаг нельзя. Сначала измените данные таблицы. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + Существует по крайней мере одна строка, где это поле содержит нечисловое значение. Установить флаг АИ нельзя. Сначала измените данные таблицы. + + + + Column '%1' has duplicate data. + + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + Удалить поле '%1'? +Все данные, которые в настоящий момент сохранены в этом поле, будут потеряны. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + Перед тем как применять флаг без rowid, пожалуйста убедитесь, что существует столбец, который: + - является первичный ключом + - для него отключен автоинкремент + + + + ExportDataDialog + + + Export data as CSV + Экспортировать данные в формате CSV + + + + Tab&le(s) + &Таблицы + + + + Colu&mn names in first line + &Имена столбцов в первой строке + + + + Fie&ld separator + &Разделитель полей + + + + , + , + + + + ; + ; + + + + Tab + Табуляция + + + + | + | + + + + + + Other + Другой + + + + &Quote character + &Символ кавычки + + + + " + " + + + + ' + ' + + + + New line characters + Разделитель строк + + + + Windows: CR+LF (\r\n) + + + + + Unix: LF (\n) + + + + + Pretty print + Красивый вывод + + + + + Could not open output file: %1 + Не удалось открыть выходной файл: %1 + + + + + Choose a filename to export data + Выберите имя файла для экспорта данных + + + + Export data as JSON + Экспортировать данные как JSON + + + + exporting CSV + экспортирование CSV + + + + exporting JSON + экспортирование JSON + + + + Please select at least 1 table. + Пожалуйста, выберите хотя бы одну таблицу. + + + + Choose a directory + Выберать каталог + + + + Export completed. + Экспорт завершён. + + + + ExportSqlDialog + + + Export SQL... + Экспорт SQL.... + + + + Tab&le(s) + &Таблицы + + + + Select All + Выбрать все + + + + Deselect All + Отменить выбор + + + + &Options + &Опции + + + + Keep column names in INSERT INTO + Имя столбцов в выражении INSERT INTO + + + + Multiple rows (VALUES) per INSERT statement + Несколько строк (VALUES) на INSERT выражение + + + + Export everything + Экспортировать все + + + + Export data only + Экспортировать только данные + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + Проверять существоватние таблицы (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Удалять старую таблицу перед созданием (DROP TABLE, затем CREATE TABLE) + + + + Export schema only + Экспортировать только схему данных + + + + Please select at least one table. + Пожалуйста, выберите хотя бы одну таблицу. + + + + Choose a filename to export + Выберите имя файла для экспорта + + + + Export completed. + Экспорт завершён. + + + + Export cancelled or failed. + Экспорт отменён или возникли ошибки. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + + + + + Find and Replace... + Найти и Заменить... + + + + Print... + Печать... + + + + ExtendedTableWidget + + + Use as Exact Filter + Использовать как Точный Фильтр + + + + Containing + Содержит + + + + Not containing + + + + + Not equal to + Не равно + + + + Greater than + Больше чем + + + + Less than + Меньше чем + + + + Greater or equal + Больше или равно + + + + Less or equal + Меньше или равно + + + + Between this and... + Между этим и... + + + + Regular expression + + + + + Edit Conditional Formats... + + + + + Set to NULL + Сбросить в NULL + + + + Copy + Копировать + + + + Copy with Headers + Копировать с заголовками + + + + Copy as SQL + Копировать как SQL + + + + Paste + Вставить + + + + Print... + Печать... + + + + Use in Filter Expression + Использовать в Выражении Фильтра + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + Содержимое буфера обмена больше чем выделенный диапозон. +Все равно вставить? + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + + + + + FileExtensionManager + + + File Extension Manager + Менеджер расширения файлов + + + + &Up + &Выше + + + + &Down + &Ниже + + + + &Add + &Добавить + + + + &Remove + &Удалить + + + + + Description + Описание + + + + Extensions + Расширения + + + + *.extension + + + + + FilterLineEdit + + + Filter + Фильтр + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + + + + + Clear All Conditional Formats + + + + + Use for Conditional Format + + + + + Edit Conditional Formats... + + + + + Set Filter Expression + Установить Выражение Фильтра + + + + What's This? + Что Это? + + + + Is NULL + NULL + + + + Is not NULL + не NULL + + + + Is empty + пусто + + + + Is not empty + не пусто + + + + Not containing... + + + + + Equal to... + Равно... + + + + Not equal to... + Не равно... + + + + Greater than... + Больше чем... + + + + Less than... + Меньше чем... + + + + Greater or equal... + Больше или равно... + + + + Less or equal... + Меньше или равно... + + + + In range... + В диапазоне... + + + + Regular expression... + + + + + FindReplaceDialog + + + Find and Replace + Поиск и Замена + + + + Fi&nd text: + &Текст для поиска: + + + + Re&place with: + Текст для &замены: + + + + Match &exact case + Учитывать &регистр + + + + Match &only whole words + Слова &целиком + + + + When enabled, the search continues from the other end when it reaches one end of the page + Когда отмечено, поиск продолжается с другого конца, когда он достигает противоположного конца страницы + + + + &Wrap around + &Закольцевать + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + Когда отмечено, поиск возвращается назад из положения курсора, в противном случае он идет вперед + + + + Search &backwards + Искать в &обратном порядке + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + + + + + &Selection only + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>При проверке шаблон для поиска интерпретируется как регулярное выражение UNIX. <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Узнать больше о Регулярных выражениях на Wikibooks.org</a>.</p></body></html> + + + + Use regular e&xpressions + &Регулярные выражения + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + Найдите следующее вхождение из позиции курсора и в направлении, заданном "Искать назад" + + + + &Find Next + Искать &дальше + + + + F3 + + + + + &Replace + &Замена + + + + Highlight all the occurrences of the text in the page + Выделить все вхождения текста на странице + + + + F&ind All + Найти &все + + + + Replace all the occurrences of the text in the page + Заменить все вхождения текста на странице + + + + Replace &All + За&менить все + + + + The searched text was not found + Искомый текст не найден + + + + The searched text was not found. + Искомый текст не найден. + + + + The searched text was found one time. + Искомый текст найден один раз. + + + + The searched text was found %1 times. + Искомый текст найден %1 раз. + + + + The searched text was replaced one time. + Искомый текст заменен один раз. + + + + The searched text was replaced %1 times. + Искомый текст заменен %1 раз. + + + + ForeignKeyEditor + + + &Reset + &Сброс + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + Условия (ON UPDATE, ON DELETE и т.д.) + + + + ImportCsvDialog + + + Import CSV file + Импортировать файл в формате CSV + + + + Table na&me + &Имя таблицы + + + + &Column names in first line + И&мена столбцов в первой строке + + + + Field &separator + &Разделитель полей + + + + , + + + + + ; + + + + + + Tab + Табуляция + + + + | + + + + + Other + Другой + + + + &Quote character + &Символ кавычки + + + + + Other (printable) + + + + + + Other (code) + + + + + " + + + + + ' + + + + + &Encoding + &Кодировка + + + + UTF-8 + + + + + UTF-16 + + + + + ISO-8859-1 + + + + + Trim fields? + Обрезать поля? + + + + Separate tables + Отдельные таблицы + + + + Advanced + Дополнительно + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + При импорте пустого значения из файла CSV в существующую таблицу для столбца с указанным значением по умолчанию оно будет вставлено. Активируйте эту опцию, чтобы вместо этого вставить пустое значение. + + + + Ignore default &values + Игнорировать значение &по-умолчанию + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + Активируйте эту опцию чтобы прекратить импорт при попытке импорта пустого значения в NOT NULL колонку без значения по-умолчанию. + + + + Fail on missing values + Ошибка при отсутствии значений + + + + Disable data type detection + Отключить определение типа данных + + + + Disable the automatic data type detection when creating a new table. + Отключить автоматическое определение типа при создании новой таблицы. + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + + + + + Abort import + + + + + Ignore row + + + + + Replace existing row + + + + + Conflict strategy + + + + + + Deselect All + Отменить Выбор + + + + Match Similar + Найти Совпадения + + + + Select All + Выбрать Все + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + Уже существует таблица с именем '%1' и импорт в существующую таблицу возможен, только если число столбцов совпадает. + + + + There is already a table named '%1'. Do you want to import the data into it? + Уже существует таблица с именем '%1'. Вы хотите импортировать данные в нее? + + + + Creating restore point failed: %1 + Ошибка сознания точки восстановления: %1 + + + + Creating the table failed: %1 + Ошибка создания таблицы: %1 + + + + importing CSV + импортирование CSV + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + Импорт файла '%1' занял %2мс. Из них %3мс было потрачено в функции строки. + + + + Inserting row failed: %1 + Ошибка вставки строки: %1 + + + + MainWindow + + + DB Browser for SQLite + Обозреватель для SQLite + + + + toolBar1 + панельИнструментов1 + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + Предупреждение: эта прагма не читается, и это значение было выведено. Применение прагмы может перезаписать переопределенный LIKE, предоставляемый расширением SQLite. + + + + &Tools + &Инструменты + + + + Error Log + + + + + This button clears the contents of the SQL logs + Эта кнопка очищает содержимое журналов SQL + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + Эта панель позволяет вам просматривать журнал всех SQL-команд, выданных приложением или вами + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + Это структура открытой БД. +Вы можете перетащить несколько имен объектов из столбца "Имя" и отбросить их в редактор SQL, и вы можете настроить свойства сброшенных имен с помощью контекстного меню. Это поможет вам при составлении SQL-инструкций. +Вы можете перетаскивать операторы SQL из столбца "Схема" и переносить их в редактор SQL или в другие приложения. + + + + + + Project Toolbar + Панель Инструментов Проекта + + + + Extra DB toolbar + Дополнительная Панель Инструментов БД + + + + + + Close the current database file + Закрыть файл текущей БД + + + + Ctrl+F4 + + + + + &About + О &программе + + + + This button opens a new tab for the SQL editor + Эта кнопка открывает новую вкладку для редактора SQL + + + + Execute all/selected SQL + Выполнить все/выбранный SQL + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + Эта кнопка выполняет текущие выбранные операторы SQL. Если в текстовом редакторе ничего не выбрано , все инструкции SQL выполняются. + + + + &Load Extension... + &Загрузить расширение... + + + + Execute line + + + + + This button executes the SQL statement present in the current editor line + Эта кнопка выполняет оператор SQL, присутствующий в текущей строке редактора + + + + &Wiki + &Вики + + + + F1 + + + + + Bug &Report... + Баг &репорт... + + + + Feature Re&quest... + Запросить &функцию... + + + + Web&site + &Веб-сайт + + + + &Donate on Patreon... + Сделать &пожертвование в Patreon... + + + + Open &Project... + Открыть &проект... + + + + &Attach Database... + &Прикрепить БД... + + + + + Add another database file to the current database connection + Добавить другой файл БД в текущее соединение + + + + This button lets you add another database file to the current database connection + Эта кнопка позволяет добавить другой файл БД в текущее соединение с БД + + + + &Set Encryption... + Назначитть &шифрование... + + + + This button saves the content of the current SQL editor tab to a file + Эта кнопка сохраняет содержимое текущей вкладки редактора SQL в файл + + + + SQLCipher &FAQ + + + + + Table(&s) to JSON... + Таблицы в файл &JSON... + + + + Open Data&base Read Only... + Открыть БД &только для чтения... + + + + Ctrl+Shift+O + + + + + Save results + Сохранить результаты + + + + Save the results view + Сохранить результаты + + + + This button lets you save the results of the last executed query + Эта кнопка позволяет сохранить результаты последнего выполненного запроса + + + + + Find text in SQL editor + Найти текст в редакторе SQL + + + + Find + + + + + This button opens the search bar of the editor + Эта кнопка открывает панель поиска редактора + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + Найти или заменить текст в редакторе SQL + + + + Find or replace + + + + + This button opens the find/replace dialog for the current editor tab + Эта кнопка открывает диалог поиска/замены для текущей вкладки редактора + + + + Ctrl+H + + + + + Export to &CSV + Экспортировать в &CSV + + + + Save as &view + Сохранить как &представление + + + + Save as view + Сохранить как представление + + + + Shows or hides the Project toolbar. + Показывает или скрывает панель инструментов Проекта. + + + + Extra DB Toolbar + Дополнительная Панель Инструментов БД + + + + Open SQL file(s) + + + + + This button opens files containing SQL statements and loads them in new editor tabs + + + + + This button lets you open a DB Browser for SQLite project file + + + + + New In-&Memory Database + Новая БД в &Памяти + + + + Drag && Drop Qualified Names + Квалифицированные имена при перетакскивании + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + Квалифицированные имена (например, "Table"."Field") при перетаскивании объектов в редактор + + + + Drag && Drop Enquoted Names + Экранированные имена при перетаскивании + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + Экранировать имена идентификаторов (например, "Table1"), когда перетаскиваются объекты в редактор + + + + &Integrity Check + Проверка &Целостности + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + Выполняет прагму integrity_check для открытой БД и возвращает результаты во вкладке "SQL". Эта прагма выполняет проверку целостности всей базы данных. + + + + &Foreign-Key Check + Проверка &Внешних ключей + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + Запускает прагму foreign_key_check для открытой БД и возвращает результаты во вкладке "SQL" + + + + &Quick Integrity Check + &Быстрая Проверка Целостности + + + + Run a quick integrity check over the open DB + Запуск быстрой проверки целостности для открытый БД + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + Запускает прагму quick_check для открытой БД и возвращает результаты во вкладке "SQL". Эта команда выполняет большую часть проверки PRAGMA integrity_check, но работает намного быстрее. + + + + &Optimize + &Оптимизация + + + + Attempt to optimize the database + Попытка оптимизации БД + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + Выполняет прагму optimize для открытой БД. Эта прагма может выполнять оптимизацию, которая улучшит производительность будущих запросов. + + + + + Print + Печать + + + + Print text from current SQL editor tab + Печать текста изтекущей вкладки редактора SQL + + + + Open a dialog for printing the text in the current SQL editor tab + Открывает диалоговое окно для печати текста из текущей вкладки редактора SQL + + + + Print the structure of the opened database + Печать структуры открытой БД + + + + Open a dialog for printing the structure of the opened database + Открывает диалоговое окно для печати структуры текущей БД + + + + Un/comment block of SQL code + + + + + Un/comment block + + + + + Comment or uncomment current line or selected block of code + + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + + + + + Ctrl+/ + + + + + Stop SQL execution + + + + + Stop execution + + + + + Stop the currently running SQL script + + + + + Browse Table + + + + + &Save Project As... + + + + + + + Save the project in a file selected in a dialog + + + + + Save A&ll + + + + + + + Save DB file, project file and opened SQL files + + + + + Ctrl+Shift+S + + + + + &File + &Файл + + + + &Import + &Импорт + + + + &Export + &Экспорт + + + + &Edit + &Редактирование + + + + &View + &Вид + + + + &Help + &Справка + + + + DB Toolbar + Панель инструментов БД + + + + Edit Database &Cell + Редактирование &ячейки БД + + + + DB Sche&ma + Схе&ма БД + + + + &Remote + &Удаленный сервер + + + + + Execute current line + Выполнить текущую строку + + + + Shift+F5 + + + + + Sa&ve Project + &Сохранить проект + + + + Open an existing database file in read only mode + Открыть существующий файл базы данных в режиме только для чтения + + + + Opens the SQLCipher FAQ in a browser window + Открыть SQLCiphier FAQ в браузере + + + + Export one or more table(s) to a JSON file + Экспортировать таблицы в JSON файл + + + + + Save SQL file as + Сохранить файл SQL как + + + + &Browse Table + Пр&осмотр данных + + + + User + Пользователем + + + + Application + Приложением + + + + &Clear + О&чистить + + + + &New Database... + &Новая база данных... + + + + + Create a new database file + Создать новый файл базы данных + + + + This option is used to create a new database file. + Эта опция используется, чтобы создать новый файл базы данных. + + + + Ctrl+N + + + + + + &Open Database... + &Открыть базу данных... + + + + + + + + Open an existing database file + Открыть существующий файл базы данных + + + + + + This option is used to open an existing database file. + Эта опция используется, чтобы открыть существующий файл базы данных. + + + + Ctrl+O + + + + + &Close Database + &Закрыть базу данных + + + + This button closes the connection to the currently open database file + Эта кнопка закрывает соединение с текущим файлом БД + + + + + Ctrl+W + + + + + + Revert database to last saved state + Вернуть базу данных в последнее сохранённое состояние + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + Эта опция используется, чтобы вернуть текущий файл базы данных в его последнее сохранённое состояние. Все изменения, сделаные с последней операции сохранения теряются. + + + + + Write changes to the database file + Записать изменения в файл базы данных + + + + This option is used to save changes to the database file. + Эта опция используется, чтобы сохранить изменения в файле базы данных. + + + + Ctrl+S + + + + + Compact &Database... + &Уплотнить базу данных... + + + + Compact the database file, removing space wasted by deleted records + Уплотнить базу данных, удаляя пространство, занимаемое удалёнными записями + + + + + Compact the database file, removing space wasted by deleted records. + Уплотнить базу данных, удаляя пространство, занимаемое удалёнными записями. + + + + E&xit + &Выход + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + Импортировать данные из текстового файла sql в новую или существующую базу данных. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + Эта опция позволяет импортировать данные из текстового файла sql в новую или существующую базу данных. Файл SQL может быть создан на большинстве движков баз данных, включая MySQL и PostgreSQL. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Открыть мастер, который позволяет импортировать данные из файла CSV в таблицу базы данных. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + Открыть мастер, который позволяет импортировать данные из файла CSV в таблицу базы данных. Файлы CSV могут быть созданы в большинстве приложений баз данных и электронных таблиц. + + + + Export a database to a .sql dump text file. + Экспортировать базу данных в текстовый файл .sql. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + Эта опция позволяет экспортировать базу данных в текстовый файл .sql. Файлы SQL содержат все данные, необходимые для создания базы данных в большистве движков баз данных, включая MySQL и PostgreSQL. + + + + Export a database table as a comma separated text file. + Экспортировать таблицу базы данных как CSV текстовый файл. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + Экспортировать таблицу базы данных как CSV текстовый файл, готовый для импортирования в другие базы данных или приложения электронных таблиц. + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + Открыть мастер создания таблиц, где возможно определить имя и поля для новой таблиы в базе данных + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + Открыть мастер удаления таблицы, где можно выбрать таблицу базы данных для удаления. + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + Открыть мастер изменения таблицы, где возможно переименовать существующую таблиц. Можно добавить или удалить поля таблицы, так же изменять имена полей и типы. + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + Открыть мастер создания интекса, в котором можно определить новый индекс для существующей таблиц базы данных. + + + + &Preferences... + &Настройки... + + + + + Open the preferences window. + Открыть окно настроек. + + + + &DB Toolbar + &Панель инструментов БД + + + + Shows or hides the Database toolbar. + Показать или скрыть панель инструментов База данных. + + + + Shift+F1 + + + + + &Recently opened + &Недавно открываемые + + + + Open &tab + Открыть &вкладку + + + + Ctrl+T + + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Структура БД + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + Это структура открытой БД. +Вы можете перетаскивать операторы SQL из строки "объект" и переносить их в другие приложения или в другой экземпляр "Обозреватель для SQLite". + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Данные + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Прагмы + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + SQL + + + + SQL &Log + &Журнал SQL + + + + Show S&QL submitted by + По&казывать SQL, выполненный + + + + &Plot + &График + + + + &Revert Changes + &Отменить изменения + + + + &Write Changes + &Записать изменения + + + + &Database from SQL file... + &База данных из файла SQL... + + + + &Table from CSV file... + &Таблицы из файла CSV... + + + + &Database to SQL file... + Базу &данных в файл SQL... + + + + &Table(s) as CSV file... + &Таблицы в файл CSV... + + + + &Create Table... + &Создать таблицу... + + + + &Delete Table... + &Удалить таблицу... + + + + &Modify Table... + &Изменить таблицу... + + + + Create &Index... + Создать и&ндекс... + + + + W&hat's This? + Что &это такое? + + + + &Execute SQL + В&ыполнить код SQL + + + + + + Save SQL file + Сохранить файл SQL + + + + Ctrl+E + + + + + Export as CSV file + Экспортировать в файл CSV + + + + Export table as comma separated values file + Экспортировать таблицу как CSV файл + + + + + Save the current session to a file + Сохранить текущее состояние в файл + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + + + + + + Load a working session from a file + Загрузить рабочее состояние из файла + + + + Copy Create statement + Копировать CREATE выражение + + + + Copy the CREATE statement of the item to the clipboard + Копировать CREATE выражение элемента в буффер обмена + + + + Ctrl+Return + + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Reset Window Layout + + + + + Alt+0 + + + + + The database is currenctly busy. + + + + + Click here to interrupt the currently running query. + + + + + Encrypted + Зашифровано + + + + Read only + Только для чтения + + + + Database file is read only. Editing the database is disabled. + База данных только для чтения. Редактирование запрещено. + + + + Database encoding + Кодировка базы данных + + + + Database is encrypted using SQLCipher + База данных зашифрована с использованием SQLCipher + + + + + Choose a database file + Выбрать файл базы данных + + + + Could not open database file. +Reason: %1 + Не удалось открыть файл базы данных. +Причина:%1 + + + + + + Choose a filename to save under + Выбрать имя, под которым сохранить данные + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Вышла новая версия Обозревателя для SQLite (%1.%2.%3).<br/><br/>Она доступна для скачивания по адресу <a href='%4'>%4</a>. + + + + DB Browser for SQLite project file (*.sqbpro) + Файл проекта Обозревателя для SQLite (*.sqbpro) + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + Ошибка при сохранении файла базы данных. Это означает, что не все изменения в базе данных были сохранены. Сначала вам необходимо разрешить следующую ошибку. + +%1 + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + Отменить все изменения, сделанные в файле базы данных '%1' после последнего сохранения? + + + + Choose a file to import + Выберать файл для импорта + + + + Text files(*.sql *.txt);;All files(*) + Текстовые файлы(*.sql *.txt);;Все файлы(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + Создать новый файл базы данных, чтобы сохранить импортированные данные? +Если ответить Нет, будет выполнена попытка импортировать данные файла SQL в текущую базу данных. + + + + Window Layout + + + + + Simplify Window Layout + + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + + + + + Dock Windows at Left Side + + + + + Dock Windows at Top + + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + + + + + Do you want to save the changes made to the project file '%1'? + + + + + Edit View %1 + + + + + Edit Trigger %1 + + + + + File %1 already exists. Please choose a different name. + Файл %1 уже существует. Выберите другое имя. + + + + Error importing data: %1 + Ошибка импортирования данных: %1 + + + + Import completed. + Импорт завершён. + + + + Delete View + Удалить представление + + + + Modify View + Модифицировать представление + + + + Delete Trigger + Удалить триггер + + + + Modify Trigger + Модифицировать триггер + + + + Delete Index + Удалить индекс + + + + Opened '%1' in read-only mode from recent file list + + + + + Opened '%1' from recent file list + + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + + + + + Open Database or Project + + + + + Attach Database... + + + + + Import CSV file(s)... + + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + + + + + + + + Do you want to save the changes made to SQL tabs in a new project file? + + + + + Do you want to save the changes made to the SQL file %1? + + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + + + + + Could not find resource file: %1 + + + + + Choose a project file to open + Выберите файл проекта для открытия + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + Этот файл проекта использует старый формат файла, потому что он был создан с использованием DB Browser для SQLite версии 3.10 или ниже. Загрузка этого формата по-прежнему полностью поддерживается, но мы советуем вам преобразовать все ваши файлы проекта в новый формат файла, поскольку поддержка более старых форматов может быть удалена в какой-то момент в будущем. Вы можете конвертировать ваши файлы, просто открывая и повторно сохраняя их. + + + + Could not open project file for writing. +Reason: %1 + + + + + Busy (%1) + + + + + Error checking foreign keys after table modification. The changes will be reverted. + Ошибка проверки внешних ключей после изменения таблицы. Изменения будут отменены. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + Эта таблица не прошла проверку внешнего ключа. <br/> Вы должны запустить "Инструменты | Проверка внешнего ключа"и исправить сообщенные проблемы. + + + + Execution finished with errors. + + + + + Execution finished without errors. + + + + + + Delete Table + Удалить таблицу + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + Установка значений PRAGMA завершит текущую транзакцию. Установить значения? + + + + In-Memory database + БД в памяти + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + Вы действительно хотите удалить таблицу '%1'? +Все данные, связанные с таблицей, будут потеряны. + + + + Are you sure you want to delete the view '%1'? + Вы действительно хотите удалить представление '%1'? + + + + Are you sure you want to delete the trigger '%1'? + Вы действительно хотите удалить триггер '%1'? + + + + Are you sure you want to delete the index '%1'? + Вы действительно хотите удалить индекс '%1'? + + + + Error: could not delete the table. + Ошибка: не удалось удалить таблицу. + + + + Error: could not delete the view. + Ошибка: не удалось удалить представление. + + + + Error: could not delete the trigger. + Ошибка: не удалось удалить триггер. + + + + Error: could not delete the index. + Ошибка: не удалось удалить индекс. + + + + Message from database engine: +%1 + Сообщение от СУБД: +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + Для редактирования таблицы необходимо сохранить все ожидающие изменения сейчас. +Вы действительно хотите сохранить БД? + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + + + + + -- EXECUTING SELECTION IN '%1' +-- + -- ВЫПОЛНЕНИЕ ВЫБОРКИ В '%1' +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- ВЫПОЛНЕНИЕ СТРОКИ В '%1' +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- ВЫПОЛНЕНИЕ ВСЕ В '%1' +-- + + + + + At line %1: + + + + + Result: %1 + + + + + Result: %2 + + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + Установка значений PRAGMA или вакуумирования приведет к фиксации текущей транзакции. +Уверены ли вы? + + + + This action will open a new SQL tab with the following statements for you to edit and run: + + + + + Rename Tab + + + + + Duplicate Tab + + + + + Close Tab + + + + + Opening '%1'... + + + + + There was an error opening '%1'... + + + + + Value is not a valid URL or filename: %1 + + + + + %1 rows returned in %2ms + %1 строк возвращено за %2мс + + + + Choose text files + Выберите текстовые файлы + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + Импорт завершен. Нарушены некоторые ограничения внешних ключей. Пожалуйста, исправьте их перед сохранением. + + + + Modify Index + Модифицировать Индекс + + + + Modify Table + Модифицировать Таблицу + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + + + + + Select SQL file to open + Выбрать файл SQL для октрытия + + + + Select file name + Выбрать имя файла + + + + Select extension file + Выбрать расширение файла + + + + Extension successfully loaded. + Расширение успешно загружено. + + + + Error loading extension: %1 + Ошибка загрузки расширения: %1 + + + + + Don't show again + Не показывать снова + + + + New version available. + Доступна новая версия. + + + + Project saved to file '%1' + + + + + Collation needed! Proceed? + Нужно выполнить сопоставление! Продолжить? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + Таблица в базе данных требует выполнения специальной функции сопоставления '%1'. +Если вы продолжите, то возможна порча вашей базы данных. +Создайте резервную копию! + + + + creating collation + + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + Задайте новое имя для вкладки SQL. Используйте символ '&&', чтобы разрешить использование следующего символа в качестве сочетания клавиш. + + + + Please specify the view name + Укажите имя представления + + + + There is already an object with that name. Please choose a different name. + Объект с указанным именем уже существует. Выберите другое имя. + + + + View successfully created. + Представление успешно создано. + + + + Error creating view: %1 + Ошибка создания представления: %1 + + + + This action will open a new SQL tab for running: + Это действие откроет новую вкладку SQL для запуска: + + + + Press Help for opening the corresponding SQLite reference page. + Нажмите "Справка" для открытия соответствующей справочной страницы SQLite. + + + + NullLineEdit + + + Set to NULL + Установить в NULL + + + + Alt+Del + + + + + PlotDock + + + Plot + График + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>На этой панели отображается список столбцов текущей просматриваемой таблицы или только что выполненного запроса. Вы можете выбрать столбцы, которые вы хотите использовать в качестве оси X или Y для графика ниже. В таблице показан тип обнаруженной оси, который повлияет на итоговый график. Для оси Y вы можете выбирать только числовые столбцы, но для оси X вы можете выбрать:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Дата/Время</span>: строки с форматом &quot;гггг-ММ-дд чч:мм:сс&quot; или &quot;гггг-ММ-ддTчч:мм:сс&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Дата</span>: строки с форматом &quot;гггг-ММ-дд&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Время</span>: строки с форматом &quot;чч:мм:сс&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Текст</span>: строки лубого формата. Выбор этого столбца по оси X приведет к созданию графика Баров, со значениями столбцов в качестве меток для баров</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Числа</span>: целочисленные или вещественные значения</li></ul><p>Дважды щелкните по ячейкам Y, вы можете изменить используемый цвет для этого графика.</p></body></html> + + + + Columns + Столбцы + + + + X + X + + + + Y1 + + + + + Y2 + + + + + Axis Type + Ось + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + Вот график, нарисованный, когда вы выбираете значения x и y выше. + +Нажмите на пункты, чтобы выбрать их на графике и в таблице. Ctrl + Click для выбора диапазона точек. + +Используйте колесико мыши для масштабирования и перетаскивания мышью для изменения диапазона осей. + +Выберите метки осей или осей для перетаскивания и масштабирования только в этой ориентации. + + + + Line type: + Линия: + + + + + None + Нет + + + + Line + Обычная + + + + StepLeft + Ступенчатая, слева + + + + StepRight + Ступенчатая, справа + + + + StepCenter + Ступенчатая, по центру + + + + Impulse + Импульс + + + + Point shape: + Отрисовка точек: + + + + Cross + Крест + + + + Plus + Плюс + + + + Circle + Круг + + + + Disc + Диск + + + + Square + Квадрат + + + + Diamond + Ромб + + + + Star + Звезда + + + + Triangle + Треугольник + + + + TriangleInverted + Треугольник перевернутый + + + + CrossSquare + Крест в квадрате + + + + PlusSquare + Плюс в квадрате + + + + CrossCircle + Крест в круге + + + + PlusCircle + Плюс в круге + + + + Peace + Мир + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>Сохранить текущий график...</p><p>Формат файла выбирается расширением (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + Сохранить текущий график... + + + + + Load all data and redraw plot + Загрузить все данные и перерисовать + + + + + + Row # + Строка # + + + + Copy + Копировать + + + + Print... + Печать... + + + + Show legend + Легенда + + + + Stacked bars + + + + + Date/Time + Дата/Время + + + + Date + Дата + + + + Time + Время + + + + + Numeric + Число + + + + Label + Текст + + + + Invalid + Ошибка + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + Загружает все данные и перерисовыет график. +Предупреждение: не все данные были получены из таблицы из-за механизма частичной выборки. + + + + Choose an axis color + Выберите цвет оси + + + + Choose a filename to save under + Выбрать имя файла, под которым сохранить данные + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;Все файлы(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + На этом графике есть кривые, и выбранный стиль линии может применяться только к графикам, отсортированным по X. Либо сортируйте таблицу или запрос по X, чтобы удалить кривые, либо выберите один из стилей, поддерживаемых кривыми: None или Line. + + + + Loading all remaining data for this table took %1ms. + + + + + PreferencesDialog + + + Preferences + Настройки + + + + &Database + &База данных + + + + Database &encoding + &Кодировка базы данных + + + + Open databases with foreign keys enabled. + Открывать базы данных с включенными внешними ключами. + + + + &Foreign keys + &Внешние ключи + + + + + + + + + + + + enabled + включены + + + + Default &location + &Расположение +по умолчанию + + + + + + ... + ... + + + + &General + &Общие + + + + Remember last location + Запоминать последнюю директорию + + + + Always use this location + Всегда открывать указанную + + + + Remember last location for session only + Запоминать последнюю директорию только для сессий + + + + Lan&guage + &Язык + + + + Automatic &updates + &Следить за обновлениями + + + + SQ&L to execute after opening database + + + + + Data &Browser + Обозреватель &данных + + + + Remove line breaks in schema &view + Удалить переводы строки в &схеме данных + + + + Show remote options + Опции "облака" + + + + Prefetch block si&ze + Размер блока &упреждающей выборки + + + + Default field type + Тип данных по умолчанию + + + + Font + Шрифт + + + + &Font + &Шрифт + + + + Content + Содержимое + + + + Symbol limit in cell + Количество символов в ячейке + + + + NULL + + + + + Regular + Обычные + + + + Binary + Двоичные данные + + + + Background + Фон + + + + Filters + Фильтры + + + + Threshold for completion and calculation on selection + + + + + Show images in cell + + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + + + + + Escape character + Символ экранирования + + + + Delay time (&ms) + Время задержки (&мс) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + Время задержки перед применением нового фильтра. Нулевое значение отключает ожидание. + + + + &SQL + Р&едактор SQL + + + + Settings name + Имя настроек + + + + Context + Контекст + + + + Colour + Цвет + + + + Bold + Жирный + + + + Italic + Курсив + + + + Underline + Подчёркивание + + + + Keyword + Ключевое слово + + + + Function + Функция + + + + Table + Таблица + + + + Comment + Комментарий + + + + Identifier + Идентификатор + + + + String + Строка + + + + Current line + Текущая строка + + + + SQL &editor font size + Размер шрифта в &редакторе SQL + + + + Tab size + Размер табуляции + + + + SQL editor &font + &Шрифт в редакторе SQL + + + + Error indicators + Индикаторы ошибок + + + + Hori&zontal tiling + Гори&зонтальное распределение + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + Если данная опция включена, то SQL редактор и результат запроса будут расположены рядом по горизонтали. + + + + Code co&mpletion + Авто&дополнение кода + + + + Toolbar style + Стиль тулбара + + + + + + + + Only display the icon + Только иконки + + + + + + + + Only display the text + Только текст + + + + + + + + The text appears beside the icon + Текст над иконкой + + + + + + + + The text appears under the icon + Текст под иконкой + + + + + + + + Follow the style + Указано в стиле + + + + DB file extensions + Расширения файлов БД + + + + Manage + Настроить + + + + Main Window + + + + + Database Structure + Структура БД + + + + Browse Data + Данные + + + + Execute SQL + SQL + + + + Edit Database Cell + Редактирование ячейки БД + + + + When this value is changed, all the other color preferences are also set to matching colors. + + + + + Follow the desktop style + + + + + Dark style + + + + + Application style + + + + + This sets the font size for all UI elements which do not have their own font size option. + + + + + Font size + + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + Когда отмечено, переносы строк в столбце 'Схема' во вкладке 'Структура базы данных', 'док' и 'печатный результат' удаляются. + + + + Database structure font size + + + + + Font si&ze + Ра&змер шрифта + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + Максимальное количество строк в таблице для включения завершения значения на основе текущих значений в столбце. +Может быть установлено в 0 для отключения завершения. + + + + Field display + Отображение поля + + + + Displayed &text + Отображаемый &текст + + + + + + + + + Click to set this color + + + + + Text color + Цвет текста + + + + Background color + Цвет фона + + + + Preview only (N/A) + Предв. просмотр + + + + Foreground + Передний план + + + + SQL &results font size + &Размер шрифта + + + + &Wrap lines + &Перенос строк + + + + Never + Никогда + + + + At word boundaries + На границах слов + + + + At character boundaries + На границах символов + + + + At whitespace boundaries + На границах пробелов + + + + &Quotes for identifiers + Обравмление &идентификаторов + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + Выберите механизм обрамления, используемый приложением для идентификаторов в коде SQL. + + + + "Double quotes" - Standard SQL (recommended) + "Двойные кавычки" - Cтандартный SQL (рекомендуется) + + + + `Grave accents` - Traditional MySQL quotes + `Гравис` - Традиционные кавычки MySQL + + + + [Square brackets] - Traditional MS SQL Server quotes + [Квадратные скобки] - традиционные кавычки для MS SQL Server + + + + Keywords in &UPPER CASE + Ключевые слова в &ВЕРХНЕМ РЕГИСТРЕ + + + + When set, the SQL keywords are completed in UPPER CASE letters. + Когда отмечено, ключевые слова SQL будут в ВЕРХНЕМ РЕГИСТРЕ. + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + Когда установлено, строки кода SQL, вызвавшие ошибки во время последнего выполнения, подсвечиваются, а виджет результатов указывает на ошибку в фоновом режиме + + + + Close button on tabs + + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + + + + + &Extensions + Р&асширения + + + + Select extensions to load for every database: + Выберите расширения, чтобы загружать их для каждой базы данных: + + + + Add extension + Добавить расширение + + + + Remove extension + Удалить расширение + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>Обозреватель для SQLite позволяет использовать оператор REGEXP 'из коробки'. Но тем <br/>не менее, возможны несколько различных вариантов реализаций данного оператора и вы свободны <br/>в выборе какую именно использовать. Можно отключить нашу реализацию и использовать другую - <br/>путем загрузки соответсвующего расширения. В этом случае требуется перезагрузка приложения.</p></body></html> + + + + Disable Regular Expression extension + Отключить расширение Регулярных Выражений + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + + + + + Allow loading extensions from SQL code + + + + + Remote + Удаленный сервер + + + + CA certificates + СА сертификаты + + + + Proxy + + + + + Configure + + + + + + Subject CN + + + + + Common Name + + + + + Subject O + + + + + Organization + + + + + + Valid from + + + + + + Valid to + + + + + + Serial number + + + + + Your certificates + Ваши сертификаты + + + + File + Файл + + + + Subject Common Name + + + + + Issuer CN + + + + + Issuer Common Name + + + + + Clone databases into + Путь для клонируемых БД + + + + + Choose a directory + Выберать каталог + + + + The language will change after you restart the application. + Язык будет применен после перезапуска приложения. + + + + Select extension file + Выберать файл расширения + + + + Extensions(*.so *.dylib *.dll);;All files(*) + + + + + Import certificate file + Импорт файла сертификата + + + + No certificates found in this file. + В данном файле не найден сертификат. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + Вы действительно хотите удалить этот сертификат? Все данные сертификата будут удалены из настроек приложения! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + Вы действительно хотите удалить все сохраненные настройки? +Все ваши предпочтения будут потеряны, и будут использоваться значения по умолчанию. + + + + ProxyDialog + + + Proxy Configuration + + + + + Pro&xy Type + + + + + Host Na&me + + + + + Port + + + + + Authentication Re&quired + + + + + &User Name + + + + + Password + + + + + None + Нет + + + + System settings + + + + + HTTP + + + + + Socks v5 + + + + + QObject + + + Error importing data + Ошибка импортирования данных + + + + from record number %1 + с записи номер %1 + + + + . +%1 + + + + + Importing CSV file... + Импортирование CSV файла... + + + + Cancel + Отменить + + + + All files (*) + Все файлы (*) + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + Файлы SQLite баз данных (*.db *.sqlite *.sqlite3 *.db3) + + + + Left + + + + + Right + + + + + Center + + + + + Justify + + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + + + + + DB Browser for SQLite Project Files (*.sqbpro) + + + + + SQL Files (*.sql) + + + + + All Files (*) + + + + + Text Files (*.txt) + + + + + Comma-Separated Values Files (*.csv) + + + + + Tab-Separated Values Files (*.tsv) + + + + + Delimiter-Separated Values Files (*.dsv) + + + + + Concordance DAT files (*.dat) + + + + + JSON Files (*.json *.js) + + + + + XML Files (*.xml) + + + + + Binary Files (*.bin *.dat) + + + + + SVG Files (*.svg) + + + + + Hex Dump Files (*.dat *.bin) + + + + + Extensions (*.so *.dylib *.dll) + + + + + RemoteCommitsModel + + + Commit ID + + + + + Message + + + + + Date + Дата + + + + Author + + + + + Size + Размер + + + + Authored and committed by %1 + + + + + Authored by %1, committed by %2 + + + + + RemoteDatabase + + + Error opening local databases list. +%1 + Ошибка при открытии списка локальных БД. +%1 + + + + Error creating local databases list. +%1 + Ошибка при создании списка локальных БД. +%1 + + + + RemoteDock + + + Remote + Удаленный сервер + + + + Identity + ID + + + + Push currently opened database to server + Отправить текущую БД на сервер + + + + DBHub.io + + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + + + + + Local + + + + + Current Database + + + + + Clone + + + + + User + Пользователем + + + + Database + База данных + + + + Branch + Ветка + + + + Commits + + + + + Commits for + + + + + Delete Database + + + + + Delete the local clone of this database + + + + + Open in Web Browser + + + + + Open the web page for the current database in your browser + + + + + Clone from Link + + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + + + + + Refresh + Обновить + + + + Reload all data and update the views + + + + + F5 + + + + + Clone Database + + + + + Open Database + + + + + Open the local copy of this database + + + + + Check out Commit + + + + + Download and open this specific commit + + + + + Check out Latest Commit + + + + + Check out the latest commit of the current branch + + + + + Save Revision to File + + + + + Saves the selected revision of the database to another file + + + + + Upload Database + + + + + Upload this database as a new commit + + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + + + + + Back + + + + + Select an identity to connect + + + + + Public + Публичный + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + + + + + Invalid URL: The host name does not match the host name of the current identity. + + + + + Invalid URL: No branch name specified. + + + + + Invalid URL: No commit ID specified. + + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + + + + + The database has unsaved changes. Are you sure you want to push it before saving? + + + + + The database you are trying to delete is currently opened. Please close it before deleting. + + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + + + + + RemoteLocalFilesModel + + + Name + Имя + + + + Branch + Ветка + + + + Last modified + Изменен + + + + Size + Размер + + + + Commit + Коммит + + + + File + + + + + RemoteModel + + + Name + Имя + + + + Last modified + Изменен + + + + Size + Размер + + + + Commit + Коммит + + + + Size: + + + + + Last Modified: + + + + + Licence: + + + + + Default Branch: + + + + + RemoteNetwork + + + Choose a location to save the file + + + + + Error opening remote file at %1. +%2 + Ошибка открытия файла %1. +%2 + + + + Error: Invalid client certificate specified. + Ошибка: Указан неверный сертификат клиента. + + + + Please enter the passphrase for this client certificate in order to authenticate. + Пожалуйста введите ключевую фразу для этого сертификата клиента. + + + + Cancel + Отменить + + + + Uploading remote database to +%1 + Загружается удаленная БД в +%1 + + + + Downloading remote database from +%1 + Скачивается удаленная БД из +%1 + + + + + Error: The network is not accessible. + Ошибка: сеть недоступна. + + + + Error: Cannot open the file for sending. + Ошибка: не удается открыть файл для отправки. + + + + RemotePushDialog + + + Push database + Отправить БД + + + + Database na&me to push to + &Имя БД + + + + Commit message + Сообщение + + + + Database licence + Лицензия + + + + Public + Публичный + + + + Branch + Ветка + + + + Force push + Принудительно + + + + Username + + + + + Database will be public. Everyone has read access to it. + БД будет публичной. У каждого будет доступ на чтение к ней. + + + + Database will be private. Only you have access to it. + БД будет конфиденциальной. Только у вас будет доступ к ней. + + + + Use with care. This can cause remote commits to be deleted. + Используйте с осторожностью. Это может привести к удалению существующих коммитов. + + + + RunSql + + + Execution aborted by user + Выполнение прервано пользователем + + + + , %1 rows affected + , %1 строк изменено + + + + query executed successfully. Took %1ms%2 + запрос успешно выполнен. Заняло %1мс%2 + + + + executing query + + + + + SelectItemsPopup + + + A&vailable + + + + + Sele&cted + + + + + SqlExecutionArea + + + Form + Форма + + + + Find previous match [Shift+F3] + Найти предыдущее совпадение [Shift+F3] + + + + Find previous match with wrapping + Найти предыдущее совпадение, закольцевав поиск + + + + Shift+F3 + + + + + The found pattern must be a whole word + Найденный шаблон должен быть целым словом + + + + Whole Words + Слова Полностью + + + + Text pattern to find considering the checks in this frame + Шаблон для поиска, учитывая все проверки + + + + Find in editor + Найти в редакторе + + + + The found pattern must match in letter case + У найденного шаблона должен совпадать регистр + + + + Case Sensitive + Учитывать Регистр + + + + Find next match [Enter, F3] + Найти следующее совпдение [Enter, F3] + + + + Find next match with wrapping + Найти следующее совпадение, закольцевав поиск + + + + F3 + + + + + Interpret search pattern as a regular expression + Интерпретировать шаблон поиска как регулярное выражение + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>При проверке шаблон для поиска интерпретируется как регулярное выражение UNIX. <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Узнать больше о Регулярных выражениях на Wikibooks.org</a>.</p></body></html> + + + + Regular Expression + Регулярное выражение + + + + + Close Find Bar + Закрыть Поисковую Панель + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + + + + + Results of the last executed statements + Результаты последних выполненных операторов + + + + This field shows the results and status codes of the last executed statements. + Это поле показывает результаты и коды статусов последних выполненных операторов. + + + + Couldn't read file: %1. + Не удалось прочитать файл:%1. + + + + + Couldn't save file: %1. + Не удалось сохранить файл:%1. + + + + Your changes will be lost when reloading it! + + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) Функция abs(X) возвращает модуль числа аргумента X. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () Функция changes() возвращает количество строк в базе данных, которые были изменены, вставлены или удалены после удачного выполнения INSERT, DELETE или UPDATE. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) Функция char(X1,X2,...,XN) возвращает строку составленную из символов, переданных в качестве аргументов. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) Функция coalesce() возвращает копию первого аргумента не равного NULL иначе если такого нет то возвращается NULL + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) Функция glob(X,Y) эквивалент выражению "Y GLOB X". + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) Функция ifnull() возвращает копию первого аргумента не равного NULL иначе если оба аргумента равны NULL то возвращает NULL. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) Функция instr(X,Y) возвращает количество символов, начиная с которого в строке X найденна подстрока Y или 0 если таковая не обнаружена. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) Функция hex() интерпретирует аргумент как BLOB и возвращает строку в 16-ричной системе счисления с содержимым аргумента. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () Функция last_insert_rowid() возвращает ROWID последней вставленной строки. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) Для строкового значения X, функция length(X) возвращает количество символов (не байт) от начала строки до первого символа '\0'. + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X,Y) Фукнция like() эквивалент выражению "Y LIKE X". + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) Функция like() эквивалент выражения "Y LIKE X ESCAPE Z". + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) Функция lower(X) возвращает копию строки X, в которой все ACSII символы переведены в нижний регистр. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ltrim(X) удаляет символы пробелов слева для строки X. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) Функция ltrim(X,Y) возвращает новую строку путем удаления из строки X слева любого символа из Y. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) Функция max() возвращает аргумент с максимальным значением, либо NULL если хотябы один аргумент равен NULL. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) Функция min() возвращает аргумент с минимальным значением. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) Функция nullif(X,Y) возвращает первый аргумент если аргументы различны либо NULL если они одинаковы. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) Функция printf(FORMAT,...) работает так же как printf() из стандартной библиотеки языка программирования Си. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) Функция quote(X) возвращает измененную строку X, которую можно использовать в SQL выражениях. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () Функция random() возвращает псевдо случайное целочисленное значение из диапозона от-9223372036854775808 до +9223372036854775807. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) Функция randomblob(N) возвращает N-байтный BLOB, содержащий псевдо случайные байты. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) Функция replace(X,Y,Z) возвращает новую строку на основе строки X, заменой всех подстрок Y на Z. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) Функция round(X) округляет X до целого значения. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) Функция round(X,Y) округляет X до Y чисел после запятой справа. + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) rtrim(X) удаляет символы пробела справа строки X. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) Функция rtrim(X,Y) возвращает новую строку путем удаления из строки X справа любого символа из строки Y. + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) Функция soundex(X) возвращает копию строки X, кодированную в формате soundex. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) substr(X,Y) возвращает подстроку из строки X, начиная с Y-го символа. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y,Z) Функция substr(X,Y,Z) возвращает подстроку из строки X, начиная с Y-го символа, длинной Z-символов. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () Функция total_changes() возвращает количество строк измененных с помощью INSERT, UPDATE или DELETE, начиная с того момента как текущее подключение к базе данных было открыто. + + + + (X) trim(X) removes spaces from both ends of X. + (X) trim(X) удаляет пробелы с обоих сторон строки X. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) Функция trim(X,Y) создает новую строку из X, путем удаления с обоих концов символов, которые присутсвуют в строке Y. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) Функция typeof(X) возвращает строку с типом данных выражения X. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) Функция unicode(X) возвращает числовое значение UNICODE кода символа. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) Функция upper(X) возвращает копию строки X, в которой для каждого ASCII символа регистр будет перобразован из нижнего в верхний. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) Функция zeroblob(N) возвращает BLOB размером N байт со значениями 0x00. + + + + + + + (timestring,modifier,modifier,...) + + + + + (format,timestring,modifier,modifier,...) + + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) Функция avg() возвращает среднее значение для всех не равных NULL значений группы. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) Функция count(X) возвращает количество строк, в которых X не равно NULL в группе. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) Функция group_concat() возвращает строку из всех значений X не равных NULL. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) Функция group_concat() возвращает строку из всех значений X не равных NULL. Y - разделитель между значениями X. + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) Аггрегатная функция max() возвращает максимальное значение для X. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) Аггрегатная функция min() возвращает минимальное значение для X. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) Аггрегатные функции sum() и total() возвращают сумму всех не NULL значений для X. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () Число строк в текущем разделе. Строки нумеруются начиная с 1 в порядке, определенном выражением ORDER BY, или иначе в произвольном порядке. + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Функция row_number() возвращает номер первой строки в каждой группе - ранг текущей строки с разрывами. Если не существует выражения ORDER BY, все строки считаются одноранговыми, и эта функция всегда возвращает 1. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Число одноранговой группы текущей строки в своем разделе - ранг текущей строки без пробелов. Разделы нумеруются, начиная с 1 в порядке, определенном выражением ORDER BY в определении окна. Если не существует предложения ORDER BY, все строки считаются одноранговыми, и эта функция всегда возвращает 1. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () Несмотря на имя, эта функция всегда возвращает значение между 0.0 и 1.0, равное (rank-1) / (partition-rows-1), где rank - это значение, возвращаемое встроенной функцией window rank () rows - это общее количество строк в разделе. Если раздел содержит только одну строку, эта функция возвращает 0.0. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () Кумулятивное распределение. Рассчитывается как номер-строки / строки-раздела, где номер-строки - это значение, возвращаемое row_number() для последнего однорангового узла в группе, а строки-раздела- количество строк в разделе. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) Аргумент N обрабатывается как целое число. Эта функция делит раздел на N групп как можно более равномерно и назначает целое число от 1 до N каждой группе в порядке, определенном выражением ORDER BY, или в произвольном порядке, при его отсутствии. При необходимости сначала появляются большие группы. Эта функция возвращает целочисленное значение, присвоенное группе, в которой находится текущая строка. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) Возвращает результат вычисления выражения expr в предыдущей строке раздела. Или, если нет предыдущей строки (поскольку текущая строка является первой), NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr, offset) Если аргумент offset укзан, то он должен быть неотрицательным целым числом. В этом случае возвращаемое значение является результатом вычисления expr в строках смещения строк до текущей строки в разделе. Если смещение равно 0, то expr вычисляется относительно текущей строки. Если перед текущей строкой нет строк смещения строк, возвращается NULL. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr, offset, default) Если задано значение по умолчанию, оно возвращается вместо NULL, если строка, идентифицированная с помощью смещения, не существует. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) Возвращает результат вычисления выражения expr в следующей строке раздела. Или, если нет следующей строки (поскольку последняя строка является последней), NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr, offset) Если аргумент offset указан, то он должен быть неотрицательным целым числом. В этом случае возвращаемое значение является результатом вычисления expr в строках смещения строк после текущей строки в разделе. Если смещение равно 0, то expr вычисляется относительно текущей строки. Если после текущей строки нет строк смещения строки, возвращается NULL. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) Эта встроенная Оконная Функция вычисляет Оконный Кадр для каждой строки так же, как Функция Окна агрегата. Она возвращает значение выполнения выражения expr, оцениваемое по отношению к первой строке в оконном фрейме для каждой строки. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) Эта встроенная Оконная Функция вычисляет Оконный Кадр для каждой строки так же, как Функция Окна агрегата. Она возвращает значение выполнения выражения expr, оцениваемое по отношению к последней строке в оконном фрейме для каждой строки. + (expr) Эта встроенная функция окна вычисляет оконный кадр для каждой строки так же, как функция окна агрегата. Он возвращает значение expr, оцениваемое по последней строке в оконном фрейме для каждой строки. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr, N) Эта встроенная функция окна вычисляет оконный фрейм для каждой строки так же, как функция окна агрегата. Она возвращает значение выполнения выражения expr, оцениваемое по строке N оконного фрейма. Строки нумеруются в рамке окна, начиная с 1 в порядке, определенном выражением ORDER BY, если оно присутствует, или в произвольном порядке в противном случае. Если в разделе нет N-й строки, возвращается NULL. + + + + SqliteTableModel + + + reading rows + читаем строки + + + + loading... + загрузка... + + + + References %1(%2) +Hold %3Shift and click to jump there + Ссылается на %1(%2) +Нажмите %3Shift и клик чтобы переместиться туда + + + + Error changing data: +%1 + Ошибка изменения данных: +%1 + + + + retrieving list of columns + получаем список колонок + + + + Fetching data... + Подгружаем данные... + + + + + Cancel + Отменить + + + + TableBrowser + + + Browse Data + Данные + + + + &Table: + &Таблица: + + + + Select a table to browse data + Выберите таблицу для просмотра данных + + + + Use this list to select a table to be displayed in the database view + Используйте этот список, чтобы выбрать таблицу, которая должна быть отображена в представлении базы данных + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + Это представление таблицы БД. Вы можете выполнить следующие действия: + - Начните писать для редактирования, введя значение. + - Дважды щелкните любую запись, чтобы отредактировать ее содержимое в окне редактора ячеек. + - Alt + Del для обнуления содержимого ячейки в NULL. + - Ctrl + " для дублирования текущей записи. + - Ctrl + ' для копирования значения из ячейки выше. + - Стандартные операции выбора и копирования/вставки. + + + + Text pattern to find considering the checks in this frame + Шаблон для поиска, учитывая все проверки + + + + Find in table + + + + + Find previous match [Shift+F3] + Найти предыдущее совпадение [Shift+F3] + + + + Find previous match with wrapping + Найти предыдущее совпадение, закольцевав поиск + + + + Shift+F3 + + + + + Find next match [Enter, F3] + Найти следующее совпдение [Enter, F3] + + + + Find next match with wrapping + Найти следующее совпадение, закольцевав поиск + + + + F3 + + + + + The found pattern must match in letter case + У найденного шаблона должен совпадать регистр + + + + Case Sensitive + Учитывать Регистр + + + + The found pattern must be a whole word + Найденный шаблон должен быть целым словом + + + + Whole Cell + + + + + Interpret search pattern as a regular expression + Интерпретировать шаблон поиска как регулярное выражение + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>При проверке шаблон для поиска интерпретируется как регулярное выражение UNIX. <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Узнать больше о Регулярных выражениях на Wikibooks.org</a>.</p></body></html> + + + + Regular Expression + Регулярное выражение + + + + + Close Find Bar + Закрыть Поисковую Панель + + + + Text to replace with + + + + + Replace with + + + + + Replace next match + + + + + + Replace + + + + + Replace all matches + + + + + Replace all + + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Прокрутить к началу</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Нажатие этой кнопки переводит к началу в таблице выше.</p></body></html> + + + + |< + + + + + Scroll one page upwards + Страница вверх + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>Нажатие этой кнопки перемещает одну страницу записей вверх в виде таблицы выше.</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 из 0 + + + + Scroll one page downwards + Страница вниз + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>Нажатие этой кнопки перемещает одну страницу записей вниз в виде таблицы выше.</p></body></html> + + + + > + > + + + + Scroll to the end + Прокрутить к концу + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + + + + + >| + + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>Нажмите здесь, чтобы перейти к указанной записи</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>Эта кнопка используется, чтобы переместиться к записи, номер которой указан в области Перейти к</p></body></html> + + + + Go to: + Перейти к: + + + + Enter record number to browse + Введите номер записи для просмотра + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Напечатайте номер записи в этой области и нажмите кнопку Перейти к:, чтобы отобразить запись в представлении базы данных + + + + 1 + 1 + + + + Show rowid column + Отображать колонку rowid + + + + Toggle the visibility of the rowid column + + + + + Unlock view editing + Разблокировать возможность редактирования + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + Разблокировать текущий вид для редактирования. Однако для редактирования вам понадобятся соответствующие триггеры. + + + + Edit display format + Формат отображения + + + + Edit the display format of the data in this column + Редактирование формата отображения для данных из этой колонки + + + + + New Record + Добавить запись + + + + + Insert a new record in the current table + Добавить новую запись в текущую таблицу + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>Эта кнопка создает новую запись в базе данных. Удерживайте кнопку мыши, чтобы открыть всплывающее меню различных параметров:</p><ul><li><span style=" font-weight:600;">Новая Запись</span>: вставляет новую запись со значениями по умолчанию.</li><li><span style=" font-weight:600;">Вставить Значения...</span>: открывает диалог для ввода значений перед тем, как они будут вставленны в БД. Это позволяет вводить значения, назначая различные ограничения. Этот диалог также открывается, если <span style=" font-weight:600;">Новая Запись</span> опция не срабатывает из-за этих ограничений.</li></ul></body></html> + + + + + Delete Record + Удалить запись + + + + Delete the current record + Удалить текущую запись + + + + + This button deletes the record or records currently selected in the table + Эта кнопка удаляет запись или записи, выбранные в настоящее время в таблице + + + + + Insert new record using default values in browsed table + Вставляет новую запись, используя значения по умолчанию в просматриваемой таблице + + + + Insert Values... + Вставить Значения... + + + + + Open a dialog for inserting values in a new record + Открывает диалоговое окно для вставки значений в новую запись + + + + Export to &CSV + Экспортировать в &CSV + + + + + Export the filtered data to CSV + Экспортировать отфильтрованные данные в CSV + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + Эта кнопка экспортирует данные просматриваемой таблицы так как отображается (после обработки фильтрами, форматами отображения и т.д.) в виде файла CSV. + + + + Save as &view + Сохранить как &представление + + + + + Save the current filter, sort column and display formats as a view + Сохранить текущие фильтры, столбецы сортировки и форматы отображания в виде представления + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + Эта кнопка сохраняет текущие настройки просматриваемой таблицы (фильтры, форматы отображения и столбец сортировки) в виде представления SQL, которое вы можете впоследствии просмотреть или использовать в операторах SQL. + + + + Save Table As... + + + + + + Save the table as currently displayed + Сохранить таблицу так как сейчас отображается + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>Это всплывающее меню предоставляет следующие параметры, применяемые к текущей просматриваемой и отфильтрованной таблице:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Экспортировать ввиде CSV: данные просматриваемой таблицы сохраняется так как отображается (после применения фильтров, форматов отображения и порядка колонок) в CSV файл.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Сохранить как вид: эта опция сохраняет настройки текущей отображаемой таблицы (фильтры, форматы отображения и порядок колонок) как SQL вид, который вы позже можете просматривать или использовать в SQL выражениях.</li></ul></body></html> + + + + Hide column(s) + Скрыть колонки + + + + Hide selected column(s) + Скрыть выбранные колонки + + + + Show all columns + Показать все колонки + + + + Show all columns that were hidden + Показать все колонки, которые были скрыты + + + + + Set encoding + Кодировка + + + + Change the encoding of the text in the table cells + Изменение кодировки текста в данной таблице + + + + Set encoding for all tables + Установить кодировку для всех таблиц + + + + Change the default encoding assumed for all tables in the database + Изменить кодировку по умолчанию для всех таблиц в базе данных + + + + Clear Filters + + + + + Clear all filters + Очистить все фильтры + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + Эта кнопка очищает все фильтры, установленные в полях ввода заголовка для текущей просматриваемой таблицы. + + + + Clear Sorting + + + + + Reset the order of rows to the default + + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + + + + + Print + Печать + + + + Print currently browsed table data + Печатать отображаемую таблицу + + + + Print currently browsed table data. Print selection if more than one cell is selected. + Распечатывайте текущие данные таблицы. Выбор печати, если выбрано несколько ячеек. + + + + Ctrl+P + + + + + Refresh + Обновить + + + + Refresh the data in the selected table + Обновить данные в выбранной таблице + + + + This button refreshes the data in the currently selected table. + Эта кнопка обновляет данные выбранной в данный момент таблицы. + + + + F5 + + + + + Find in cells + + + + + Open the find tool bar which allows you to search for values in the table view below. + + + + + + Bold + Жирный + + + + Ctrl+B + + + + + + Italic + Курсив + + + + + Underline + Подчёркивание + + + + Ctrl+U + + + + + + Align Right + + + + + + Align Left + + + + + + Center Horizontally + + + + + + Justify + + + + + + Edit Conditional Formats... + + + + + Edit conditional formats for the current column + + + + + Clear Format + + + + + Clear All Formats + + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + + + + + + Font Color + + + + + + Background Color + + + + + Toggle Format Toolbar + + + + + Show/hide format toolbar + + + + + + This button shows or hides the formatting toolbar of the Data Browser + + + + + Select column + + + + + Ctrl+Space + + + + + Replace text in cells + + + + + Filter in any column + + + + + Ctrl+R + + + + + %n row(s) + + + + + + + + + , %n column(s) + + + + + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + + + + + Conditional formats for "%1" + + + + + determining row count... + определяем количество строк... + + + + %1 - %2 of >= %3 + %1 - %2 из >= %3 + + + + %1 - %2 of %3 + %1 - %2 из %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + Пожалуйста, введите псевдо-первичный ключ, чтобы разрешить редактирование в этом представлении. Это должно быть имя уникального столбца в представлении. + + + + Delete Records + Удалить Записи + + + + Duplicate records + Дублированные записи + + + + Duplicate record + Дубликат записи + + + + Ctrl+" + + + + + Adjust rows to contents + + + + + Error deleting record: +%1 + Ошибка удаления записи: %1 + + + + Please select a record first + Сначала выберите запись + + + + There is no filter set for this table. View will not be created. + Для этой таблицы не установлен фильтр. Представление не будет создано. + + + + Please choose a new encoding for all tables. + Пожалуйста выбирите новую кодировку для всех таблиц. + + + + Please choose a new encoding for this table. + Пожалуйста выбирите новую кодировку для данной таблицы. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Оставьте это поле пустым если хотите чтобы использовалась кодировка по умолчанию. + + + + This encoding is either not valid or not supported. + Неверная кодировка либо она не поддерживается. + + + + %1 replacement(s) made. + + + + + VacuumDialog + + + Compact Database + Не понятно, что лучше "уплотнение" или "сжатие"? + Уплотнение базы данных + + + + Warning: Compacting the database will commit all of your changes. + Предупреждение: Уплотнение базы данных зафиксирует все изменения, которые были сделаны. + + + + Please select the databases to co&mpact: + Выберите объекты для &уплотнения: + + + diff --git a/ConfigFiles/translations/sqlb_tr.qm b/ConfigFiles/translations/sqlb_tr.qm new file mode 100644 index 0000000..21ab22a Binary files /dev/null and b/ConfigFiles/translations/sqlb_tr.qm differ diff --git a/ConfigFiles/translations/sqlb_tr.ts b/ConfigFiles/translations/sqlb_tr.ts new file mode 100644 index 0000000..626a9fb --- /dev/null +++ b/ConfigFiles/translations/sqlb_tr.ts @@ -0,0 +1,7006 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + SQLite DB Browser Hakkında + + + + Version + Versiyon + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html> <head /> <body> <p> DB Browser for SQLite, SQLite veritabanı dosyaları oluşturmak, tasarlamak ve düzenlemek için kullanılan açık kaynak kodlu, ücretsiz bir araçtır. </p> <p> 'Mozilla Kamu Lisansı Sürüm 2' ve 'GNU Genel Kamu Lisansı Sürüm 3 veya üstü' olmak üzere iki lisansa sahiptir. Bu lisansların koşulları çerçevesinde yazılımı düzenleyebilir veya yeniden dağıtabilirsiniz. </p> <p> Detaylar için, lütfen <a href="http://www.gnu.org/licenses/gpl.html" >http://www.gnu.org/licenses/gpl.html</a > ve <a href="https://www.mozilla.org/MPL/2.0/index.txt" >https://www.mozilla.org/MPL/2.0/index.txt</a > adreslerini ziyaret ediniz. </p> <p> Bu yazılım hakkında detaylı bilgi için lütfen internet sitemizi ziyaret ediniz: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a> </p> <p> <span style=" font-size:small;" >Bu yazılım GPL/LGPL lisansına sahip Qt Araç Kitini (<a href="http://qt-project.org/" ><span style=" font-size:small;">http://qt-project.org/</span></a>) kullanmaktadır.</span> <br /> <span style=" font-size:small;">Lisans koşulları ve bilgiler için </span ><a href="http://qt-project.org/doc/qt-5/licensing.html" ><span style=" font-size:small;" >http://qt-project.org/doc/qt-5/licensing.html</span ></a ><span style=" font-size:small;"> adresini ziyaret ediniz.</span > </p> <p> <span style=" font-size:small;" > Bu yazılım ayrıca, Mark James tarafından hazırlanan, 'Creative Commons Attribution 2.5 veya 3.0' lisansına sahip Silk ikon setini kullanmaktadır. <br />Detaylar için </span ><a href="http://www.famfamfam.com/lab/icons/silk/" ><span style=" font-size:small;" >http://www.famfamfam.com/lab/icons/silk/</span ></a ><span style=" font-size:small;"> adresini ziyaret ediniz.</span> </p> </body> </html> + + + + AddRecordDialog + + + Add New Record + Yeni Kayıt Ekle + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + Yeni kayıt için kısıtlamaları göz önüne alarak yeni değerleri giriniz. Kalın vurgulu alanlar zorunludur. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + Değer sütununda, isim sütunuyla belirtilen alan için değer belirtebilirsiniz. Tip sütunu alanın tipini belirtir. Varsayılan değerler NULL ile aynı stilde görüntülenir. + + + + Name + İsim + + + + Type + Tip + + + + Value + Değer + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + Eklenecek değerler. Varsayılan olarak doldurulmuş değerler, değiştirilmedikleri takdirde otomatik olarak ekleneceklerdir. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + Üstteki bölümdeki değerleri değiştirdiğinizde, yeni kaydı eklemek için kullanılacak sorgu burada görüntülenir. Kaydet butonuna basmadan önce manuel olarak bu sorguyu düzenleyebilirsiniz. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html> <head /> <body> <p> <span style=" font-weight:600;">Kaydet</span> butonu yeni kaydı eklemek için ilgili SQL ifadesini veritabanına gönderir. </p> <p> <span style=" font-weight:600;">Varsayılanları Yükle</span> butonu <span style=" font-weight:600;">Değer</span> sütunundakileri varsayılanlarına yükler. </p> <p> <span style=" font-weight:600;">İptal</span> butonu sorguyu çalıştırmadan bu pencereyi kapatır. </p> </body> </html> + + + + Auto-increment + + Otomatik-Artan + + + + + Unique constraint + + Benzersiz kısıtı + + + + + Check constraint: %1 + + Kısıtlamayı kontrol et: %1 + + + + + Foreign key: %1 + + Yabancı anahatar: %1 + + + + + Default value: %1 + + Varsayılan değer: %1 + + + + + Error adding record. Message from database engine: + +%1 + Kayıt eklenirken hata oluştu. Veritabanı motoru mesajı: + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + Girilen bütün değerleri varsayılanlarına döndürmek istediğinize emin misiniz? + + + + Application + + + Possible command line arguments: + Muhtemel komut satırı argümanları: + + + + Usage: %1 [options] [<database>|<project>] + + + + + + -h, --help Show command line options + + + + + -q, --quit Exit application after running scripts + + + + + -s, --sql <file> Execute this SQL file after opening the DB + + + + + -t, --table <table> Browse this table after opening the DB + + + + + -R, --read-only Open database in read-only mode + + + + + -o, --option <group>/<setting>=<value> + + + + + Run application with this setting temporarily set to value + + + + + -O, --save-option <group>/<setting>=<value> + + + + + Run application saving this value for this setting + + + + + -v, --version Display the current version + + + + + <database> Open this SQLite database + + + + + <project> Open this project file (*.sqbpro) + + + + + The -s/--sql option requires an argument + -s/--sql opsiyonu bir argüman gerektirir + + + + The file %1 does not exist + %1 dosyası mevcut değil + + + + The -t/--table option requires an argument + -t/--table opsiyonu bir argüman gerektirir + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + -o/--option ve -O/--save-option opsiyonları grup/ayar=değer formatında bir argüman gerektirir + + + + Invalid option/non-existant file: %1 + Geçersiz seçenek veya mevcut olmayan dosya: %1 + + + + SQLite Version + SQLite Versiyonu + + + + SQLCipher Version %1 (based on SQLite %2) + + + + + DB Browser for SQLite Version %1. + + + + + Built for %1, running on %2 + %1 için derlendi, %2 üzerinde çalışıyor + + + + Qt Version %1 + + + + + CipherDialog + + + SQLCipher encryption + SQLCipher şifrelemesi + + + + &Password + &Parola + + + + &Reenter password + Pa&rolayı tekrar girin + + + + Encr&yption settings + Şifreleme A&yarları + + + + SQLCipher &3 defaults + SQLCipher &3 varsayılanları + + + + SQLCipher &4 defaults + SQLCipher &4 varsayılanları + + + + Custo&m + &Özel + + + + Page si&ze + &Sayfa boyutu + + + + &KDF iterations + &KDF yinelemeleri + + + + HMAC algorithm + HMAC algoritması + + + + KDF algorithm + KDF algoritması + + + + Plaintext Header Size + Düz Metin Üstbilgi Boyutu + + + + Passphrase + Parola + + + + Raw key + Ham anahtar + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + Lütfen veritabanını şifrelemek için anahtar ayarlayın. +Unutmayın, bunun dışında isteğe bağlı yapacağınız herhangi değişikliklerde, veritabanı dosyasını her açtığınızda şifrenizi yeniden girmeniz gerekecektir. +Şifrelemeyi devre dışı bırakmak için parola alanını boş bırakınız. +Şifreleme işlemi biraz zaman alabilir ve bu işlemi yapmadan önce veritabanınızın yedeğini almalısınız! Kaydedilmemiş değişiklikler şifreniz değiştirilmeden önce kaydedilir. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + Lütfen veritabanınızı şifrelemek için kullandığınız anahtarı giriniz. +Bu veritabanı için herhangi bir başka ayar daha yapılmışsa, bu bilgileri de sağlamalısınız. + + + + ColumnDisplayFormatDialog + + + Choose display format + Görüntüleme formatını seçiniz + + + + Display format + Görüntüleme formatı + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + '%1' sütunu için görüntülemeden önce uygulanacak bir görüntüleme formatı seçin. + + + + Default + Varsayılan + + + + Decimal number + Ondalık sayı + + + + Exponent notation + Üslü gösterim + + + + Hex blob + Onaltılık ikili veri + + + + Hex number + Onaltılık sayı + + + + Apple NSDate to date + Apple NSDate tipinden tarih tipine + + + + Java epoch (milliseconds) to date + Java epoch (milisaniye) tipinden tarih tipine + + + + .NET DateTime.Ticks to date + + + + + Julian day to date + Julian day tipinden tarih tipine + + + + Unix epoch to local time + Unix epoch tipinden yerel zaman tipine + + + + Date as dd/mm/yyyy + dd/mm/yyyy tarih formatı + + + + Lower case + Küçük harf + + + + Custom display format must contain a function call applied to %1 + Özel görüntüleme formatı, %1 için uygulanan fonksiyon çağrısı içermelidir + + + + Error in custom display format. Message from database engine: + +%1 + Özel görüntüleme formatınde hata oluştu. Veritabanı motoru mesajı: + +%1 + + + + Custom display format must return only one column but it returned %1. + Özel görüntüleme formatı sadece bir sütun döndürmeli: %1. + + + + Octal number + Sekizlik sayı + + + + Round number + Küsüratsız sayı + + + + Unix epoch to date + Unix epoch tipinden tarih tipine + + + + Upper case + Büyük harf + + + + Windows DATE to date + Windows DATE tipinden tarih tipine + + + + Custom + Özel + + + + CondFormatManager + + + Conditional Format Manager + Koşullu Biçim Yöneticisi + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + Bu iletişim kutusu koşullu biçimler oluşturmaya ve düzenlemeye izin verir. Her hücre stili, hücre verisi için ilk sağlanan koşul tarafından seçilecektir. Koşullu biçimler yukarı ve aşağı taşınabilir, üst sıralardakiler alt sıralardakilere göre önceliklidir. Koşullar için sözdizimi, filtreler ile aynıdır ve boş koşullar tüm hücreler için geçerlidir. + + + + Add new conditional format + Yeni koşullu biçim oluştur + + + + &Add + &Ekle + + + + Remove selected conditional format + Seçilen koşullu biçimi sil + + + + &Remove + &Sil + + + + Move selected conditional format up + Seçilen koşullu biçimi yukarı taşı + + + + Move &up + Y&ukarı taşı + + + + Move selected conditional format down + Seçilen koşullu biçimi aşağı taşı + + + + Move &down + Aşağı &Taşı + + + + Foreground + Ön plan + + + + Text color + Yazı rengi + + + + Background + Arka plan + + + + Background color + Arka plan rengi + + + + Font + Yazı tipi + + + + Size + Boyut + + + + Bold + Kalın + + + + Italic + İtalik + + + + Underline + Altı çizili + + + + Alignment + Hizalama + + + + Condition + Koşul + + + + + Click to select color + Renk seçmek için tıklayın + + + + Are you sure you want to clear all the conditional formats of this field? + Bu alanın tüm koşullu biçimlerini silmek istediğinizden emin misiniz? + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + Lütfen veritabanının ismini erişmek istediğiniz bağlı veritabanının altında belirtin + + + + Invalid file format + Geçersiz dosya formatı + + + + Do you want to save the changes made to the database file %1? + %1 veritabanı dosyasında yaptığınız değişiklikleri kaydetmek istiyor musunuz? + + + + Exporting database to SQL file... + veritabanı, SQL dosyası olarak dışa aktarılıyor... + + + + + Cancel + İptal + + + + Executing SQL... + SQL yürütülüyor... + + + + Action cancelled. + İşlem iptal edildi. + + + + This database has already been attached. Its schema name is '%1'. + Bu veritabanı zaten mevcut ve şemasının ismi '%1'. + + + + Do you really want to close this temporary database? All data will be lost. + Gerçekten geçici veritabanını kapatmak istiyor musunuz? Bütün veriler kaybedilecek. + + + + Database didn't close correctly, probably still busy + Veritabanı doğru bir şekilde kapatılamadı, muhtemelen hâlâ kullanımda + + + + The database is currently busy: + Veritabanı şu anda meşgul: + + + + Do you want to abort that other operation? + Diğer işlemi iptal etmek istiyor musunuz? + + + + + No database file opened + Hiçbir veritabanı dosyası açılmamış + + + + + Error in statement #%1: %2. +Aborting execution%3. + Belirtilen ifadede hata oluştu: #%1: %2 +Yürütme durduruluyor %3. + + + + + and rolling back + ve işlem geri alınıyor + + + + didn't receive any output from %1 + %1 sorgusundan herhangi bir çıktı alınamadı + + + + could not execute command: %1 + komut işletilemedi: %1 + + + + Cannot delete this object + Bu obje silinemiyor + + + + Cannot set data on this object + Bu objeye veri atanamıyor + + + + + A table with the name '%1' already exists in schema '%2'. + '%2' şemasında '%1' isimli tablo zaten mevcut. + + + + No table with name '%1' exists in schema '%2'. + '%2' şeması içerisinde '%1' isminde bir tablo yok. + + + + + Cannot find column %1. + %1 sütunu bulunamadı. + + + + Creating savepoint failed. DB says: %1 + Kayıt noktası oluşturulamadı. Veritabanı mesajı: %1 + + + + Renaming the column failed. DB says: +%1 + Sütun yeniden adlandırılamadı. Veritabanı motoru mesajı: +%1 + + + + + Releasing savepoint failed. DB says: %1 + Kayıt noktası serbest bırakılamadı. Veritabanı motoru mesajı: %1 + + + + Creating new table failed. DB says: %1 + Veri tabanı oluşturulamadı. Veritabanı mesajı: %1 + + + + Copying data to new table failed. DB says: +%1 + Yeni tabloya veri kopyalanamadı. Veritabanı mesajı: +%1 + + + + Deleting old table failed. DB says: %1 + Eski tablolar silinemedi: Veritabanı mesajı: %1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + '%1' tablosu '%2' olarak adlandırılırken hata oluştu. +Veritabanı motoru mesajı: +%3 + + + + could not get list of db objects: %1 + veritabanı objelerinin listesi alınamadı: %1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + Bu tabloyla ilişkili bazı objelerin restore işlemi başarısız. Bu hata büyük olasılıkla sütunların isminin değişimden kaynaklanıyor. SQL sorgusunu elle düzeltmek ve yürütmek isterseniz: + + + + + + could not get list of databases: %1 + veri tabanı listesi alınamadı: %1 + + + + Error loading extension: %1 + Eklenti yüklenirken hata oluştu: %1 + + + + could not get column information + sütun bilgisi alınamadı + + + + Error setting pragma %1 to %2: %3 + Belirtilen pragma ayarlanırken hata oluştu: %1 > %2: %3 + + + + File not found. + Dosya bulunamadı. + + + + DbStructureModel + + + Name + İsim + + + + Object + Obje + + + + Type + Tip + + + + Schema + Şema + + + + Database + Veritabanı + + + + Browsables + Görüntülenebilir olanlar + + + + All + Tümü + + + + Temporary + Geçici + + + + Tables (%1) + Tablolar (%1) + + + + Indices (%1) + İndisler (%1) + + + + Views (%1) + Görünümler (%1) + + + + Triggers (%1) + Tetikleyiciler (%1) + + + + EditDialog + + + Edit database cell + Veritabanı hücresini düzenle + + + + Mode: + Mod: + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + Bu, hücre düzenleyicisi için desteklenen modların listesidir. Geçerli hücrenin verilerini görüntülemek veya düzenlemek için bir mod seçin. + + + + RTL Text + Sağdan Sola Okunan Metin + + + + + Image + Görüntü + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + Düzenleyici modunu otomatik olarak yüklenen veri tipine ayarlar + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + Bu onay kutusu, editör modunun otomatik olarak değiştirilmesini etkinleştirir veya devre dışı bırakır. Bu kutucuk işaretliyken, yeni bir hücre seçildiğinde veya yeni veriler içe aktarıldığında, mod algılanan veri türüne göre ayarlanır. Daha sonra editör modunu manuel olarak değiştirebilirsiniz. Hücreler arasında hareket ederken bu manuel modu korumak isterseniz, kutucuğun işaretini kaldırın. + + + + Auto-switch + Otomatik geçiş + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + Metin editorü modları,otomatik biçimlendirme, metin, JSON veya XML verilerinizi vurgulu olarak düzenlemenizi ve kayıttan önce formatlamanızı ve doğrulamanızı sağlar . + +Hatalar, kırmızı dalgalı alt çizgiyle belirtilir. + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + Qt editör, varsayılan metin editörü tarafından desteklenmeyen sağdan sola okunan dillde yazılmış betikleri için kullanılır. + + + + Open preview dialog for printing the data currently stored in the cell + Şu anda hücrede saklanan veriyi yazdırmak için önizleme penceresini aç + + + + Auto-format: pretty print on loading, compact on saving. + Otomatik format: yüklenirken aşamasında kaliteli baskı, kayıt açısından da tasarrufludur. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + Etkinleştirildiğinde, otomatik biçimlendirme özelliği yükleme sırasında verileri biçimlendirir, metni satırlara böler ve maksimum okunabilirlik için girintili yapar. Veri kaydederken otomatik biçimlendirme özelliği, satır sonu karakterlerini ve gereksiz boşlukları kaldırarak verileri sıkıştırır. + + + + Word Wrap + Kelime Kaydırma + + + + Wrap lines on word boundaries + Kelime sınırlarında kelimeyi kaydırır + + + + + Open in default application or browser + Varsayılan program veya görüntüleyicide aç + + + + Open in application + Uygualamada aç + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + Değe,r bir dosya veya URL olarak yorumlanır ve varsayılan uygulamada veya web tarayıcısında açılır. + + + + Save file reference... + Dosya referansını kaydet... + + + + Save reference to file + Referansı dosyaya kaydet + + + + + Open in external application + Harici bir programda aç + + + + Autoformat + Otomatik format + + + + &Export... + D&ışa aktar... + + + + + &Import... + &İçe aktar... + + + + + Import from file + Dosyadan içe aktar + + + + + Opens a file dialog used to import any kind of data to this database cell. + Veritabanı hücresine herhangi bir tipte veri yüklemek için bir dosya iletişim kutusu açar. + + + + Export to file + Dosyaya aktar + + + + Opens a file dialog used to export the contents of this database cell to a file. + Veritabanı hücresinin içeriğini bir dosyaya aktarmak için kullanılan bir dosya iletişim kutusu açar. + + + + + Print... + Yazdır... + + + + Open preview dialog for printing displayed image + Görüntülenen resmi yazdırmak için önizleme penceresini aç + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + Görüntülenen yazıyı yazdırmak için önizleme penceresini aç + + + + Copy Hex and ASCII + Onaltılık ve ASCII değerini kopyala + + + + Copy selected hexadecimal and ASCII columns to the clipboard + Seçilen onaltılık ve ASCII sütunlarını panoya kopyala + + + + Ctrl+Shift+C + + + + + Set as &NULL + &NULL olarak ayarla + + + + Apply data to cell + Veriyi hücreye uygula + + + + This button saves the changes performed in the cell editor to the database cell. + Bu buton, hücre editöründe yapılan değişiklikleri veritabanı hücresine kaydeder. + + + + Apply + Uygula + + + + Text + Metin + + + + Binary + İkili + + + + Erases the contents of the cell + Hücre içeriğini siler + + + + This area displays information about the data present in this database cell + Bu alan veritabanı hücresinin içindeki içerik hakkında bilgileri görüntüler + + + + Type of data currently in cell + Şu anda hücrenin içinde bulunan veri tipi + + + + Size of data currently in table + Şuan da tablonun içinde bulunan verinin boyutu + + + + Choose a filename to export data + Veriyi dışa aktarmak için dosya ismi seçiniz + + + + + Image data can't be viewed in this mode. + Imaj verisi bu modda görüntülenemiyor. + + + + + Try switching to Image or Binary mode. + Görüntü veya İkili mod arasında geçiş yapın. + + + + + Binary data can't be viewed in this mode. + İkili veri bu modda görüntülenemiyor. + + + + + Try switching to Binary mode. + İkili veri moduna geçmeyi deneyin. + + + + + Image files (%1) + Görüntü dosyaları (%1) + + + + Binary files (*.bin) + İkili dosyalar (*.bin) + + + + Choose a file to import + İçe aktarmak için dosya seçiniz + + + + %1 Image + %1 imajı + + + + Invalid data for this mode + Bu mod için geçersiz veri + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + Hücre geçersiz %1 verisi içeriyor. Sebep: %2. Bu değişikliği hücreye gerçekten uygulamak istiyor musunuz? + + + + Type of data currently in cell: %1 Image + Şu anda hücrenin içinde bulunan veri tipi: %1 Imajı + + + + %1x%2 pixel(s) + %1x%2 piksel + + + + Type of data currently in cell: NULL + Şu anda hücrenin içinde bulunan veri tipi: NULL + + + + Type of data currently in cell: Valid JSON + Şu anda hücrenin içinde bulunan veri tipi: Doğrulanmış JSON + + + + Couldn't save file: %1. + Dosya kaydedilemedi: %1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + Veriler geçici bir dosyaya kaydedildi ve varsayılan uygulama ile açıldı. Artık dosyayı düzenleyebilir ve hazır olduğunuzda, kaydedilen yeni verileri hücre editörüne uygulayabilir veya değişiklikleri iptal edebilirsiniz. + + + + + Type of data currently in cell: Text / Numeric + Şuan da hücresinin içinde bulunan verinin tipi: Metin / Nümerik + + + + + + %n character(s) + + %n karakter + + + + + Type of data currently in cell: Binary + Şuan da hücresinin içinde bulunan verinin tipi: İkili Veri + + + + + %n byte(s) + + %n bayt + + + + + EditIndexDialog + + + &Name + &İsim + + + + Order + Sırala + + + + &Table + &Tablo + + + + Edit Index Schema + Index Şemasını Düzenle + + + + &Unique + Benzersi&z + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + Index'i tablonun yalnızca bir bölümüyle sınırlamak için, burada tablonun dizine alınması gereken kısmını seçen bir WHERE deyimi belirtebilirsiniz + + + + Partial inde&x clause + Kısmi inde&x hükmü + + + + Colu&mns + Sütu&nlar + + + + Table column + Tablo sütunu + + + + Type + Tip + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + Index için yeni bir ifade sütunu ekleyin. İfade sütunları, sütun adları değil SQL ifadesi içerir. + + + + Index column + Index sütunu + + + + Deleting the old index failed: +%1 + Eski index silinemedi: +%1 + + + + Creating the index failed: +%1 + İndeks oluşturma hatası: %1 + + + + EditTableDialog + + + Edit table definition + Tablo tanımını düzenle + + + + Table + Tablo + + + + Advanced + Gelişmiş + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + Tabloyu satır ID'si olmadan ayarlayın. Bu ayar için, Tamsayı(Integer) tipinde otomatik arttır özelliği olmayan ve birincil anahtar olarak ayarlanmış bir alan gerekli. + + + + Without Rowid + Satır ID(Rowid) Kullanma + + + + Database sche&ma + Veritabanı &Şeması + + + + Fields + Alanlar + + + + Add + Ekle + + + + Remove + Sil + + + + Move to top + En yukarı taşı + + + + Move up + Yukarı taşı + + + + Move down + Aşağı taşı + + + + Move to bottom + En aşağı taşı + + + + + Name + İsim + + + + + Type + Tip + + + + NN + NN + + + + Not null + NULL Olamaz + + + + PK + Birincil Anahtar + + + + Primary key + Birincil Anahtar + + + + AI + Otomatik Arttırma + + + + Autoincrement + Otomatik Arttırma + + + + U + Benzersiz + + + + + + Unique + Benzersiz + + + + Default + Varsayılan + + + + Default value + Varsayılan değer + + + + + + Check + Kontrol + + + + Check constraint + Kısıtlama Kontrol + + + + Collation + Karşılaştırma + + + + + + Foreign Key + Yabancı Anahtar + + + + Constraints + Kısıtlar + + + + Add constraint + Kısıt ekle + + + + Remove constraint + Kısıtı kaldır + + + + Columns + Sütunlar + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html> <head /> <body> <p> <span style=" font-weight:600; color:#ff0000;">Uyarı: </span>Bu tablo tanımında ayrıştırıcının tam olarak anlayamadığı bir şey var. Bu tabloyu değiştirmek ve kaydetmek sorunlara neden olabilir. </p> </body> </html> + + + + + Primary Key + Birincil Anahtar + + + + Add a primary key constraint + Birinci anahtar kısıtlaması ekle + + + + Add a foreign key constraint + Yabancı anahtar kısıtı ekle + + + + Add a unique constraint + Benzersiz kısıtı ekle + + + + Add a check constraint + Kontrol kısıtı ekle + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + Her tabloda yalnızca bir birincil anahtar bulunabilir. Mevcut birincil anahtarı düzenlemeyi denedin. + + + + Error creating table. Message from database engine: +%1 + Tablo oluşturma hatası. veritabanı motorunun mesajı: %1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Bu isme sahip alan zaten var. Lütfen bu alan için farklı bir isim kullanın veya aynı isme sahip alanı yeniden adlandırın. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + Tablonuzun en az bir satırında boş bırakılmış alan var. Bu sebeple bu özelliği etkinleştirmek imkansız. Lütfen ilk önce tablonuzdaki veriyi değiştirin. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + Tablonuzun en az bir satırında tamsayı dışında değer içeren alan var. Bu sebeğle otomatik arttır özelliğini etkinleştirmek imkansız. Lütfen ilk önce tablonuzdaki veriyi değiştirin. + + + + Column '%1' has duplicate data. + + '%1' sütununda yinelenen veriler var. + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + Şu anda 'Benzersiz' kısıtı eklenmesi imkansız.'Benzersiz' kısıtını ekleyebilmek için lütfen yinelenen değerleri silin. + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + Bu sütun%1 tablosundaki yabancı bir anahtar tarafından referans alınıyor, bu nedenle adı değiştirilemez. + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + Gerçekten '%1' alanını silmek istediğinize emin misiniz? Bu alanda mevcut bütün verilerinizi kaybedeceksiniz. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + Lütfen 'Satır ID(Rowid) Kullanma' özelliğini etkinleştirmek için öncelikle aşağıdaki ölçütleri karşılayan alan ekleyin: +- Birincil anahtar ayarlayın +- Otomatik arttır ayarını devre dışı bırakın + + + + ExportDataDialog + + + Export data as CSV + Veriyi CSV olarak dışa aktar + + + + Tab&le(s) + Tab&lolar + + + + Colu&mn names in first line + Sütu&n isimleri ilk satırda + + + + Fie&ld separator + &Alan ayracı + + + + , + , + + + + ; + ; + + + + Tab + Tab karakteri + + + + | + | + + + + + + Other + Diğer + + + + &Quote character + &Tırnak karakteri + + + + " + " + + + + ' + ' + + + + New line characters + Yeni satır karakterleri + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + Düzenli baskı + + + + + Could not open output file: %1 + Oluşturulan dosya açılamadı: %1 + + + + + Choose a filename to export data + Verileri dışarı aktarmak için dosya ismi seçiniz + + + + Export data as JSON + Veriyi JSON olarak dışa aktar + + + + exporting CSV + CSV dışa aktarılıyor + + + + exporting JSON + JSON dışa aktarılıyor + + + + Please select at least 1 table. + Lütfen en az 1 tablo seçiniz. + + + + Choose a directory + Dizin seçiniz + + + + Export completed. + Dışa aktarma tamamlandı. + + + + ExportSqlDialog + + + Export SQL... + SQL dosyasını dışa aktar... + + + + Tab&le(s) + Tablo&lar + + + + Select All + Tümünü Seç + + + + Deselect All + Tüm Seçimi İptal Et + + + + &Options + &Seçenekler + + + + Keep column names in INSERT INTO + INSERT ve INTO komutlarında sütun isimlerini tut + + + + Multiple rows (VALUES) per INSERT statement + Tek INSERT ifadesi için çok satırlı (VALUES) ifade + + + + Export everything + Her şeyi dışa aktar + + + + Export data only + Sadece veriyi dışa aktar + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + Eski şemayı tut (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Eski şemanın üzerine yaz (DROP TABLE, then CREATE TABLE) + + + + Export schema only + Sadece şemayı dışa aktar + + + + Please select at least one table. + Lütfen en az bir tablo seçiniz. + + + + Choose a filename to export + Dışa aktarmak için dosya ismi seçiniz + + + + Export completed. + Dışa aktarma tamamlandı. + + + + Export cancelled or failed. + Dışa aktarma iptal edildi veya başarısız. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + Bul... + + + + Find and Replace... + Bul ve Değiştir... + + + + Print... + Yazdır... + + + + ExtendedTableWidget + + + Use as Exact Filter + Tam Filtre Olarak Kullan + + + + Containing + İçersin + + + + Not containing + İçermesin + + + + Not equal to + Eşit değil + + + + Greater than + Büyüktür + + + + Less than + Küçüktür + + + + Greater or equal + Büyük eşit + + + + Less or equal + Küçük eşit + + + + Between this and... + Şunların arasında... + + + + Regular expression + Düzenli ifadeler (RegEx) + + + + Edit Conditional Formats... + Koşullu Biçimleri Düzenle... + + + + Set to NULL + NULL olarak ayarla + + + + Copy + Kopyala + + + + Copy with Headers + Üst Başlıklarla Kopyala + + + + Copy as SQL + SQL olarak Kopyala + + + + Paste + Yapıştır + + + + Print... + Yazdır... + + + + Use in Filter Expression + Filtre İfadesinde Kullan + + + + Alt+Del + Alt+De + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + Pano içeriği seçilen aralıktan daha büyük. + Yine de eklemek istiyor musunuz? + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p> Tüm veriler yüklenmedi. <b>Tüm satırları seçmeden önce tüm verileri yüklemek istiyor musunuz?</b> </p> <p></p> <p> <b>Hayır</b> olarak cevaplamak, tüm verileri yüklemeyecek ve seçim işlemini uygulanmayacak. <br /> <b>Evet</b> seçeneği biraz zaman alabilir ama seçim işlemini gerçekleştirecektir. </p> Uyarı: Tüm verilerin yüklenmesi büyük tablolar için büyük miktarda bellek gerektirebilir. + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + Seçim NULL olarak ayarlanamıyor. %1 sütununda NOT NULL kısıtlaması var. + + + + FileExtensionManager + + + File Extension Manager + Dosya Uzantı Yöneticisi + + + + &Up + &Yukarı + + + + &Down + &Aşağı + + + + &Add + &Ekle + + + + &Remove + &Sil + + + + + Description + Açıklama + + + + Extensions + Uzantılar + + + + *.extension + *.uzantı + + + + FilterLineEdit + + + Filter + Filtre + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + Bu giriş alanları, seçili tabloda hızlı filtreler gerçekleştirmenizi sağlar. +Varsayılan olarak, metin içeren satırlar filtrelenir. +Ayrıca aşağıdaki operatörler de destekleniyor: +% Joker +> Büyüktür +< Küçüktür +>= Büyük eşit +<= Küçük eşit += Eşittir +<> Eşit değil +x~y Aralık: değerler x ve y arasında +/regexp/ Kurallı ifadelerle(RegExp) eşleşen değerler + + + + Clear All Conditional Formats + Tüm Koşullu Biçimleri Temizle + + + + Use for Conditional Format + Koşullu Biçim için Kullan + + + + Edit Conditional Formats... + Koşullu Biçimleri Düzenle... + + + + Set Filter Expression + Filtre İfadesi Ayarla + + + + What's This? + Bu nedir? + + + + Is NULL + NULL mu + + + + Is not NULL + NULL değil mi + + + + Is empty + Boş mu + + + + Is not empty + Boş değil mi + + + + Not containing... + İçermiyor... + + + + Equal to... + Şuna eşit... + + + + Not equal to... + Şuna eşit değil... + + + + Greater than... + Büyüktür... + + + + Less than... + Küçüktür... + + + + Greater or equal... + Büyük eşit... + + + + Less or equal... + Küçük eşit... + + + + In range... + Aralıkta mı... + + + + Regular expression... + Düzenli ifade (RegEx)... + + + + FindReplaceDialog + + + Find and Replace + Bul ve Değiştir + + + + Fi&nd text: + &Aranan Metin: + + + + Re&place with: + Şununla d&eğiştir: + + + + Match &exact case + Büyük kü&çük harfe duyarlı + + + + Match &only whole words + Kelimenin ta&mamını eşleştir + + + + When enabled, the search continues from the other end when it reaches one end of the page + Etkinleştirildiğinde, arama sayfanın bir ucuna ulaştığında diğer uçtan devam eder + + + + &Wrap around + Ba&şa dön + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + Ayarlandığında, arama imleç konumundan geriye doğru gider, aksi takdirde ileri gider + + + + Search &backwards + Geri&ye doğru ara + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>İşaretlendiğinde, girilen desen yalnızca geçerli seçimde aranır.</p></body></html> + + + + &Selection only + Sadece se&çimde ara + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html> <head /> <body> <p> İşaretlendiğinde, girilen desen UNIX düzenli ifadesi olarak yorumlanır. <a href="https://en.wikibooks.org/wiki/Regular_Expressions" >Wikibooks</a > üzerinden düzenli ifadeleri inceleyebilirsiniz. </p> </body> </html> + + + + Use regular e&xpressions + Düzenli ifadeleri &kullan + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + İmleç konumundan itibaren belirtilen yönde bir sonraki eşleşmeyi bulur + + + + &Find Next + Sonrakini &Bul + + + + F3 + + + + + &Replace + &Değiştir + + + + Highlight all the occurrences of the text in the page + Eşleşen tüm kelimeleri vurgula + + + + F&ind All + Tüm&ünü Bul + + + + Replace all the occurrences of the text in the page + Sayfadaki bulunan metinlerin tümünü değiştir + + + + Replace &All + &Tümünü Değiştir + + + + The searched text was not found + Aranan metin bulunamadı + + + + The searched text was not found. + The searched text was not found. + + + + The searched text was found one time. + Aranan metin bir kez bulundu. + + + + The searched text was found %1 times. + Aranan metin %1 kez bulundu. + + + + The searched text was replaced one time. + Aranan metin bir kez değiştirildi. + + + + The searched text was replaced %1 times. + Aranan metin %1 kez değiştirildi. + + + + ForeignKeyEditor + + + &Reset + &Sıfırla + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + Yabancı anahtar hükümleri (ON UPDATE, ON DELETE vb.) + + + + ImportCsvDialog + + + Import CSV file + CSV dosyasını içe aktar + + + + Table na&me + Tablo İs&mi + + + + &Column names in first line + İlk satır &sütun isimleri içeriyor + + + + Field &separator + Alan &ayracı + + + + , + , + + + + ; + ; + + + + + Tab + Tab karakteri + + + + | + | + + + + Other + Diğer + + + + &Quote character + &Tırnak karakteri + + + + + Other (printable) + Diğer (yazdırılabilir) + + + + + Other (code) + Diğer (Kod) + + + + " + " + + + + ' + ' + + + + &Encoding + &Kodlama + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + Alanlar biçimlendirilsin mi? + + + + Separate tables + Tablolar ayrılmış + + + + Advanced + Gelişmiş + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + CSV dosyasından boş bir değer alındığında, sütunun varsayılan değeri kullanılır. Varsayılan değer yerine boş bir değer eklemek için bu seçeneği etkinleştirin. + + + + Ignore default &values + &Varsayılan değerleri yoksay + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + Varsayılan değeri olmayan NOT NULL kısıtına sahip bir sütuna, boş bir değer içe aktarmaya çalışırken içe aktarmayı durdurmak için bu seçeneği etkinleştirin. + + + + Fail on missing values + Eksik değerde işlemi durdur + + + + Disable data type detection + Veri tipi algılamayı devre dışı bırak + + + + Disable the automatic data type detection when creating a new table. + Yeni bir tablo oluştururken otomatik veri tipi algılamayı devre dışı bırakın. + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + Birincil anahtar, benzersiz kısıtı veya benzersiz index kısıtına sahip mevcut bir tablo içe aktarırken çakışma meydana gelebilir. Bu seçenek, bu durum için bir strateji seçmenize olanak tanır: Varsayılan olarak işlem iptal edilir ve geri alınır, ancak isterseniz çakışmaları yoksayıp içe aktarmazsınız veya yeni satırları mevcut olanlarla değiştirebilirsiniz. + + + + Abort import + İçe aktarmayı iptal et + + + + Ignore row + Satırı yoksay + + + + Replace existing row + Varolan kaydı değiştir + + + + Conflict strategy + Çakışma stratejisi + + + + + Deselect All + Tüm seçimi iptal et + + + + Match Similar + Benzerleri Eşleştir + + + + Select All + Tümünü Seç + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + '%1' isminde bir tablo zaten var, var olan bir tablo için içe aktarma, yalnızca sütun sayıları eşitse mümkün olabilir. + + + + There is already a table named '%1'. Do you want to import the data into it? + '%1' adında bir tablo zaten var. Verileri içe aktarmak istiyor musunuz? + + + + Creating restore point failed: %1 + Geri yükleme noktası oluşturma başarısız: %1 + + + + Creating the table failed: %1 + Tablo oluşturma başarısız: %1 + + + + importing CSV + CSV İçe Aktarma + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + '%1' dosyasını içe aktarmak %2ms sürdü. %3ms satır fonksiyonunda harcandı. + + + + Inserting row failed: %1 + Satır ekleme başarısız: %1 + + + + MainWindow + + + DB Browser for SQLite + SQLite DB Browser + + + + toolBar1 + toolBar1 + + + + Opens the SQLCipher FAQ in a browser window + SQLCipher Hakkında SSS bölümünü tarayıcı penceresinde açar + + + + Export one or more table(s) to a JSON file + Bir veya daha fazla tabloyu JSON dosyası olarak dışa aktarın + + + + Open an existing database file in read only mode + Mevcut bir veritabanı dosyasını salt okunur modda açar + + + + &File + &Dosya + + + + &Import + &İçe Aktar + + + + &Export + &Dışa Aktar + + + + &Edit + Düz&enle + + + + &View + &Görünüm + + + + &Help + &Yardım + + + + DB Toolbar + Veritabanı Araç Çubuğu + + + + Edit Database &Cell + Veritabanı Hü&cresini Düzenle + + + + DB Sche&ma + Veritabanı Şe&ması + + + + &Remote + &Uzak Bilgisayar + + + + + Execute current line + Geçerli satırı yürüt + + + + This button executes the SQL statement present in the current editor line + Bu buton, geçerli editör satırında bulunan SQL ifadesini yürütür + + + + Shift+F5 + + + + + Sa&ve Project + Projeyi &Kaydet + + + + User + Kullanıcı + + + + Application + Uygulama + + + + &Clear + &Temizle + + + + &New Database... + Ye&ni Veritabanı... + + + + + Create a new database file + Yeni bir veritabanı dosyası oluştur + + + + This option is used to create a new database file. + Bu seçenek yeni bir veritabanı dosyası oluşturmak için kullanılır. + + + + Ctrl+N + + + + + + &Open Database... + &Veritabanı Aç... + + + + + + + + Open an existing database file + Mevcut veritabanı dosyasını aç + + + + + + This option is used to open an existing database file. + Bu seçenek mevcut veritabanı dosyasını açmak için kullanılır. + + + + Ctrl+O + + + + + &Close Database + Veritabanı &Kapat + + + + + Ctrl+W + + + + + + Revert database to last saved state + Veritabanını en son kaydedilen duruma döndür + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + Bu seçenek veritabanını en son kaydedilen durumuna döndürür. Geçerli kayıttan sonra yaptığınız tüm değişiklikler kaybolacaktır. + + + + + Write changes to the database file + Değişiklikleri veritabanı dosyasına kaydet + + + + This option is used to save changes to the database file. + Bu seçenek değişiklikleri veritabanı dosyasına kaydetmenizi sağlar. + + + + Ctrl+S + + + + + Compact the database file, removing space wasted by deleted records + Veritabanı dosyasını genişletmek, silinen kayıtlardan dolayı meydana gelen boşlukları temizler + + + + + Compact the database file, removing space wasted by deleted records. + Veritabanı dosyasını genişletmek, silinen kayıtlardan dolayı meydana gelen boşlukları temizler. + + + + E&xit + &Çıkış + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + Verileri .sql uzantılı döküm dosyasından varolan veya yeni veritabanına aktarın. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + Bu seçenek verileri .sql döküm dosyasından varolan veya yeni veritabanına aktarmanıza olanak sağlar. SQL dosyaları MySQL ve PostgreSQL dahil olmak üzere birçok veritabanı motorları tarafından oluştururlar. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Virgülle ayrılmış metin dosyalarını veritabanınızın içine aktarmanızı sağlayan sihirbazı açar. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + Virgülle ayrılmış metin dosyalarını veritabanınızın içine aktarmanızı sağlayan sihirbazı açar. CSV dosyaları çoğu veritabanı motorları ve elektronik tablo uygulamaları tarafından oluştururlar. + + + + Export a database to a .sql dump text file. + Veritabanını .sql döküm dosyası olarak dışa aktar. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + Bu seçenek veritabanını .sql döküm dosyası olarak dışa aktarmanızı sağlar. SQL döküm dosyaları veritabanını, MySQL ve PostgreSQL dahil birçok veritabanı motorunda yeniden oluşturmak için gereken verilerin tümünü içerir. + + + + Export a database table as a comma separated text file. + Veritabanı tablosunu virgülle ayrılmış metin dosyası olarak dışa aktar. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + Veritabanını virgülle ayrılmış metin dosyası olarak diğer veritabanı veya elektronik tablo uygulamalarına aktarmaya hazır olacak şekilde dışa aktarın. + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + Tablo Oluşturma sihirbazı, veritabanı için alanlarını ve ismini ayarlayabileceğiniz, yeni bir tablo oluşturmanızı sağlar + + + + + Delete Table + Tabloyu Sil + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + Tablo Silme sihirbazı, seçtiğiniz tabloları silmenizi sağlar. + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + Tablo Düzenleme sihirbazı, varolan tablonuzu yeniden adlandırmanıza olanak sağlar. Ayrıca yeni alan ekleyebilir, silebilir hatta alanların ismini ve tipini de düzenleyebilirsiniz. + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + İndeks Oluşturma sihirbazı, varolan veritabanı tablosuna yeni indeks tanımlamanıza olanak sağlar. + + + + &Preferences... + &Tercihler... + + + + + Open the preferences window. + Tercihler penceresini açar. + + + + &DB Toolbar + &Veritabanı Araç Çubuğu + + + + Shows or hides the Database toolbar. + Veritabanı araç çubuğunu gösterir veya gizler. + + + + Shift+F1 + + + + + &Recently opened + En son açılanla&r + + + + Open &tab + Se&kme Aç + + + + Ctrl+T + + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Veritabanı Yapısı + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + Bu, açılan veritabanının yapısıdır. +SQL ifadelerini bir nesne satırından sürükleyip başka uygulamalara veya 'DB Browser for SQLite programının başka bir penceresine bırakabilirsiniz. + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Veriyi Görüntüle + + + + Un/comment block of SQL code + Kod bloğunu yorum satırına dönüştür/yorum satırını iptal et + + + + Un/comment block + Yorum satırına dönüştür/yorum satırını iptal et + + + + Comment or uncomment current line or selected block of code + Geçerli satırı veya kod bloğunu, yorum satırına dönüştür veya yorum satırını iptal et + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + Geçerli satırı veya kod bloğunu, yorum satırına dönüştür veya yorum satırını iptal et. Hiç seçim yoksa tüm bloklar ilk satır baz alınarak değiştirilir. + + + + Ctrl+/ + + + + + Stop SQL execution + SQL yürütmesini durdur + + + + Stop execution + Yürütmeyi durdur + + + + Stop the currently running SQL script + Şu anda çalışan SQL betiğini durdur + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Pragmaları Düzenle + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + Uyarı: Bu pragma okunamaz ve bu değer çıkartıldı. Bu pragmayı yazmak, bir SQLite eklentisi tarafından sağlanan yeniden tanımlanmış bir LIKE'nin üzerine yazabilir. + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + SQL kodunu yürüt + + + + &Tools + Ara&çlar + + + + SQL &Log + SQL &Günlüğü + + + + Show S&QL submitted by + Şuna ait S&QL'i göster + + + + Error Log + Hata Günlüğü + + + + This button clears the contents of the SQL logs + Bu buton SQL günlüğünün içeriğini temizler + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + Bu panel, uygulama veya kendiniz tarafından verilen tüm SQL komutlarının bir günlüğünü incelemenizi sağlar + + + + &Plot + &Çizim + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + Bu, açılan veritabanının yapısıdır. +Birden çok nesne adını Ad sütunundan sürükleyip SQL editörüne bırakabilir ve bırakılan adların özelliklerini bağlam menüsünü kullanarak ayarlayabilirsiniz. Bu, SQL ifadeleri oluşturmanıza yardımcı olacaktır. +SQL deyimlerini Şema sütunundan sürükleyip SQL editörüne veya diğer uygulamalara bırakabilirsiniz. + + + + + + Project Toolbar + Proje Araç Çubuğu + + + + Extra DB toolbar + Ekstra Veritabanı araç çubuğu + + + + + + Close the current database file + Geçerli veritabano dosyasını kapat + + + + This button closes the connection to the currently open database file + Bu buton, şu anda açık olan veritabanı dosyasına ait bağlantıyı kapatır + + + + Ctrl+F4 + + + + + &Revert Changes + Değişiklikleri &Geri Al + + + + &Write Changes + Değişiklikleri &Kaydet + + + + Compact &Database... + Veriabanını &Sıkıştır... + + + + Execute all/selected SQL + Tüm/seçin SQL sorgusunu yürüt + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + Bu buton seçili olan SQL ifadesini yürütür. Hiçbir metin seçilmezse, tüm SQL ifadeleri yürütülür. + + + + Open SQL file(s) + + + + + This button opens files containing SQL statements and loads them in new editor tabs + + + + + &Load Extension... + Ek&lenti Yükle... + + + + Execute line + Tek satır yürüt + + + + &Wiki + &Wiki + + + + F1 + + + + + Bug &Report... + Hata &Raporu... + + + + Feature Re&quest... + &Özellik Talebi... + + + + Web&site + Web &Sitesi + + + + &Donate on Patreon... + &Patreon üzerinden Bağış Yapın... + + + + Open &Project... + &Proje Aç... + + + + &Attach Database... + &Veritabanı Ekle... + + + + + Add another database file to the current database connection + Şu anki veritabanı bağğlantısına başka bir veritabanı dosyası ekle + + + + This button lets you add another database file to the current database connection + Bu buton, geçerli veritabanı bağlantısına başka bir veritabanı dosyası eklemenizi sağlar + + + + &Set Encryption... + &Şifreleme Belirtle... + + + + SQLCipher &FAQ + SQLCipher &SSS + + + + Table(&s) to JSON... + Tablodan &JSON dosyasına... + + + + Open Data&base Read Only... + Salt &Okunur Veritabanı Aç... + + + + Ctrl+Shift+O + + + + + Save results + Sonuçları kaydet + + + + Save the results view + Sonuç görünümünü kaydet + + + + This button lets you save the results of the last executed query + Bu buton son yürütülen sorgunun sonuçlarını kaydetmenizi sağlar + + + + + Find text in SQL editor + SQL editörünte metin ara + + + + Find + Bul + + + + This button opens the search bar of the editor + Bu buton editörün arama çubuğunu açar + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + SQL editöründe metin bul veya değiştir + + + + Find or replace + Bul veya değiştir + + + + This button opens the find/replace dialog for the current editor tab + Bu buton, geçerli editör sekmesi için bul / değiştir iletişim kutusunu açar + + + + Ctrl+H + + + + + Export to &CSV + &CSV dosyası olarak dışa aktar + + + + Save as &view + &Görünüm olarak kaydet + + + + Save as view + Görünüm olarak kaydet + + + + Browse Table + Tabloyu Görüntüle + + + + Shows or hides the Project toolbar. + Proje araç çubuğunu gösterir veya gizler. + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + + + + + This button lets you open a DB Browser for SQLite project file + + + + + Extra DB Toolbar + Ekstra Veritabanı Araç Çubuğu + + + + New In-&Memory Database + &Yeni Bellek İçi Veritabanı + + + + Drag && Drop Qualified Names + Nitelikli İsimleri Sürükle && Bırak + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + Nesneleri sürükleyip düzenleyiciye bırakırken özel isimleri kullanın (örn. "Tablo". "Alan") + + + + Drag && Drop Enquoted Names + İsimleri Sürükle && Bırak + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + Nesneleri sürükleyip editöre bırakırken çıkış karakter belirleyicilerini kullanın(ör. "Tablo1") kullanın + + + + &Integrity Check + &Bütünlük Denetimi + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + integrity_check pragmasını açılan veritabanı üzerinde çalıştırır ve 'SQL Kodunu Yürüt' sekmesinde sonuçları döndürür. Bu pragma veritabanının tamamının bütünlüğünü kontrol eder. + + + + &Foreign-Key Check + &Yabancı anahtar kontrolü + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + Foreign_key_check pragmasını açık veritabanı üzerinde çalıştırır ve 'SQL Kodunu Yürüt' sekmesinde sonuçları döndürür + + + + &Quick Integrity Check + &Hızlı Bütünlük Testi + + + + Run a quick integrity check over the open DB + Açık veritabanı üzerinde hızlı bir bütünlük denetimi yapın + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + quick_check pragmasını açık veritabanı üzerinde çalıştırır ve 'SQL Kodunu Yürüt' sekmesinde sonuçları döndürür. Bu komut PRAGMA integrity_check denetiminin çoğunu yapar, ancak çok daha hızlı çalışır. + + + + &Optimize + &Optimize + + + + Attempt to optimize the database + Veritabanını optimize etmeyi dene + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + Açılan veritabanı üzerinden optimizasyon pragmasını çalıştırır. Bu uygulama gelecekteki sorguların performansını artırmaya yardımcı olabilir. + + + + + Print + Yazdır + + + + Print text from current SQL editor tab + Geçerli SQL düzenleyici sekmesinden metni yazdırın + + + + Open a dialog for printing the text in the current SQL editor tab + Geçerli SQL düzenleyici sekmesindeki metni yazdırmak için bir iletişim kutusu açın + + + + Print the structure of the opened database + Şu anda açık olan veritabanı yapısını yazdırın + + + + Open a dialog for printing the structure of the opened database + Açılan veritabanının yapısını yazdırmak için bir bir iletişim kutusu açın + + + + &Save Project As... + Projeyi &Farklı Kaydet... + + + + + + Save the project in a file selected in a dialog + Projeyi iletişim kutusunda seçilen bir dosyaya kaydedin + + + + Save A&ll + Tümünü &Kaydet + + + + + + Save DB file, project file and opened SQL files + Veritabanı dosyasını, proje dosyasını ve açılan SQL dosyalarını kaydedin + + + + Ctrl+Shift+S + + + + + &Database from SQL file... + SQL &dosyasından veritabanı... + + + + &Table from CSV file... + CSV dosyasından &tablo... + + + + &Database to SQL file... + Veritabanından SQL &dosyası... + + + + &Table(s) as CSV file... + &Tablodan CSV dosyası olarak... + + + + &Create Table... + &Tablo Oluştur... + + + + &Delete Table... + &Tabloyu Sil... + + + + &Modify Table... + Tabloyu &Düzenle... + + + + Create &Index... + &Index Oluştur... + + + + W&hat's This? + Bu &nedir? + + + + &About + &İptal + + + + This button opens a new tab for the SQL editor + Bu buton SQL editörü için yeni bir sekme açar + + + + &Execute SQL + &SQL kodunu yürüt + + + + + + Save SQL file + SQL dosyasını kaydet + + + + Ctrl+E + + + + + Export as CSV file + CSV dosyası olarak dışa aktar + + + + Export table as comma separated values file + Tabloyu virgülle ayrılmış girdiler dosyası olarak dışa aktar + + + + + Save the current session to a file + Geçerli oturumu dosyaya kaydet + + + + + Load a working session from a file + Dosyadan çalışma oturumunu yükle + + + + + Save SQL file as + SQL dosyasını bu şekilde kaydet + + + + This button saves the content of the current SQL editor tab to a file + Bu buton geçerli SQL editörü sekmesinin içeriğini bir dosyaya kaydeder + + + + &Browse Table + &Tabloyu Görüntüle + + + + Copy Create statement + 'Create' ifadesini kopyala + + + + Copy the CREATE statement of the item to the clipboard + Objenin 'Create' ifadesini panoya kopyala + + + + Ctrl+Return + + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Encrypted + Şifrelenmiş + + + + Read only + Salt okunur + + + + Database file is read only. Editing the database is disabled. + Veritabanı salt okunur. Veritabanı düzenleme devre dışı. + + + + Database encoding + Veritabanı kodlaması + + + + Database is encrypted using SQLCipher + Veritabanı SQLCipher kullanılırak şifrelendi + + + + + Choose a database file + Veritabanı dosyasını seçiniz + + + + + + Choose a filename to save under + Kaydetmek için dosya ismi seçiniz + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + Veritabanı dosyası kaydedilirken hata oluştu. Bu, veritabanındaki tüm değişikliklerin kaydedilmediği anlamına gelir. Önce aşağıdaki hatayı çözmeniz gerekir. + +%1 + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + Son kayıttan itibaren '%1' dosyasına yaptığınız değişiklikleri geri almak istediğinize emin misiniz? + + + + Choose a file to import + İçe aktarmak için dosya seçiniz + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (salt okunur) + + + + Open Database or Project + Veritabanı veya Proje Açın + + + + Attach Database... + Veritabanı Ekle... + + + + Import CSV file(s)... + CSV dosyalarını içe aktarın... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + Bırakılan dosyalara uygulanacak eylemi seçin. <br/>Not: yalnızca 'İçe Aktar' birden fazla dosyayı işleyecektir. + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + SQL sekmelerinde yapılan değişiklikleri '%1' proje dosyasına kaydetmek istiyor musunuz? + + + + Text files(*.sql *.txt);;All files(*) + Metin dosyaları(*.sql *.txt);;Tüm dosyalar(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + İçeri aktarılan verileri tutmak için yeni bir veritabanı dosyası oluşturmak istiyor musunuz? +Eğer cevabınız hayır ise biz SQL dosyasındaki verileri geçerli veritabanına aktarmaya başlayacağız. + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + Şu anda SQL sorgularını yürütüyorsunuz. Veritabanının şimdi kapatılması, muhtemelen veritabanını tutarsız bir durumda bırakarak yürütmeyi durduracaktır. Veritabanını kapatmak istediğinizden emin misiniz? + + + + Do you want to save the changes made to the project file '%1'? + '%1' proje dosyasında yapılan değişiklikleri kaydetmek istiyor musunuz? + + + + File %1 already exists. Please choose a different name. + %1 dosyası zaten mevcut. Lütfen farklı bir isim seçiniz. + + + + Error importing data: %1 + Dosya içeri aktarılırken hata oluştu: %1 + + + + Import completed. + İçeri aktarma tamamlandı. + + + + Delete View + Görünümü Sil + + + + Modify View + Görünümü Düzenle + + + + Delete Trigger + Tetikleyiciyi Sil + + + + Modify Trigger + Tetikleyiciyi Düzenle + + + + Delete Index + İndeksi Sil + + + + Modify Index + Index'i Düzenle + + + + Modify Table + Tabloyu Düzenle + + + + Do you want to save the changes made to SQL tabs in a new project file? + SQL sekmelerinde yapılan değişiklikleri yeni bir proje dosyasına kaydetmek istiyor musunuz? + + + + Do you want to save the changes made to the SQL file %1? + %1 SQL dosyasında yapılan değişiklikleri kaydetmek istiyor musunuz? + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + Bu sekmedeki sorgular hala yürütülüyor. Sekmenin kapatılması yürütmeyi durdurur. Bu durum, veritabanını tutarsız bir durumda bırakabilir. Sekmeyi kapatmak istediğinizden emin misiniz? + + + + Could not find resource file: %1 + Kaynak dosya bulunamadı: %1 + + + + Choose a project file to open + Açmak için bir proje dosyası seçin + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + Bu proje dosyası eski bir formatta, çünkü DB Browser for SQLite 3.10 veya daha düşük bir sürüm ile oluşturulmuş. Bu dosya biçiminin yüklenmesi hala tam olarak desteklenmektedir, ancak gelecekte daha eski biçimlere yönelik destek azalabileceğinden, tüm proje dosyalarınızı yeni dosya biçimine dönüştürmenizi öneririz. Dosyalarınızı açıp yeniden kaydederek dönüştürebilirsiniz. + + + + Could not open project file for writing. +Reason: %1 + Proje dosyası yazmaya açılamadı. +Nedeni: %1 + + + + Busy (%1) + Meşgul (%1) + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + PRAGMA değerlerini ayarlamak geçerli işleminizi yürütmeye alacaktır. +Bunu yapmak istediğinize emin misiniz? + + + + Window Layout + + + + + Reset Window Layout + Pencere Düzenini Sıfırla + + + + Alt+0 + + + + + Simplify Window Layout + + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + + + + + Dock Windows at Left Side + + + + + Dock Windows at Top + + + + + The database is currenctly busy. + Verştabanı şu anda meşgul. + + + + Click here to interrupt the currently running query. + Çalışmakta olan sorguyu kesmek için burayı tıklayın. + + + + Could not open database file. +Reason: %1 + Veritabanı dosyası açılamadı. +Nedeni: %1 + + + + In-Memory database + Bellek İçi Veritabanı + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + '%1' tablosunu silmek istediğinizden emin misiniz? +Tabloyla ilişkili tüm veriler kaybedilecektir. + + + + Are you sure you want to delete the view '%1'? + '%1' görünümünü silmek istediğinizden emin misiniz? + + + + Are you sure you want to delete the trigger '%1'? + '%1' tetikleyicisini silmek istediğinizden emin misiniz? + + + + Are you sure you want to delete the index '%1'? + '%1' indexsini silmek istediğinizden emin misiniz? + + + + Error: could not delete the table. + Hata: tablo silinemedi. + + + + Error: could not delete the view. + Hata: görünüm silinemedi. + + + + Error: could not delete the trigger. + Hata: tetikleyici silinemedi. + + + + Error: could not delete the index. + Hata: index silinemedi. + + + + Message from database engine: +%1 + Veritabanı motorundan mesaj: +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + Tabloyu düzenlemek için bekleyen tüm değişikliklerin şimdi kaydedilmesi gerekir. +Veritabanını kaydetmek istediğinizden emin misiniz? + + + + Edit View %1 + + + + + Edit Trigger %1 + + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + Şu anda zaten yürütülen SQL sorguları var. Bunun yerine, şimdiki sorguları çalıştırmak için şu anda yürütülen sorguyu durdurmak istiyor musunuz? Bunun veritabanını tutarsız bir durumda bırakabileceğini unutmayın. + + + + -- EXECUTING SELECTION IN '%1' +-- + -- SEÇİM '%1' İÇERİSİNDE YÜRÜTÜLÜYOR +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- SATIR '%1' İÇERİSİNDE YÜRÜTÜLÜYOR +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- TÜMÜ '%1' İÇERİSİNDE YÜRÜTÜLÜYOR +-- + + + + + At line %1: + %1. satırda: + + + + Result: %1 + Sonuç: %1 + + + + Result: %2 + Sonuç: %2 + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + PRAGMA değerlerini ayarlamak veya vakumlamak mevcut işleminizi kaydeder. +Emin misiniz? + + + + Opened '%1' in read-only mode from recent file list + + + + + Opened '%1' from recent file list + + + + + This action will open a new SQL tab with the following statements for you to edit and run: + + + + + Rename Tab + Sekmeyi Yeniden Adlandır + + + + Duplicate Tab + Sekmeyi Klonla + + + + Close Tab + Sekmeyi Kapat + + + + Opening '%1'... + '%1' açılıyor... + + + + There was an error opening '%1'... + '%1' açılırken hata oluştu... + + + + Value is not a valid URL or filename: %1 + Geçersiz bir URL veya dosya adı: %1 + + + + %1 rows returned in %2ms + %2ms içerisinde %1 tane satır döndürüldü + + + + Choose text files + Metin dosyaları seçin + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + İçe aktarma tamamlandı. Bazı yabancı anahtar kısıtları ihlal edildi. Lütfen kaydetmeden önce bunları çözün. + + + + Select SQL file to open + Açmak için SQL dosyasını seçiniz + + + + Select file name + Dosya ismi seçiniz + + + + Select extension file + Eklenti dosyasını seçiniz + + + + Extension successfully loaded. + Eklenti başarıyla yüklendi. + + + + Error loading extension: %1 + Eklenti yüklenirken hata oluştu: %1 + + + + + Don't show again + Bir daha gös'terme + + + + New version available. + Yeni sürüm mevcut. + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Yeni bir SQLite DB Browser sürümü mevcut (%1.%2.%3).<br/><br/>Lütfen buradan indiriniz: <a href='%4'>%4</a>. + + + + Project saved to file '%1' + Proje '%1' dosyasına kaydedildi + + + + Collation needed! Proceed? + Harmanlama gerekli! Devam edilsin mi? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + Bu veritabanınındaki bir tablo özel '%1' koleksiyon fonksiyonu gerektirmektedir. +Daha fazla bilgi olmadan program bunu sağlayamaz. Eğer bu şekilde devam edecekseniz, veritabanınıza kötü şeyler olabileceğinin farkında olun ve yedek oluşturun. +Bir yedek oluşturun! + + + + creating collation + harmanlama oluşturuluyor + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + SQL sekmesi için yeni bir ad belirleyin. Aşağıdaki karakteri klavye kısayolu olarak kullanmak için '&&' karakterini kullanın. + + + + Please specify the view name + Lütfen görünüm ismini belirtin + + + + There is already an object with that name. Please choose a different name. + Bu isme sahip obje zaten mevcut. Lütfen farklı bir isim seçiniz. + + + + View successfully created. + Görünüm başarıyla oluşturuldu. + + + + Error creating view: %1 + Görünüm oluşturma hatası: %1 + + + + This action will open a new SQL tab for running: + Bu işlem çalıştırmak için yeni bir SQL sekmesi açar: + + + + Press Help for opening the corresponding SQLite reference page. + İlgili SQLite referans sayfasını açmak için Yardım'a basın. + + + + DB Browser for SQLite project file (*.sqbpro) + SQLite DB Browser proje dosyası (*.sqbpro) + + + + Error checking foreign keys after table modification. The changes will be reverted. + Tablo değişikliğinden sonra yabancı anahtarlar kontrol edilirken hata oluştu. Değişiklikler geri alınacak. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + Bu tablo birincil anahtar kontrolünden geçmedi.<br/>'Araçlar | Birinci Anahat Kontrolü' komutunu çalıştırın ve raporlanan sorunları düzeltin. + + + + Execution finished with errors. + Yürütme hatalarla tamamlandı. + + + + Execution finished without errors. + Yürütme hatasız tamamlandı. + + + + NullLineEdit + + + Set to NULL + NULL olarak ayarlar + + + + Alt+Del + + + + + PlotDock + + + Plot + Grafik Çizimi + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html> <head /> <body> <p> Bu bölme, o anda taranan tablonun sütunları listesini veya yürütülen sorguyu gösterir. Aşağıdaki çizim bölmesi için X veya Y ekseni olarak kullanılmasını istediğiniz sütunları seçebilirsiniz. Tablo, ortaya çıkan grafiği etkileyecek algılanan eksen tipini gösterir. Y ekseni için yalnızca sayısal sütunlar seçebilirsiniz, ancak X ekseni için aşağıdakileri seçebilirsiniz: </p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;" > <li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;" > <span style=" font-weight:600;">Tarih/Saat</span>: &quot;yyyy-MM-dd hh:mm:ss&quot; veya &quot;yyyy-MM-ddThh:mm:ss&quot; ve string formatında </li> <li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;" > <span style=" font-weight:600;">Tarih</span>: &quot;yyyy-MM-dd&quot; ve string formatında </li> <li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;" > <span style=" font-weight:600;">Saat</span>: &quot;hh:mm:ss&quot; ve string formatında </li> <li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;" > <span style=" font-weight:600;">Başlık</span>: diğer string formatları. Bu sütunun X ekseni için seçilmesi, sütun değerlerinin çubukları için etiket oluşturur. </li> <li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;" > <span style=" font-weight:600;">Nümerik</span>: integer veya real tipindeki değerler </li> </ul> <p> Y hücrelerini çift tıklatarak o grafik için kullanılan rengi değiştirebilirsiniz. </p> </body> </html> + + + + Columns + Sütun + + + + X + X + + + + Y1 + + + + + Y2 + + + + + Axis Type + Eksen Tipi + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + Yukarıdaki x ve y değerlerini seçtiğinizde çizilen bir grafik. + +Noktaları grafikte ve tabloda seçmek için üzerine tıklayın. Nokta aralığı seçmek için Ctrl+Tıklama yapın. + +Yakınlaştırma için fare tekerleğini ve eksen aralığını değiştirmek için fare tekerini kullanın. + +Yalnızca geçerli yönde sürüklemek ve yakınlaştırmak için eksen veya eksen etiketlerini seçin. + + + + Line type: + Çizgi Tipi: + + + + + None + Hiçbiri + + + + Line + Çizgi + + + + StepLeft + Sola Basamakla + + + + StepRight + Sağa Basamakla + + + + StepCenter + Merkeze Basamakla + + + + Impulse + Kaydırmalı + + + + Point shape: + Nokta şekli: + + + + Cross + Çarpı + + + + Plus + Artı + + + + Circle + Daire + + + + Disc + Disk + + + + Square + Kare + + + + Diamond + Elmas + + + + Star + Yıldız + + + + Triangle + Üçgen + + + + TriangleInverted + Ters Üçgen + + + + CrossSquare + Çapraz Kare + + + + PlusSquare + Kare İçinde Artı + + + + CrossCircle + Daire İçinde Çarpı + + + + PlusCircle + Daire İçinde Artı + + + + Peace + Barış Simgesi + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>Geçerli çizimi kaydet...</p><p>Uzantıya göre seçilen dosya formatları (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + Geçerli çizimi kaydet... + + + + + Load all data and redraw plot + Tüm verileri yükle ve grafiği yeniden çiz + + + + + + Row # + Satır # + + + + Copy + Kopyala + + + + Print... + Yazdır... + + + + Show legend + Göstergeyi göster + + + + Stacked bars + Yığılmış çubuklar + + + + Date/Time + Tarih/Saat + + + + Date + Tarih + + + + Time + Saat + + + + + Numeric + Nümerik + + + + Label + Etiket + + + + Invalid + Geçersiz + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + Tüm verileri yükle ve grafiği yeniden çiz. +Uyarı: Kısmi yükleme mekanizması nedeniyle tüm veriler tablodan henüz alınmadı. + + + + Choose an axis color + Bir eksen rengi seçin + + + + Choose a filename to save under + Altına kaydetmek için dosya ismi seçiniz + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;Tüm dosyalar(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + Bu grafikte eğriler var ve seçilen çizgi stili yalnızca X'e göre sıralanmış grafiklere uygulanabilir. Eğrileri kaldırmak için tabloyu veya sorguyu X'e göre sıralayın veya eğriler tarafından desteklenen stillerden birini seçin: 'Hiçbiri' veya 'Çizgi'. + + + + Loading all remaining data for this table took %1ms. + Bu tablo için kalan tüm verilerin yüklenmesi %1ms sürdü. + + + + PreferencesDialog + + + Preferences + Tercihler + + + + &General + &Genel + + + + Remember last location + Son dizini hatırla + + + + Always use this location + Her zaman bu dizini kullan + + + + Remember last location for session only + Aynı oturum için son dizini hatırla + + + + + + ... + ... + + + + Default &location + Varsayılan &dizin + + + + Lan&guage + Di&l + + + + Automatic &updates + Otomatik &güncellemeler + + + + + + + + + + + + enabled + etkin + + + + Show remote options + Uzak bilgisayar opsiyonlarını göster + + + + &Database + &Veritabanı + + + + Database &encoding + &Veritabanı kodlaması + + + + Open databases with foreign keys enabled. + Veritabanlarını Yabancı Anahtarlar etkin olacak şekilde aç. + + + + &Foreign keys + &Yabancı Anahtarlar + + + + Data &Browser + Veri &Görüntüleyici + + + + Remove line breaks in schema &view + Şema &görünümde satır sonlarını kaldır + + + + Prefetch block si&ze + Önceden getirme blo&k boyutu + + + + SQ&L to execute after opening database + Veritabanı açıldıktan sonra yürütülecek SQ&L + + + + Default field type + Varsayılan dosya tipi + + + + Font + Yazı + + + + &Font + &Yazı + + + + Content + İçerik + + + + Symbol limit in cell + Hücredeki sembol limiti + + + + Threshold for completion and calculation on selection + Seçimdeki tamamlama ve hesaplama eşiği + + + + Show images in cell + Resimleri hücrede göster + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + Hücrelerde görüntü verileri içeren BLOB tipindeki verilerin önizlemesini göstermek için bu seçeneği etkinleştirin. Ancak bu, veri görüntüleyicisinin performansını etkileyebilir. + + + + NULL + NULL + + + + Regular + Kurallı + + + + Binary + İkili veri + + + + Background + Arka plan + + + + Filters + Filtreler + + + + Toolbar style + Araç çubuğu stili + + + + + + + + Only display the icon + Sadece ikonu göster + + + + + + + + Only display the text + Sadece metni göster + + + + + + + + The text appears beside the icon + Metin simgenin yanında görünsün + + + + + + + + The text appears under the icon + Metin simgenin altında görünsün + + + + + + + + Follow the style + Stili baz al + + + + DB file extensions + Veritabanı dosya uzantıları + + + + Manage + Yönet + + + + Main Window + Ana Pencere + + + + Database Structure + Veritabanı Yapısı + + + + Browse Data + Verileri Görüntüle + + + + Execute SQL + SQL kodunu yürütme + + + + Edit Database Cell + Veritabanı Hücresini Düzenleme + + + + When this value is changed, all the other color preferences are also set to matching colors. + Bu değer değiştirildiğinde, diğer tüm renk tercihleri de eşleşen renklere ayarlanır. + + + + Follow the desktop style + Masaüstü stilini baz al + + + + Dark style + Koyu Tema + + + + Application style + Uygulama stili + + + + This sets the font size for all UI elements which do not have their own font size option. + + + + + Font size + + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + Etkinleştirildiğinde, Veritabanı Yapısı sekmesinin Şema sütununda satır sonu karakterleri ve yazdırılan çıktılar kaldırılır. + + + + Database structure font size + + + + + Font si&ze + Yazı B&oyutu + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + Bu, bazı hesaplama açısından pahalı işlevlerin etkinleştirilmesine izin verilen maksimum öğe sayısıdır: +Sütundaki geçerli değerlere dayalı olarak değer tamamlamayı etkinleştirmek için bir tablodaki maksimum satır sayısı. +Toplam ve ortalamayı hesaplamak için bir seçimdeki maksimum index sayısı. +İşlevleri devre dışı bırakmak için 0 olarak ayarlanabilir. + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + Bu, sütundaki geçerli değerlere dayalı olarak değer tamamlamayı etkinleştirmek için bir tablodaki maksimum satır sayısıdır. +Tamamlamayı devre dışı bırakmak için 0 olarak ayarlanabilir. + + + + Close button on tabs + + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + + + + + Proxy + Proxy + + + + Configure + Yapılandır + + + + Field display + Alan görünümü + + + + Displayed &text + Görün&tülenen metin + + + + + + + + + Click to set this color + Bu rengi ayarlamak için tıklayın + + + + Text color + Metin rengi + + + + Background color + Arka plan rengi + + + + Preview only (N/A) + Sadece önizleme (N/A) + + + + Escape character + Kaçış karakteri + + + + Delay time (&ms) + Gecikme süresi (&ms) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + Yeni bir filtre değeri uygulanmadan önce bekleme süresini ayarlayın. Beklemeyi devre dışı bırakmak için 0 olarak ayarlanabilir. + + + + &SQL + &SQL + + + + Settings name + Ayarlar ismi + + + + Context + Özellik + + + + Colour + Renk + + + + Bold + Kalın + + + + Italic + İtalik + + + + Underline + Altı çizili + + + + Keyword + Anahtar Kelime + + + + Function + Fonksiyon + + + + Table + Tablo + + + + Comment + Yorum + + + + Identifier + Kimlik + + + + String + String + + + + Current line + Geçerli satır + + + + SQL &editor font size + SQL &Editör yazı boyutu + + + + Tab size + TAB karakter boyutu + + + + &Wrap lines + &Satırları kaydır + + + + Never + Asla + + + + At word boundaries + Kelime dahilinde + + + + At character boundaries + Karakter dahilinde + + + + At whitespace boundaries + Beyaz boşluk dahilinde + + + + &Quotes for identifiers + Tanımlıyıcılar için &tırnaklar + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + Uygulama tarafından SQL kodundaki tanımlayıcılar için kullanılan tırnak stilini seçin. + + + + "Double quotes" - Standard SQL (recommended) + "Çift tırnak" - Standart SQL (önerilir) + + + + `Grave accents` - Traditional MySQL quotes + `Ters tırnaklar` - Geleneksel MySQL tırnakları + + + + [Square brackets] - Traditional MS SQL Server quotes + [Köşeli parantezler] - Geleneksel MS SQL Server + + + + Keywords in &UPPER CASE + Anahtar kelimeler B&ÜYÜK HARFLİ + + + + When set, the SQL keywords are completed in UPPER CASE letters. + Ayarlandığında, SQL anahtar kelimeleri BÜYÜK HARFLERLE tamamlanır. + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + Ayarlandığında, son yürütme sırasında hatalara neden olan SQL kod satırları vurgulanır ve sonuç çerçevesi arka plandaki hatayı gösterir + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html> <head /> <body> <p> SQLite, paylaşılmış kütüphane dosyasından eklenti yüklemeye yarayan bir fonksiyon sunar. <span style=" font-style:italic;">load_extension()</span> fonksiyonunu SQL kodu içerisinde kullanmak istiyorsanız fonksiyonu aktive edin. </p> <p> Güvenlik nedeniyle, uzantı yüklemesi varsayılan olarak kapalıdır ve bu ayar ile etkinleştirilmelidir. Bu seçenek devre dışı bırakılmış olsa bile, uzantıları her zaman GUI üzerinden yükleyebilirsiniz. </p> </body> </html> + + + + Allow loading extensions from SQL code + SQL kodundan eklenti yüklemeye izin ver + + + + Remote + Uzak Bilgisayar + + + + CA certificates + CA sertifikaları + + + + + Subject CN + CN Konusu + + + + Common Name + Yaygın İsim + + + + Subject O + Konu O + + + + Organization + Organizasyon + + + + + Valid from + Şundan tarihten itibaren geçerli + + + + + Valid to + Şu tarihe kadar geçerli + + + + + Serial number + Seri numarası + + + + Your certificates + Sertifikalarınız + + + + File + Dosya + + + + Subject Common Name + Ortak Konu Adı + + + + Issuer CN + CN Sağlayıcısı + + + + Issuer Common Name + Ortak Sağlayıcı Adı + + + + Clone databases into + Veritabanını şuraya kopyala + + + + SQL editor &font + SQL Editör &yazı boyutu + + + + Error indicators + Hata belirteçleri + + + + Hori&zontal tiling + Ya&tay Döşeme + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + Etkinleştirilirse, SQL kod düzenleyicisi ve sonuç tablosu görünümü üst üste yerine yan yana gösterilir. + + + + Code co&mpletion + Kod ta&mamlama + + + + Foreground + Ön plan + + + + SQL &results font size + S&QL sonuçları yazı tipi boyutu + + + + &Extensions + &Eklentiler + + + + Select extensions to load for every database: + Her veritabanında kullanmak için eklenti seçiniz: + + + + Add extension + Eklenti Ekle + + + + Remove extension + Eklenti Sil + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>Kurallı ifade(REGEXP) operatörü aktif edildiğinde SQLite, herhangi bir kurallı ifade uygulamaz ama şuan da çalışan uygulamayı geri çağırır. <br/>SQLite DB Browser kurallı ifadeyi kutunun dışında kullanmanıza izin vermek için bu algoritmayı uygular. <br/>Birden çok muhtemel uygulama olduğu gibi sizde farklı birini kullanabilirsiniz.<br/>Programın uygulamalarını devre dışı bırakmakta ve kendi eklentinizle kendi uygulamanızı yüklemekte özgürsünüz.<br/>Ayrıca uygulamayı yeniden başlatmak gerekir.</p></body></html> + + + + Disable Regular Expression extension + Kurallı İfade eklentisini devre dışı bırak + + + + + Choose a directory + Dizin seçiniz + + + + The language will change after you restart the application. + Seçilen dil uygulama yeniden başlatıldıktan sonra uygulanacaktır. + + + + Select extension file + Eklenti dosyası seçiniz + + + + Extensions(*.so *.dylib *.dll);;All files(*) + Eklentiler(*.so *.dylib *.dll);;Tüm dosyalar(*) + + + + Import certificate file + Sertifika dosyası içe aktar + + + + No certificates found in this file. + Bu dosyada sertifika bulunamadı. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + Bu sertifikayı kaldırmak istediğinizden emin misiniz? Tüm sertifika verileri uygulama ayarlarından silinecektir! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + Kaydedilen tüm ayarları silmek istediğinizden emin misiniz? +Tüm tercihleriniz kaybolacak ve varsayılan değerler kullanılacak. + + + + ProxyDialog + + + Proxy Configuration + Proxy Yapılandırması + + + + Pro&xy Type + Pro&xy Tipi + + + + Host Na&me + A&na Bilgisayar Adı + + + + Port + Port + + + + Authentication Re&quired + Kimlik &Doğrulaması Gerekli + + + + &User Name + K&ullanıcı Adı + + + + Password + Parola + + + + None + Hiçbiri + + + + System settings + Sistem ayarları + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + Error importing data + Veriyi içe aktarılırken hata oluştu + + + + from record number %1 + kayıt numarasından: %1 + + + + . +%1 + . %1 + + + + Importing CSV file... + CSV dosyası içe aktarılıyor... + + + + Cancel + İptal + + + + All files (*) + Tüm dosyalar (*) + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + SQLite veritabanı dosyaları (*.db *.sqlite *.sqlite3 *.db3) + + + + Left + Sola Hizala + + + + Right + Sağa Hizala + + + + Center + Ortala + + + + Justify + İki yana yasla + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + SQLite Veritabanı Dosyaları (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + DB Browser for SQLite Proje Dosyaları (*.sqbpro) + + + + SQL Files (*.sql) + SQL Dosyaları (*.sql) + + + + All Files (*) + Tüm Dosyalar (*) + + + + Text Files (*.txt) + Metin Dosyaları (*.txt) + + + + Comma-Separated Values Files (*.csv) + Virgülle Ayrılmış Değerler Dosyaları (* .csv) + + + + Tab-Separated Values Files (*.tsv) + Tab ile Ayrılmış Değerler Dosyaları (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + Sınırlayıcı ile Ayrılmış Değerler Dosyaları (* .dsv) + + + + Concordance DAT files (*.dat) + Uyumluluk DAT dosyaları (* .dat) + + + + JSON Files (*.json *.js) + JSON dosyaları (*.json *.js) + + + + XML Files (*.xml) + XML Dosyaları (*.xml) + + + + Binary Files (*.bin *.dat) + İkili Dosyalar (*.bin *.dat) + + + + SVG Files (*.svg) + SVG Dosyaları (*.svg) + + + + Hex Dump Files (*.dat *.bin) + Onaltılık Döküm Dosyaları (* .dat * .bin) + + + + Extensions (*.so *.dylib *.dll) + Eklentiler (* .so * .dylib * .dll) + + + + RemoteCommitsModel + + + Commit ID + + + + + Message + + + + + Date + Tarih + + + + Author + + + + + Size + Boyut + + + + Authored and committed by %1 + + + + + Authored by %1, committed by %2 + + + + + RemoteDatabase + + + Error opening local databases list. +%1 + Yerel veritabanı listesi açılamadı. +%1 + + + + Error creating local databases list. +%1 + Yerel veritabanı listesi oluşturulamadı. +%1 + + + + RemoteDock + + + Remote + Uzak Bilgisayar + + + + Identity + Kmlik + + + + Push currently opened database to server + Şu anda açık olan veritabanını sunucuya aktar + + + + DBHub.io + + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + + + + + Local + + + + + Current Database + + + + + Clone + + + + + User + Kullanıcı + + + + Database + Veritabanı + + + + Branch + Branch + + + + Commits + + + + + Commits for + + + + + Delete Database + + + + + Delete the local clone of this database + + + + + Open in Web Browser + + + + + Open the web page for the current database in your browser + + + + + Clone from Link + + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + + + + + Refresh + Yenile + + + + Reload all data and update the views + + + + + F5 + + + + + Clone Database + + + + + Open Database + + + + + Open the local copy of this database + + + + + Check out Commit + + + + + Download and open this specific commit + + + + + Check out Latest Commit + + + + + Check out the latest commit of the current branch + + + + + Save Revision to File + + + + + Saves the selected revision of the database to another file + + + + + Upload Database + + + + + Upload this database as a new commit + + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html> <head /> <body> <p> Şu anda dahili, salt okunur kimlik kullanıyorsunuz. Kendi veritabanınızı yüklemek için DBHub.io hesabı kullanıp konfigure etmeniz gerekiyor. </p> <p> Henüz DBHub.io hesabınız yok mu? <a href="https://dbhub.io/" ><span style=" text-decoration: underline; color:#007af4;" >Şimdi bir tane oluşturun</span ></a > ve veritabanınızı paylaşmak için <a href="#preferences" ><span style=" text-decoration: underline; color:#007af4;" >buradan</span ></a > sertifikanızı içe aktarın. </p> <p> Çevrimiçi yardım için <a href="https://dbhub.io/about" ><span style=" text-decoration: underline; color:#007af4;" >burayı</span ></a > ziyaret edin. </p> </body> </html> + + + + Back + Geri + + + + Select an identity to connect + + + + + Public + + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + + + + + Invalid URL: The host name does not match the host name of the current identity. + + + + + Invalid URL: No branch name specified. + + + + + Invalid URL: No commit ID specified. + + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + + + + + The database has unsaved changes. Are you sure you want to push it before saving? + + + + + The database you are trying to delete is currently opened. Please close it before deleting. + + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + + + + + RemoteLocalFilesModel + + + Name + İsim + + + + Branch + Branch + + + + Last modified + Son değiştirilme + + + + Size + Boyut + + + + Commit + Commit + + + + File + + + + + RemoteModel + + + Name + İsim + + + + Commit + Commit + + + + Last modified + Son değiştirilme + + + + Size + Boyut + + + + Size: + + + + + Last Modified: + + + + + Licence: + + + + + Default Branch: + + + + + RemoteNetwork + + + Choose a location to save the file + + + + + Error opening remote file at %1. +%2 + %1 adresinde bulunan dosya açılamadı. %2 + + + + Error: Invalid client certificate specified. + Hata: Geçersiz istemci sertifikası belirtildi. + + + + Please enter the passphrase for this client certificate in order to authenticate. + Kimlik doğrulaması için lütfen istemci sertifikasının parolasını girin. + + + + Cancel + İptal + + + + Uploading remote database to +%1 + Uzak veritabanı karşıya yükleniyor +%1 + + + + Downloading remote database from +%1 + Uzaktaki sunucu indiriliyor: +%1 + + + + + Error: The network is not accessible. + Hata: Ağa erişilemiyor. + + + + Error: Cannot open the file for sending. + Hata: Dosya gönderim için açılamadı. + + + + RemotePushDialog + + + Push database + Veritabanını aktar + + + + Database na&me to push to + Aktarılacak veritaba&nı adı + + + + Commit message + Commit mesajı + + + + Database licence + Veritabanı lisansı + + + + Public + Halka açık + + + + Branch + Branch + + + + Force push + Aktarmaya zorla + + + + Username + + + + + Database will be public. Everyone has read access to it. + Veritabanı halka açık olacak. Herkes okuma iznine sahip olacak. + + + + Database will be private. Only you have access to it. + Veritabanı özel olacak. Sadece sizin erişiminiz olacak. + + + + Use with care. This can cause remote commits to be deleted. + Dikkatlice kullanın. Bu, uzaktaki değişikliklerin silinmesine sebep olabilir. + + + + RunSql + + + Execution aborted by user + Yürütme kullanıcı tarafından durduruldu + + + + , %1 rows affected + , %1 satır etkilendi + + + + query executed successfully. Took %1ms%2 + sorgu başarıyla yürütüldü. %1ms%2 sürdü + + + + executing query + sorgu yürütülüyor + + + + SelectItemsPopup + + + A&vailable + &Kullanılabilir + + + + Sele&cted + &Seçilen + + + + SqlExecutionArea + + + Form + Form + + + + Find previous match [Shift+F3] + Önceki eşleşmeyi bul [Shift, F3] + + + + Find previous match with wrapping + Sarmalayarak bir önceki eşleşmeyi bul + + + + Shift+F3 + + + + + The found pattern must be a whole word + Bulunan desen tam bir kelime olmalıdır + + + + Whole Words + Kelimenin Tamamı + + + + Text pattern to find considering the checks in this frame + Bu alandaki kontrolleri baz alarak bulunacak metin deseni + + + + Find in editor + Editörde ara + + + + The found pattern must match in letter case + Bulunan desen büyük küçük harfe duyarlı olmalıdır + + + + Case Sensitive + Büyük küçük harfe duyarı + + + + Find next match [Enter, F3] + Sonraki eşleşmeyi bul [Enter, F3] + + + + Find next match with wrapping + Sarmalayarak bir sonraki eşleşmeyi bul + + + + F3 + + + + + Interpret search pattern as a regular expression + Arama desenini düzenli ifade(RegEx) olarak yorumla + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html> <head /> <body> <p> İşaretlendiğinde, girilen desen UNIX düzenli ifadesi olarak yorumlanır. <a href="https://en.wikibooks.org/wiki/Regular_Expressions" >Wikibooks</a > üzerinden düzenli ifadeleri inceleyebilirsiniz. </p> </body> </html> + + + + Regular Expression + Kurallı İfade (RegEx) + + + + + Close Find Bar + Araba çubuğunu kapat + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html> <head /> <body> <p>Son yürütülen ifadelerin sonuçları.</p> <p> Bu paneli daraltmak ve bunun yerine <span style=" font-style:italic;">SQL Log Günlüğünü</span> <span style=" font-style:italic;">Kullanıcı</span> seçimi ile kullanmak isteyebilirsiniz. </p> </body> </html> + + + + Results of the last executed statements + Son yürütülen ifadenin sonucu + + + + This field shows the results and status codes of the last executed statements. + Bu alan son yürütülen ifadenin durum kodlarını ve sonuçlarını gösterir. + + + + Couldn't read file: %1. + Dosya okunamadı: %1. + + + + + Couldn't save file: %1. + Dosya kaydedilemedi: %1. + + + + Your changes will be lost when reloading it! + Yeniden yüklerken değişiklikleriniz kaybolacak! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + "%1" dosyası başka bir program tarafından değiştirildi. Yeniden yüklemek istiyor musunuz?%2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) abs(X) fonksiyonu X sayısal argümanının mutlak değerini döndürür. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () changes() fonksiyonu en son yürütülen INSERT, DELETE veya UPDATE ifadesinden etkilenen veritabanı satırlarının sayısını döndürür. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) char(X1,X2,...,XN) fonksiyonu sırasıyla X1'den XN'e kadar olan tamsayıların unicode karakter karşılıklarından oluşan dizeyi döndürür. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) coalesce() fonksiyonu NULL olmayan ilk argümanı döndürür. Eğer tüm argümanlar NULL ise NULL değerini döndürür + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) glob(X,Y) fonksiyonu "Y GLOB X" ifadesinin eşdeğerini döndürür. + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) ifnull() fonksiyonu NULL olmayan ilk argümanı döndürür. Eğer her iki argüman da NULL ise NULL değerini döndürür. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) instr(X,Y) fonksiyonu ilk önce X dizesinin içinde Y dizesinin içeriğini arar ve eşleşen yerden önceki karakterlerin sayısının 1 fazlasını döndürür. Eğer Y, X içerisinde bulunmazsa 0 değerini döndürür. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) hex() fonksiyonu argümanı BLOB olarak yorumlar ve BLOB içeriğinin büyük harf onaltılık kısmını dize olarak döndürür. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () last_insert_rowid() fonksiyonu çağrılan veritabanı bağlantısından en son eklenen satırın ROWID değerini döndürür. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) length() fonksiyonu X dize değeri için NULL ifadesine kadar olan karakter sayısını döndürür (bayt olarak değil). + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X,Y) like() fonksiyonu "Y LIKE X" ifadesini uygulamak için kullanılır. + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) like() fonksiyonu "Y LIKE X ESCAPE Z" ifadesini uygulamak için kullanılır. + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) load_extension(X) fonksiyonu, SQLite eklentilerini X adlı paylaşılan kitaplık dosyasından yükler. Bu işlevin kullanımına Tercihler'den izin verilmelidir. + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X, Y) load_extension(X) işlevi, Y giriş noktasını kullanarak X adlı paylaşılan kitaplık dosyasından SQLite eklentilerini yükler. +Bu işlevin kullanımına Tercihler'den izin verilmelidir. + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) lower(X) fonksiyonu tüm X dizesinin tüm ASCII karakterlerinin küçük harfe dönüştürülmüş karşılığını döndürür. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ltrim(X) fonksiyonu X'in sol tarafındaki boşlukları siler. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) ltrim(X,Y) fonksiyonu X'in sol tarafındaki Y'de bulunan tüm karakterlerin silinmiş halini dize halinde döndürür. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) Çok argümanlı max() fonksiyonu en büyük değere sahip argümanı döndürür. Eğer herhangi bir argüman NULL ise NULL değerini döndürür. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) Çok argümanlı min() fonksiyonu en küçük değere sahip argümanı döndürür. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) nullif(X,Y) fonksiyonu eğer argümanlar farklı ise ilk argümanı, eğer argümanlar aynı ise NULL döndürür. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) printf(FORMAT,...) SQL fonksiyonu C dilindeki sqlite3_mprintf() fonksiyonu ve standard C kütüphanesindeki printf() fonksiyonu ile aynı mantıkta çalışır. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) quote(X) fonksiyonu girilen argümanlardan SQL ifadesi olarak tam anlamıyla dahil edilmeye uygun olanları döndürür. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () random() fonksiyonu -9223372036854775808 ve +9223372036854775807 tamsayı değerli arasında rastgele değer döndürür. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) randomblob(N) fonksiyonu rastgele bayt içeren N-byte türünde blob döndürür. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) replace(X,Y,Z) fonksiyonu X içindeki her Y argümanını, Z argümanıyla değiştirmesiyle oluşan dizeyi döndürür. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) round(X) fonksiyonu X ondalıklı sayısının ondalıklı kısmın sıfıra yuvarlanmasıyla oluşan değeri döndürür. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) round(X,Y) fonksiyonu X ondalıklı sayısının Y kadar sağındaki ondalıklı kısmı sıfıra yuvarlanmasıyla oluşan değeri döndürür. + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) rtrim(X) fonksiyonu X'in sağ tarafındaki boşlukları siler. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) rtrim(X,Y) fonksiyonu X'in sağ tarafındaki Y'de bulunan tüm karakterlerin silinmiş halini dize halinde döndürür. + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) soundex(X) fonksiyonu X dizesinin soundex kodlamasını string olarak döndürür. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) substr(X,Y) fonksiyonu X dizesinin başlangıcından Y. indekse kadar olan string bölümünü döndürür. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y,Z) substr(X,Y,Z) fonksiyonu X dizesinin Y. indeksinden başlayarak Z uzunluğu kadar olan string bölümünü döndürür. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () total_changes() fonksiyonu geçerli veritabanı bağlantısı açıldığından itibaren INSERT, UPDATE veya DELETE ifadelerinden etkilenen toplam satır sayısını döndürür. + + + + (X) trim(X) removes spaces from both ends of X. + (X) trim(X) fonksiyonu X'in içinde bulunan boşlukları siler. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) trim(X,Y) fonksiyonu X'in içindeki Y'de bulunan tüm karakterlerin silinmiş halini dize halinde döndürür. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) typeof(X) fonksiyonu X ifadesinin veri tipini gösteren dizeyi döndürür. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) unicode(X) fonksiyonu X'in ilk karakterine karşılık gelen unicode kod noktasını döndürür. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) upper(X) fonksiyonu tüm X dizesinin tüm küçük ASCII karakterlerinin büyük harf karşılığına çevrilmiş kopyasını döndürür. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) zeroblob(N) fonksiyonu 0x00'ın N bayt kadar meydana gelmiş halini BLOB olarak döndürür. + + + + + + + (timestring,modifier,modifier,...) + + + + + (format,timestring,modifier,modifier,...) + + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) avg() fonksiyonu bir gruptaki NULL olmayan tüm X değerlerinin ortalama değerini döndürür. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) count(X) fonksiyonu bir gruptaki X'in kaç kere NULL olmadığının sayısını döndürür. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) group_concat() fonksiyonu X'in NULL olmayan tüm değerlerle birleşimini dize olarak döndürür. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) group_concat() fonksiyonu X'in NULL olmayan tüm değerlerle birleşimini dize olarak döndürür. Eğer Y parametresi mevcutsa X'in örnekleri arasında ayraç olarak kullanılır. + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) max() küme fonksiyonu gruptaki tüm değerler arasından en büyük değeri döndürür. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) min() küme fonksiyonu gruptaki NULL olmayan tüm değerler arasından en küçük değeri döndürür. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) sum() ve total() küme fonksiyonları gruptaki NULL olmayan tüm değerlerin toplamını döndürür. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () Geçerli bölümdeki satır sayısı. Satırlar, 1'den başlayarak, tanım penceresinde ORDER BY ifadesi tarafından tanımlanan sırada veya aksi takdirde rastgele sırada numaralandırılır. + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () row_number() her gruptaki ilk eşin - boşlukları olan geçerli satırın sırası. ORDER BY ifadesi yoksa, tüm satırlar eş olarak kabul edilir ve bu işlev her zaman 1 değerini döndürür. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Geçerli satırın kendi bölümündeki eş grubunun sayısı - boşluklar olmadan geçerli satırın sırası. Bölümler, 1'den başlayarak, tanım penceresindeki ORDER BY ifadesi tarafından tanımlanan sırada numaralandırılır. ORDER BY iifadesi yoksa, tüm satırlar eş olarak kabul edilir ve bu işlev her zaman 1 değerini döndürür. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () İsme rağmen, bu işlev her zaman 0.0 ile 1.0 arasında (sıralama - 1) / (bölüm satırları - 1) değerine bir değer döndürür; burada sıralama, yerleşik pencere rank() fonksiyonu ve bölüm- tarafından döndürülen değerdir. satırlar, bölümdeki toplam satır sayısıdır. Bölüm yalnızca bir satır içeriyorsa, bu işlev 0,0 değerini döndürür. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () Kümülatif dağılım. Satır-sayısı/bölüm-satırları olarak hesaplanır; burada satır-sayısı, gruptaki son eş için row_number() tarafından döndürülen değerdir ve bölüm-satırdaki bölüm sayısıdır. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) N argümanı bir tamsayı olarak ele alınır. Bu işlev, bölümü olabildiğince eşit bir şekilde N gruplarına böler ve ORDER BY ifadesi tarafından tanımlanan sırada veya aksi takdirde rasgele sırayla her gruba 1 ve N arasında bir tam sayı atar. Gerekirse, önce daha büyük gruplar oluşur. Bu işlev, geçerli satırın parçası olduğu gruba atanan tamsayı değerini döndürür. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) Bölümdeki önceki satıra göre expr ifade değerlendirmesinin sonucunu döndürür. Veya, önceki satır yoksa (geçerli satır ilk satır olduğu için), NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr,offset) Uzaklık değişkeni sağlanırsa, negatif olmayan bir tam sayı olmalıdır. Bu durumda, döndürülen değer, bölüm içindeki geçerli satırdan önce satır ofseti satırlarına göre ifade değerlendirmesinin sonucudur. Ofset 0 ise, ifade geçerli satıra göre değerlendirilir. Geçerli satırdan önce satır kaydırma satırları yoksa, NULL döndürülür. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,offset,default) Varsayılan da sağlanmışsa, ofset ile tanımlanan satır yoksa NULL döndürülür. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) Bölümdeki bir sonraki satıra göre expr ifade değerlendirmesinin sonucunu döndürür. Veya, bir sonraki satır yoksa (geçerli satır son olduğu için), NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,offset) Uzaklık değişkeni sağlanırsa, negatif olmayan bir tam sayı olmalıdır. Bu durumda, döndürülen değer, bölüm içindeki geçerli satırdan sonra ifade ofset satırlarına göre ifade değerlendirmesinin sonucudur. Ofset 0 ise, ifade geçerli satıra göre değerlendirilir. Geçerli satırdan sonra satır ofseti satırı yoksa, NULL döndürülür. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) Bu yerleşik pencere işlevi, her satır için pencere çerçevesini birleştirilmiş pencere işlevi ile aynı şekilde hesaplar. Her satır için pencere çerçevesindeki ilk satıra karşı değerlendirilen ifade değerini döndürür. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) Bu yerleşik pencere işlevi, her satır için pencere çerçevesini birleştirilmiş pencere işlevi ile aynı şekilde hesaplar. Her satır için pencere çerçevesindeki son satıra göre değerlendirilen ifade değerini döndürür. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr,N) Bu yerleşik pencere işlevi, her satır için pencere çerçevesini birleştirilmiş pencere işlevi ile aynı şekilde hesaplar. Pencere çerçevesinin N satırına göre değerlendirilen ifade değerini döndürür. Satırlar, pencere çerçevesi içinde 1'den başlayarak, ORDER BY deyimi tarafından varsa veya başka bir şekilde rastgele sırada numaralandırılır. Bölümde N'inci satırı yoksa, NULL döndürülür. + + + + SqliteTableModel + + + reading rows + satırlar okunuyor + + + + loading... + yükleniyor... + + + + References %1(%2) +Hold %3Shift and click to jump there + Referanslar %1(%2) +Buraya atlamak için %3Shift'e basılı tutun ve tıklayın + + + + Error changing data: +%1 + Veri değiştirme hatası: %1 + + + + retrieving list of columns + sütunların listesi alınıyor + + + + Fetching data... + Veri alınıyor... + + + + + Cancel + İptal + + + + TableBrowser + + + Browse Data + Veriyi Görüntüle + + + + &Table: + &Tablo: + + + + Select a table to browse data + Verileri görüntülemek için tablo seçiniz + + + + Use this list to select a table to be displayed in the database view + Veritabanı görünümünde gösterilecek tabloyu seçmek için bu listeyi kullanın + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + Bu veritabanı tablosu görünümüdür. Aşağıdaki işlemleri yapabilirsiniz: +  - Satır içi değeri düzenlemek için yazmaya başlayın. +  - İçeriklerini hücre düzenleyici penceresinde düzenlemek için herhangi bir kaydı çift tıklayın. +  - Hücre içeriğini NULL'a dönüştürmek için Alt + Del tuşlarına basın. +  - Geçerli kaydı çoğaltmak için Ctrl + "tuşlarına basın. +  - Yukarıdaki hücreden değeri kopyalamak için Ctrl + '. +  - Standart seçim ve kopyalama / yapıştırma işlemleri. + + + + Text pattern to find considering the checks in this frame + Bu çerçevedeki kontrolleri baz alarak bulmak için metin deseni + + + + Find in table + Tabloda ara + + + + Find previous match [Shift+F3] + Önceki eşleşmeyi bul [Shift,F3] + + + + Find previous match with wrapping + Sarmalayarak bir önceki eşleşmeyi bul + + + + Shift+F3 + + + + + Find next match [Enter, F3] + Sonraki eşleşmeyi bul [Enter, F3] + + + + Find next match with wrapping + Sarmalayarak bir sonraki eşleşmeyi bul + + + + F3 + + + + + The found pattern must match in letter case + Bulunan desen büyük küçük harfe duyarlı şekilde eşleşmelidir + + + + Case Sensitive + Büyük Küçük Harfe Duyarlı + + + + The found pattern must be a whole word + Bulunan kalıp tam bir kelime olmalıdır + + + + Whole Cell + Tüm hücre + + + + Interpret search pattern as a regular expression + Arama desenini düzenliifade olarak yorumlama + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html> <head /> <body> <p> İşaretlendiğinde, girilen desen UNIX düzenli ifadesi olarak yorumlanır. <a href="https://en.wikibooks.org/wiki/Regular_Expressions" >Wikibooks</a > üzerinden düzenli ifadeleri inceleyebilirsiniz. </p> </body> </html> + + + + Regular Expression + Düzenli İfade (RegEx) + + + + + Close Find Bar + Arama Çubuğunu Kapat + + + + Text to replace with + Değiştirilecek metin + + + + Replace with + Şununla değiştir + + + + Replace next match + Sonraki eşleşmeyi değiştir + + + + + Replace + Değiştir + + + + Replace all matches + Tüm eşleşenleri değiştir + + + + Replace all + Tümünü Değiştir + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Başa sürükle</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Bu butona basıldığında üstteki tablo görünümünün başlangıcına kaydırılır.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + Bir sayfa yukarı kaydır + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>Bu butona tıklamak, yukarıdaki tablo görünümünde kayıt sayfasını yukarı doğru kaydırır.</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 / 0 + + + + Scroll one page downwards + Bir sayfa aşağı kaydır + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>Bu butona tıklamak, yukarıdaki tablo görünümünde kayıt sayfasını aşağıya doğru kaydırır.</p></body></html> + + + + > + > + + + + Scroll to the end + Sona sürükle + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>İstediğiniz kayda atlamak için buraya tıklayın</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>Bu buton belirtilen kayıt numarasına gitmek için kullanılır.</p></body></html> + + + + Go to: + Bu kayda gidin: + + + + Enter record number to browse + Görüntülemek için kayıt numarasını giriniz + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Bu alana veritabanı görünümünde görüntülemek istediğiniz kayıt numarasını giriniz ve Bu kayda gidin butonuna tıklayınız + + + + 1 + 1 + + + + Show rowid column + rowid sütununu göster + + + + Toggle the visibility of the rowid column + Rowid sütununun görünürlüğünü ayarla + + + + Unlock view editing + Görünüm düzenlemenin kilidini aç + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + Bu, geçerli görünümün düzenleme için kilidini açar. Ancak, düzenleme için uygun tetikleyicilere ihtiyacınız olacaktır. + + + + Edit display format + Görüntüleme formatını düzenle + + + + Edit the display format of the data in this column + Bu sütundaki verilerin görüntüleme biçimini düzenleyin + + + + + New Record + Yeni Kayıt + + + + + Insert a new record in the current table + Geçerli tabloya yeni bir kayıt ekle + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html> <head /> <body> <p> Bu düğme veritabanında yeni bir kayıt oluşturur. Farklı seçeneklerin olduğu açılır menüsüyü görüntülemek için fare düğmesini basılı tutun: </p> <ul> <li> <span style=" font-weight:600;">Yeni Kayıt</span>: veritabanına varsayılan değerleri olan yeni bir kayıt ekler. </li> <li> <span style=" font-weight:600;">Değerler Ekleyin...</span>: veritabanına eklenmeden önce değerleri girmek için bir iletişim kutusu açın. Bu, farklı kısıtlamaları karşılayan değerlerin girilmesine izin verir. Bu iletişim kutusu, bu kısıtlamalar nedeniyle <span style=" font-weight:600;">Yeni Kayıt</span> seçeneği başarısız olursa da açılır. </li> </ul> </body> </html> + + + + + Delete Record + Kaydı Sil + + + + Delete the current record + Geçerli kaydı sil + + + + + This button deletes the record or records currently selected in the table + Bu buton tabloda seçili olan kaydı veya kayıtları siler + + + + + Insert new record using default values in browsed table + Görüntülenen tablosundaki varsayılan değerleri kullanarak yeni kayıt ekle + + + + Insert Values... + Değerler Ekle... + + + + + Open a dialog for inserting values in a new record + Yeni bir kayda değer eklemek için bir iletişim kutusu açın + + + + Export to &CSV + &CSV dosyası olarak dışa aktar + + + + + Export the filtered data to CSV + Filtrelenmiş veriyi CSV olarak dışa aktar + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + Bu buton, görüntülenen tablonun verilerini şu anda görüntülendiği şekliyle (filtrelerden, görüntüleme biçimlerinden ve sütunların sıralamasına kadar) bir CSV dosyası olarak dışa aktarır. + + + + Save as &view + &Görünüm olarak kaydet + + + + + Save the current filter, sort column and display formats as a view + Geçerli filtreyi, sütunu ve görüntüleme biçimlerini bir görünüm olarak kaydedin + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + Bu buton, görüntülenen tablonun geçerli ayarlarını (filtreler, görüntü formatları ve sütunların sırasına kadar) daha sonra göz atabileceğiniz veya SQL ifadelerinde kullanabileceğiniz bir SQL görünümü olarak kaydeder. + + + + Save Table As... + Tabloyu Farklı Kaydet... + + + + + Save the table as currently displayed + Tabloyu şu anda gösterilen şekilde kaydet + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html> <head /> <body> <p> Bu açılır menü, o anda görüntülenen ve filtrelenen tablo için geçerli olan aşağıdaki seçenekleri sunar: </p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;" > <li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;" > CSV olarak Dışa Aktar: Bu seçenek, görüntülenen tablonun verilerini şu anda görüntülendiği şekliyle (filtrelerden, görüntüleme biçimlerinden ve sipariş sütunun sıralamasına kadar) bir CSV dosyasına aktarır. </li> <li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;" > Görünüm olarak kaydet: Bu seçenek, göz atılan tablonun geçerli ayarlarını (filtreler, görüntü formatları ve sipariş sütun sıralamasına kadar) daha sonra göz atabileceğiniz veya SQL ifadelerinde kullanabileceğiniz bir SQL görünümü olarak kaydeder. </li> </ul> </body> </html> + + + + Hide column(s) + Sütunları gizle + + + + Hide selected column(s) + Seçilen sütunları gizle + + + + Show all columns + Tüm sütunları göster + + + + Show all columns that were hidden + Gizlenen tüm sütunları göster + + + + + Set encoding + Kodlama seç + + + + Change the encoding of the text in the table cells + Tablo hücrelerindeki metnin kodlamasını değiştirme + + + + Set encoding for all tables + Tüm tablolar için kodlama seç + + + + Change the default encoding assumed for all tables in the database + Veritabanındaki tüm tablolar için varsayılan kodlamayı değiştirme + + + + Clear Filters + Filtreleri Temizle + + + + Clear all filters + Tüm filtreleri temizle + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + Bu buton, o anda görüntülenen tablonun başlık giriş alanlarında ayarlanan tüm filtreleri temizler. + + + + Clear Sorting + Sıralamayı Temizle + + + + Reset the order of rows to the default + Satırların sırasını varsayılana sıfırla + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + Bu buton, o anda görüntülenen tablo için belirtilen sıralama sütunlarını temizler ve varsayılan sıraya geri döner. + + + + Print + Yazdır + + + + Print currently browsed table data + Şu anda görüntülenen tablo verilerini yazdır + + + + Print currently browsed table data. Print selection if more than one cell is selected. + Şu anda görüntülenen tablo verilerini yazdırın. Birden fazla hücre seçilirse seçimi yazdırın. + + + + Ctrl+P + + + + + Refresh + Yenile + + + + Refresh the data in the selected table + Seçilen tablodaki verileri yenile + + + + This button refreshes the data in the currently selected table. + Bu buton, seçilen tablodaki verileri yeniler. + + + + F5 + + + + + Find in cells + Hücrelerde ara + + + + Open the find tool bar which allows you to search for values in the table view below. + Aşağıdaki tablo görünümünde değerleri aramanıza izin veren bul araç çubuğunu açın. + + + + + Bold + Kalın + + + + Ctrl+B + + + + + + Italic + İtalik + + + + + Underline + Altı çizili + + + + Ctrl+U + + + + + + Align Right + Sağa Hizala + + + + + Align Left + Sola Hizala + + + + + Center Horizontally + Yatayda Ortala + + + + + Justify + İki yana yasla + + + + + Edit Conditional Formats... + Koşullu Biçimlendirmeyi Düzenle... + + + + Edit conditional formats for the current column + Geçerli sütun için koşullu biçimlendirmeyi düzenle + + + + Clear Format + Biçimlendirmeleri Temizle + + + + Clear All Formats + Tüm Biçimlendirmeleri Temizle + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + Seçilen hücrelerdeki tüm hücre biçimlendirmelerini ve seçilen sütunlardaki tüm koşullu biçimleri temizle + + + + + Font Color + Yazı Rengi + + + + + Background Color + Arka Plan Rengi + + + + Toggle Format Toolbar + Biçim Araç Çubuğunu Aç/Kapat + + + + Show/hide format toolbar + Biçim araç çubuğunu göster/gizle + + + + + This button shows or hides the formatting toolbar of the Data Browser + Bu düğme Veri Görüntüleyici'nin biçimlendirme araç çubuğunu gösterir veya gizler + + + + Select column + Sütun seç + + + + Ctrl+Space + + + + + Replace text in cells + Hücrelerdeki metinleri değiştir + + + + Filter in any column + + + + + Ctrl+R + + + + + %n row(s) + + %n satır + + + + + , %n column(s) + + , %n sütun + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . Toplam: %1; Ortalama: %2; Min: %3; Maks: %4 + + + + Conditional formats for "%1" + "%1" için koşullu biçimlendirme + + + + determining row count... + satır sayısı belirleniyor... + + + + %1 - %2 of >= %3 + %1 - %2 >= %3 + + + + %1 - %2 of %3 + %1 - %2 / %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + Bu görünümde düzenlemeyi etkinleştirmek için lütfen sözde birincil anahtar girin. Bu, görünümdeki benzersiz bir sütunun adı olmalıdır. + + + + Delete Records + Kayıtları Sil + + + + Duplicate records + Yinelenen kayıtlar + + + + Duplicate record + Yinelenen kayıt + + + + Ctrl+" + + + + + Adjust rows to contents + Satırları içeriklere göre ayarlama + + + + Error deleting record: +%1 + Kayıt silme hatası: +%1 + + + + Please select a record first + Lütfen öncelikle kaydı seçiniz + + + + There is no filter set for this table. View will not be created. + Bu tablo için ayarlanmış filtre yok. Görünüm oluşturulmaz. + + + + Please choose a new encoding for all tables. + Lütfen tüm tablolar için yeni bir kodlama seçin. + + + + Please choose a new encoding for this table. + Lütfen bu tablo için yeni bir kodlama seçin. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Veritabanı kodlamasını kullanmak için alanı boş bırakın. + + + + This encoding is either not valid or not supported. + Bu kodlama geçerli değil veya desteklenmiyor. + + + + %1 replacement(s) made. + %1 değişimi yapıldı. + + + + VacuumDialog + + + Compact Database + Veritabanını Sıkıştır + + + + Warning: Compacting the database will commit all of your changes. + Uyarı: Veritabanını sıkıştırmak bütün değişikliklerinizi kaydedecektir. + + + + Please select the databases to co&mpact: + Sıkıştır&mak istediğiniz veritabanını seçiniz: + + + diff --git a/ConfigFiles/translations/sqlb_uk_UA.qm b/ConfigFiles/translations/sqlb_uk_UA.qm new file mode 100644 index 0000000..dfb5e51 Binary files /dev/null and b/ConfigFiles/translations/sqlb_uk_UA.qm differ diff --git a/ConfigFiles/translations/sqlb_uk_UA.ts b/ConfigFiles/translations/sqlb_uk_UA.ts new file mode 100644 index 0000000..8594b2c --- /dev/null +++ b/ConfigFiles/translations/sqlb_uk_UA.ts @@ -0,0 +1,6959 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + Про Оглядач БД для SQLite + + + + Version + Версія + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + + + + + AddRecordDialog + + + Add New Record + + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + + + + + Name + Ім'я + + + + Type + Тип + + + + Value + + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + + + + + Auto-increment + + + + + + Unique constraint + + + + + + Check constraint: %1 + + + + + + Foreign key: %1 + + + + + + Default value: %1 + + + + + + Error adding record. Message from database engine: + +%1 + + + + + Are you sure you want to restore all the entered values to their defaults? + + + + + Application + + + Possible command line arguments: + Доступні ключі командного рядку: + + + + Usage: %1 [options] [<database>|<project>] + + + + + + -h, --help Show command line options + + + + + -q, --quit Exit application after running scripts + + + + + -s, --sql <file> Execute this SQL file after opening the DB + + + + + -t, --table <table> Browse this table after opening the DB + + + + + -R, --read-only Open database in read-only mode + + + + + -o, --option <group>/<setting>=<value> + + + + + Run application with this setting temporarily set to value + + + + + -O, --save-option <group>/<setting>=<value> + + + + + Run application saving this value for this setting + + + + + -v, --version Display the current version + + + + + <database> Open this SQLite database + + + + + <project> Open this project file (*.sqbpro) + + + + + The -s/--sql option requires an argument + -s/--sql опція вимагає аргумент + + + + The -t/--table option requires an argument + -t/--table параметр таблиці вимагає аргумент + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + + + + + Invalid option/non-existant file: %1 + Невірна опція/файл не існує: %1 + + + + SQLite Version + Версія SQLite + + + + SQLCipher Version %1 (based on SQLite %2) + + + + + DB Browser for SQLite Version %1. + + + + + Built for %1, running on %2 + + + + + Qt Version %1 + + + + + The file %1 does not exist + Файл %1 не існує + + + + CipherDialog + + + SQLCipher encryption + Шифрування SQLCipher + + + + &Password + &Пароль + + + + &Reenter password + &Пароль ще раз + + + + Encr&yption settings + + + + + SQLCipher &3 defaults + + + + + SQLCipher &4 defaults + + + + + Custo&m + + + + + Page si&ze + &Розмір сторінки + + + + &KDF iterations + + + + + HMAC algorithm + + + + + KDF algorithm + + + + + Plaintext Header Size + + + + + Passphrase + Парольна фраза + + + + Raw key + Необроблений ключ + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + Будь ласка, вкажіть ключ шифрування. +Якщо Ви зміните будь-яке опційне налаштування, то його доведеться вводити під час кожного відкриття цього файлу бази даних. +Залиште поля паролю порожніми, щоб відімкнути шифрування. +Процес може тривати деякий час. Рекомендується створити резервну копію перед продовженням! Всі незбережені зміни збережуться автоматично. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + Будь ласка, введіть ключ для шифрування бази даних. +Якщо будь-які інші налаштування були змінені для цієї бази даних, то потрібно надати цю інформацію також. + + + + ColumnDisplayFormatDialog + + + Choose display format + Оберіть формат показу + + + + Display format + Формат показу + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + Оберіть формат показу для колонки '%1'. Формат застосується до кожного її значенням. + + + + Default + За замовчуванням + + + + Decimal number + Десяткове число + + + + Exponent notation + Експоненціальний запис + + + + Hex blob + Бінарні дані + + + + Hex number + Шістнадцяткове число + + + + Apple NSDate to date + Дата Apple NSDate + + + + Java epoch (milliseconds) to date + + + + + .NET DateTime.Ticks to date + + + + + Julian day to date + Дата за Юліанським календарем + + + + Unix epoch to local time + + + + + Date as dd/mm/yyyy + + + + + Lower case + Нижній регістр + + + + Custom display format must contain a function call applied to %1 + + + + + Error in custom display format. Message from database engine: + +%1 + + + + + Custom display format must return only one column but it returned %1. + + + + + Octal number + Вісімкове число + + + + Round number + Округлене число + + + + Unix epoch to date + Unix-час + + + + Upper case + Верхній регістр + + + + Windows DATE to date + Windows дата + + + + Custom + Мій формат + + + + CondFormatManager + + + Conditional Format Manager + + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + + + + + Add new conditional format + + + + + &Add + + + + + Remove selected conditional format + + + + + &Remove + + + + + Move selected conditional format up + + + + + Move &up + + + + + Move selected conditional format down + + + + + Move &down + + + + + Foreground + + + + + Text color + + + + + Background + Фон + + + + Background color + + + + + Font + Шрифт + + + + Size + Розмір + + + + Bold + Жирний + + + + Italic + Курсив + + + + Underline + Підкреслення + + + + Alignment + + + + + Condition + + + + + + Click to select color + + + + + Are you sure you want to clear all the conditional formats of this field? + + + + + DBBrowserDB + + + This database has already been attached. Its schema name is '%1'. + + + + + Please specify the database name under which you want to access the attached database + Будь ласка, вкажіть ім'я бази даних, під яким Ви хочете отримати доступ до під'єднаних баз даних + + + + Invalid file format + Неправильний формат файлу + + + + Do you really want to close this temporary database? All data will be lost. + + + + + Do you want to save the changes made to the database file %1? + Зберегти зроблені зміни у файлі бази даних %1? + + + + Database didn't close correctly, probably still busy + + + + + The database is currently busy: + + + + + Do you want to abort that other operation? + + + + + Exporting database to SQL file... + Експорт бази даних у файл SQL... + + + + + Cancel + Скасувати + + + + + No database file opened + + + + + Executing SQL... + Виконати код SQL... + + + + Action cancelled. + Дію скасовано. + + + + + Error in statement #%1: %2. +Aborting execution%3. + Помилка в операторі #%1: %2. +Виконання скасовано%3. + + + + + and rolling back + і відкочено + + + + didn't receive any output from %1 + + + + + could not execute command: %1 + + + + + Cannot delete this object + + + + + Cannot set data on this object + Не вдається встановити дані в цей об'єкт + + + + + A table with the name '%1' already exists in schema '%2'. + + + + + No table with name '%1' exists in schema '%2'. + + + + + + Cannot find column %1. + + + + + Creating savepoint failed. DB says: %1 + + + + + Renaming the column failed. DB says: +%1 + + + + + + Releasing savepoint failed. DB says: %1 + + + + + Creating new table failed. DB says: %1 + + + + + Copying data to new table failed. DB says: +%1 + + + + + Deleting old table failed. DB says: %1 + + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + + + + + could not get list of db objects: %1 + + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + Не вдалося скасувати видалення деяких об'єктів, асоційованих із цією таблицею. Найімовірніша причина цього - зміна імен деяких стовпців таблиці. Ось SQL оператор, який потрібно виправити і виконати вручну: + + + + could not get list of databases: %1 + + + + + Error loading extension: %1 + Помилка завантаження розширення: %1 + + + + could not get column information + неможливо отримати інформацію про стовпець + + + + Error setting pragma %1 to %2: %3 + Помилка встановлення Прагми %1 в %2: %3 + + + + File not found. + Файл не знайдено. + + + + DbStructureModel + + + Name + Ім'я + + + + Object + Об'єкт + + + + Type + Тип + + + + Schema + Схема + + + + Database + + + + + Browsables + + + + + All + Все + + + + Temporary + + + + + Tables (%1) + Таблиці (%1) + + + + Indices (%1) + Індекси (%1) + + + + Views (%1) + Перегляди (%1) + + + + Triggers (%1) + Тригери (%1) + + + + EditDialog + + + Edit database cell + Редагування комірки бази даних + + + + Mode: + Режим: + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + + + + + RTL Text + + + + + + Image + Зображення + + + + JSON + + + + + XML + + + + + + Automatically adjust the editor mode to the loaded data type + + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + + + + + Auto-switch + + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + + + + + Open preview dialog for printing the data currently stored in the cell + + + + + Auto-format: pretty print on loading, compact on saving. + + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + + + + + Word Wrap + + + + + Wrap lines on word boundaries + + + + + + Open in default application or browser + + + + + Open in application + + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + + + + + Save file reference... + + + + + Save reference to file + + + + + + Open in external application + + + + + Autoformat + + + + + &Export... + + + + + + &Import... + + + + + + Import from file + + + + + + Opens a file dialog used to import any kind of data to this database cell. + + + + + Export to file + + + + + Opens a file dialog used to export the contents of this database cell to a file. + + + + + + Print... + + + + + Open preview dialog for printing displayed image + + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + + + + + Copy Hex and ASCII + + + + + Copy selected hexadecimal and ASCII columns to the clipboard + + + + + Ctrl+Shift+C + + + + + Set as &NULL + Присвоїти &NULL + + + + Apply data to cell + + + + + This button saves the changes performed in the cell editor to the database cell. + + + + + Apply + Застосувати + + + + Text + Текст + + + + Binary + Двійкові дані + + + + Erases the contents of the cell + Очищення вмісту комірки + + + + This area displays information about the data present in this database cell + Ця зона показує інформацію про дані, що є в цій комірці бази даних + + + + Type of data currently in cell + Тип даних у комірці + + + + Size of data currently in table + Розмір даних у таблиці + + + + Choose a filename to export data + Вибрати ім'я файлу для експорту даних + + + + Type of data currently in cell: %1 Image + Тип даних у комірці: %1 Зображення + + + + %1x%2 pixel(s) + %1x%2 пікселів + + + + Type of data currently in cell: NULL + Тип даних у комірці: NULL + + + + + Type of data currently in cell: Text / Numeric + Тип даних у комірці: Текст / Числове + + + + + Image data can't be viewed in this mode. + + + + + + Try switching to Image or Binary mode. + + + + + + Binary data can't be viewed in this mode. + + + + + + Try switching to Binary mode. + + + + + + Image files (%1) + + + + + Binary files (*.bin) + + + + + Choose a file to import + Оберіть файл для імпорту + + + + %1 Image + + + + + Invalid data for this mode + + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + + + + + + + %n character(s) + + %n символ + %n символу + %n символів + + + + + Type of data currently in cell: Valid JSON + + + + + Type of data currently in cell: Binary + Тип даних у комірці: Двійкові дані + + + + Couldn't save file: %1. + Неможливо зберегти файл: %1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + + + + + + %n byte(s) + + %n байт + %n байта + %n байтів + + + + + EditIndexDialog + + + &Name + &Ім'я + + + + Order + Сортування + + + + &Table + &Таблиця + + + + Edit Index Schema + Редагування індексу схеми + + + + &Unique + &Унікальний + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + Для обмеження індексу частиною таблиці оберіть пункт WHERE, який обере частину таблиці для індексації + + + + Partial inde&x clause + Частковий клас інде&кса + + + + Colu&mns + Стов&пці + + + + Table column + Стовпець таблиці + + + + Type + Тип + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + Додати новий стовпець виразу до індекса. Стовпці виразів містять SQL вирази, а не імена стовпців + + + + Index column + Стовпець індексу + + + + Deleting the old index failed: +%1 + Невдале видалення старого індексу: +%1 + + + + Creating the index failed: +%1 + Невдале створення індексу + + + + EditTableDialog + + + Edit table definition + Редагування визначення таблиці + + + + Table + Таблиця + + + + Advanced + Додатково + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + Щоб створити таблицю 'WITHOUT rowid', потрібно, щоб у ній був первинний ключ INTEGER з відімкненим автоінкрементом. + + + + Without Rowid + Без ідентифікатора + + + + Fields + Поля + + + + Database sche&ma + + + + + Add + + + + + Remove + + + + + Move to top + + + + + Move up + + + + + Move down + + + + + Move to bottom + + + + + + Name + Ім'я + + + + + Type + Тип + + + + NN + + + + + Not null + Не (null) + + + + PK + ПК + + + + Primary key + Первинний ключ + + + + AI + АІ + + + + Autoincrement + Автоінкремент + + + + U + У + + + + + + Unique + Унікальне + + + + Default + За замовчуванням + + + + Default value + Значення за замовчуванням + + + + + + Check + Перевірити + + + + Check constraint + Перевірити обмеження + + + + Collation + + + + + + + Foreign Key + Зовнішній ключ + + + + Constraints + + + + + Add constraint + + + + + Remove constraint + + + + + Columns + Стовпці + + + + SQL + + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + + + + + + Primary Key + + + + + Add a primary key constraint + + + + + Add a foreign key constraint + + + + + Add a unique constraint + + + + + Add a check constraint + + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Поле з таким ім'ям уже існує. Будь ласка, переіменуйте його або виберіть інше ім'я для цього поля. + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + + + + + Error creating table. Message from database engine: +%1 + Помилка створення таблиці. Повідомлення від ядра бази даних: +%1 + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + На цей стовпець посилається зовнішній ключ у таблиці %1, тому її ім'я неможливо змінити. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + Існує принаймні один рядок, де це поле встановлено в NULL. Встановити цей прапорець неможливо. Спочатку змініть дані таблиці. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + Існує принаймні один рядок, де це поле містить нечислове значення. Встановити прапорець АІ неможливо. Спочатку змініть дані таблиці. + + + + Column '%1' has duplicate data. + + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + Ви впевнені, що хочете видалити поле '%1'? +Всі дані, які містяться в цьому полі, будуть втрачені. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + Будь ласка, перед встановленням прапорця без rowid додайте поле, яке має такі критерії: +- встановлено прапорець первинного ключа +- відімкнений автоінкремент + + + + ExportDataDialog + + + Export data as CSV + Експортувати дані у форматі CSV + + + + Tab&le(s) + &Таблиці + + + + Colu&mn names in first line + &Імена стовпців у першому рядку + + + + Fie&ld separator + &Роздільник полів + + + + , + , + + + + ; + ; + + + + Tab + Табуляція + + + + | + | + + + + + + Other + Інший + + + + &Quote character + &Символ лапок + + + + " + " + + + + ' + ' + + + + New line characters + Новий роздільник рядків + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + Гарний висновок + + + + + Could not open output file: %1 + Не вдалося відкрити вихідний файл: %1 + + + + + Choose a filename to export data + Виберіть ім'я файлу для експорту даних + + + + Export data as JSON + Експортувати дані у форматі JSON + + + + exporting CSV + + + + + exporting JSON + + + + + Please select at least 1 table. + Будь ласка, оберіть хоча б 1 таблицю. + + + + Choose a directory + Оберіть каталог + + + + Export completed. + Експорт завершено. + + + + ExportSqlDialog + + + Export SQL... + Експорт SQL... + + + + Tab&le(s) + &Таблиці + + + + Select All + Обрати все + + + + Deselect All + Скасувати вибір + + + + &Options + &Опції + + + + Keep column names in INSERT INTO + Імена стовпців у виразі INSERT INTO + + + + Multiple rows (VALUES) per INSERT statement + Кілька рядків (VALUES) на INSERT вираз + + + + Export everything + Експортувати всі + + + + Export data only + Експортувати тільки дані + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + Стара схема (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Перезаписати стару схему (DROP TABLE, тоді CREATE TABLE) + + + + Export schema only + Експортувати тільки схему даних + + + + Please select at least one table. + + + + + Choose a filename to export + Оберіть ім'я файлу для експорту + + + + Export completed. + Експорт завершено. + + + + Export cancelled or failed. + Експорт скасовано або виникла помилка. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + + + + + Find and Replace... + + + + + Print... + + + + + ExtendedTableWidget + + + Use as Exact Filter + + + + + Containing + + + + + Not containing + + + + + Not equal to + + + + + Greater than + + + + + Less than + + + + + Greater or equal + + + + + Less or equal + + + + + Between this and... + + + + + Regular expression + + + + + Edit Conditional Formats... + + + + + Set to NULL + Встановити в NULL + + + + Copy + Копіювати + + + + Copy with Headers + + + + + Copy as SQL + + + + + Paste + Вставити + + + + Print... + + + + + Use in Filter Expression + + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + Вміст буфера обміну більше ніж обраний діапазон. +Все одно вставити? + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + + + + + FileExtensionManager + + + File Extension Manager + + + + + &Up + + + + + &Down + + + + + &Add + + + + + &Remove + + + + + + Description + + + + + Extensions + + + + + *.extension + + + + + FilterLineEdit + + + Filter + Фільтр + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + + + + + Clear All Conditional Formats + + + + + Use for Conditional Format + + + + + Edit Conditional Formats... + + + + + Set Filter Expression + + + + + What's This? + + + + + Is NULL + + + + + Is not NULL + + + + + Is empty + + + + + Is not empty + + + + + Not containing... + + + + + Equal to... + + + + + Not equal to... + + + + + Greater than... + + + + + Less than... + + + + + Greater or equal... + + + + + Less or equal... + + + + + In range... + + + + + Regular expression... + + + + + FindReplaceDialog + + + Find and Replace + + + + + Fi&nd text: + + + + + Re&place with: + + + + + Match &exact case + + + + + Match &only whole words + + + + + When enabled, the search continues from the other end when it reaches one end of the page + + + + + &Wrap around + + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + + + + + Search &backwards + + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + + + + + &Selection only + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Use regular e&xpressions + + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + + + + + &Find Next + + + + + F3 + + + + + &Replace + + + + + Highlight all the occurrences of the text in the page + + + + + F&ind All + + + + + Replace all the occurrences of the text in the page + + + + + Replace &All + + + + + The searched text was not found + + + + + The searched text was not found. + + + + + The searched text was found one time. + + + + + The searched text was found %1 times. + + + + + The searched text was replaced one time. + + + + + The searched text was replaced %1 times. + + + + + ForeignKeyEditor + + + &Reset + &Скинути + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + + + + + ImportCsvDialog + + + Import CSV file + Імпортувати файл у форматі CSV + + + + Table na&me + + + + + &Column names in first line + І&мена стовпців у першому рядку + + + + Field &separator + &Роздільник полів + + + + , + , + + + + ; + ; + + + + + Tab + Табуляція + + + + | + | + + + + Other + Інший + + + + &Quote character + &Символ лапок + + + + + Other (printable) + + + + + + Other (code) + + + + + " + " + + + + ' + ' + + + + &Encoding + &Кодування + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + Обрізати поля? + + + + Separate tables + Розділити таблиці + + + + Advanced + Додатково + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + + + + + Ignore default &values + + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + + + + + Fail on missing values + + + + + Disable data type detection + + + + + Disable the automatic data type detection when creating a new table. + + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + + + + + Abort import + + + + + Ignore row + + + + + Replace existing row + + + + + Conflict strategy + + + + + + Deselect All + Скасувати вибір + + + + Match Similar + Співпадіння + + + + Select All + Обрати все + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + + + + + There is already a table named '%1'. Do you want to import the data into it? + + + + + Creating restore point failed: %1 + Помилка створення точки відновлення: %1 + + + + Creating the table failed: %1 + Помилка створення таблиці: %1 + + + + importing CSV + + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + + + + + Inserting row failed: %1 + Помилка вставки рядка: %1 + + + + MainWindow + + + DB Browser for SQLite + Оглядач для SQLite + + + + toolBar1 + панельІнструментів1 + + + + &Remote + &Віддалений + + + + &File + &Файл + + + + &Import + &Імпорт + + + + &Export + &Експорт + + + + &Edit + &Редагування + + + + &View + &Вид + + + + &Help + &Довідка + + + + &Tools + + + + + DB Toolbar + Панель інструментів БД + + + + Edit Database &Cell + Редагування &комірки БД + + + + Error Log + + + + + This button clears the contents of the SQL logs + + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + + + + + DB Sche&ma + Схе&ма БД + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + Виконати SQL + + + + + Execute current line + Виконати поточний рядок + + + + This button executes the SQL statement present in the current editor line + + + + + Shift+F5 + + + + + Sa&ve Project + &Зберегти проект + + + + Opens the SQLCipher FAQ in a browser window + Відкрити SQLCiphier ЧаПи в браузері + + + + Export one or more table(s) to a JSON file + Експортувати таблиці в JSON файл + + + + + Save SQL file as + Зберегти файл SQL як + + + + This button saves the content of the current SQL editor tab to a file + + + + + &Browse Table + Пе&регляд таблиці + + + + User + Користувачем + + + + Application + Додатком + + + + &Clear + О&чистити + + + + &New Database... + &Нова база даних... + + + + + Create a new database file + Створити новий файл бази даних + + + + This option is used to create a new database file. + Ця опція використовується щоб створити новий файл бази даних. + + + + Ctrl+N + + + + + + &Open Database... + &Відкрити базу даних... + + + + + + + + Open an existing database file + Відкрити існуючий файл бази даних + + + + + + This option is used to open an existing database file. + Ця опція використовується, щоб відкрити існуючий файл бази даних. + + + + Ctrl+O + + + + + &Close Database + &Закрити базу даних + + + + This button closes the connection to the currently open database file + + + + + + Ctrl+W + + + + + + Revert database to last saved state + Повернути базу даних до останнього збереженого стану + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + Ця опція використовується, щоб повернути поточний файл бази даних до його останнього збереженого стану. Всі зміни, зроблені з останньої операції збереження, буде втрачено. + + + + + Write changes to the database file + Записати зміни у файл бази даних + + + + This option is used to save changes to the database file. + Ця опція використовується, щоб зберегти зміни у файлі бази даних. + + + + Ctrl+S + + + + + Compact &Database... + + + + + Compact the database file, removing space wasted by deleted records + Ущільнити базу даних, видаливши простір, зайнятий видаленими записами + + + + + Compact the database file, removing space wasted by deleted records. + Ущільнити базу даних, видаливши простір, зайнятий видаленими записами. + + + + E&xit + &Вихід + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + Імпортувати дані з текстового файлу .sql в нову або існуючу базу даних. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + Ця опція дає змогу імпортувати дані з текстового файлу .sql у нову або існуючу базу даних. Файл SQL можна створити на більшості двигунів баз даних, включно з MySQL і PostgreSQL. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Відкрити майстер, який дає змогу імпортувати дані з файлу CSV у таблицю бази даних. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + Відкрити майстер, який дає змогу імпортувати дані з файлу CSV у таблицю бази даних. Файли CSV можна створити в більшості програм баз даних і електронних таблиць. + + + + Export a database to a .sql dump text file. + Експортувати базу даних у текстовий файл .sql. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + Ця опція дає змогу експортувати базу даних у текстовий файл .sql. Файли SQL містять всі дані, необхідні для створення бази даних у більшості движків баз даних, включно з MySQL і PostgreSQL. + + + + &Table(s) as CSV file... + Таблиці у файл CSV... + + + + Export a database table as a comma separated text file. + Експортувати таблицю бази даних як CSV текстовий файл. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + Експортувати таблицю бази даних як CSV текстовий файл, готовий для імпортування в інші бази даних або програми електронних таблиць. + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + Відкрити майстер створення таблиць, де можливо визначити ім'я і поля для нової таблиці в базі даних + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + Відкрити майстер видалення таблиці, де можна вибрати таблицю бази даних для видалення. + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + Відкрити майстер зміни таблиці, де можливо перейменувати існуючу таблиць. Можна додати або видалити поля таблиці, так само змінювати імена полів і типи. + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + Відкрити майстер створення Індексу, в якому можна визначити новий індекс для існуючої таблиці бази даних. + + + + &Preferences... + &Налаштування... + + + + + Open the preferences window. + Відкрити вікно налаштувань. + + + + &DB Toolbar + &Панель інструментів БД + + + + Shows or hides the Database toolbar. + Показати або приховати панель інструментів БД. + + + + Shift+F1 + + + + + Execute all/selected SQL + + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + + + + + Open SQL file(s) + + + + + This button opens files containing SQL statements and loads them in new editor tabs + + + + + Execute line + + + + + &Wiki + + + + + F1 + + + + + Bug &Report... + + + + + Feature Re&quest... + + + + + Web&site + + + + + &Donate on Patreon... + + + + + &Attach Database... + + + + + + Add another database file to the current database connection + + + + + This button lets you add another database file to the current database connection + + + + + &Set Encryption... + + + + + SQLCipher &FAQ + + + + + Table(&s) to JSON... + + + + + Open Data&base Read Only... + + + + + Ctrl+Shift+O + + + + + Save results + + + + + Save the results view + + + + + This button lets you save the results of the last executed query + + + + + + Find text in SQL editor + + + + + Find + + + + + This button opens the search bar of the editor + + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + + + + + Find or replace + + + + + This button opens the find/replace dialog for the current editor tab + + + + + Ctrl+H + + + + + Export to &CSV + Експортувати в &CSV + + + + Save as &view + Зберегти як &вигляд + + + + Save as view + Зберегти як вигляд + + + + Browse Table + + + + + Shows or hides the Project toolbar. + + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + + + + + This button lets you open a DB Browser for SQLite project file + + + + + Extra DB Toolbar + + + + + New In-&Memory Database + + + + + Drag && Drop Qualified Names + + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + + + + + Drag && Drop Enquoted Names + + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + + + + + &Integrity Check + + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + + + + + &Foreign-Key Check + + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + + + + + &Quick Integrity Check + + + + + Run a quick integrity check over the open DB + + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + + + + + &Optimize + + + + + Attempt to optimize the database + + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + + + + + + Print + + + + + Print text from current SQL editor tab + + + + + Open a dialog for printing the text in the current SQL editor tab + + + + + Print the structure of the opened database + + + + + Open a dialog for printing the structure of the opened database + + + + + &Save Project As... + + + + + + + Save the project in a file selected in a dialog + + + + + Save A&ll + + + + + + + Save DB file, project file and opened SQL files + + + + + Ctrl+Shift+S + + + + + &Recently opened + &Недавно відкриті + + + + Open &tab + Відкрити &вкладку + + + + Open an existing database file in read only mode + Відкрити існуючий файл БД у режимі тільки для читання + + + + Ctrl+T + + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Структура БД + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Переглянути дані + + + + Un/comment block of SQL code + + + + + Un/comment block + + + + + Comment or uncomment current line or selected block of code + + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + + + + + Ctrl+/ + + + + + Stop SQL execution + + + + + Stop execution + + + + + Stop the currently running SQL script + + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Редагувати прагму + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + + + + + SQL &Log + &Журнал SQL + + + + Show S&QL submitted by + По&казати SQL, який виконано + + + + &Plot + &Графік + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + + + + + + Project Toolbar + + + + + Extra DB toolbar + + + + + + + Close the current database file + + + + + Ctrl+F4 + + + + + &Revert Changes + &Скасувати зміни + + + + &Write Changes + &Записати зміни + + + + &Database from SQL file... + &База даних з файлу SQL... + + + + &Table from CSV file... + &Таблиці з файлу CSV... + + + + &Database to SQL file... + Базу &даних в файл SQL... + + + + &Create Table... + &Створити таблицю... + + + + &Delete Table... + &Видалити таблицю... + + + + &Modify Table... + &Змінити таблицю... + + + + Create &Index... + Створити і&ндекс... + + + + W&hat's This? + Що &це таке? + + + + &About + + + + + This button opens a new tab for the SQL editor + + + + + &Execute SQL + Ви&конати код SQL + + + + + + Save SQL file + Зберегти файл SQL + + + + &Load Extension... + + + + + Ctrl+E + + + + + Export as CSV file + Експортувати у файл CSV + + + + Export table as comma separated values file + Експортувати таблицю як CSV файл + + + + + Save the current session to a file + Зберегти поточний стан у файл + + + + Open &Project... + + + + + + Load a working session from a file + Завантажити робочий стан із файлу + + + + Copy Create statement + Копіювати CREATE вираз + + + + Copy the CREATE statement of the item to the clipboard + Копіювати CREATE вираз елемента в буффер обміну + + + + Ctrl+Return + + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Encrypted + Зашифрований + + + + Read only + Тільки для читання + + + + Database file is read only. Editing the database is disabled. + База даних тільки для читання. Редагування заборонене. + + + + Database encoding + Кодування бази даних + + + + Database is encrypted using SQLCipher + База даних зашифрована з використанням SQLCipher + + + + + Choose a database file + Вибрати файл бази даних + + + + Could not open database file. +Reason: %1 + Неможливо відкрити файл бази даних. +Причина: %1 + + + + + + Choose a filename to save under + Вибрати ім'я, під яким зберегти дані + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Вийшла нова версія оглядача для SQLite (%1.%2.%3).<br/><br/>Вона доступна для скачування за посиланням <a href='%4'>%4</a>. + + + + DB Browser for SQLite project file (*.sqbpro) + Файл проекту оглядача для SQLite (*.sqbpro) + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + Скасувати всі зміни, зроблені у файлі бази даних '%1' після останнього збереження? + + + + Choose a file to import + Оберіть файл для імпорту + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + Створити новий файл бази даних для збереження імпортованих даних? +Якщо відповідь Ні, то здійсниться спроба імпортувати дані файлу SQL в поточну базу даних. + + + + File %1 already exists. Please choose a different name. + Файл %1 вже існує. Оберіть інше ім'я. + + + + Error importing data: %1 + Помилка імпортування даних: %1 + + + + Import completed. + Імпорт завершено. + + + + Delete View + Видалити перегляд + + + + Delete Trigger + Видалити тригер + + + + Delete Index + Видалити індекс + + + + Reset Window Layout + + + + + Alt+0 + + + + + Simplify Window Layout + + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + + + + + Dock Windows at Left Side + + + + + Dock Windows at Top + + + + + The database is currenctly busy. + + + + + Click here to interrupt the currently running query. + + + + + In-Memory database + + + + + Do you want to save the changes made to the project file '%1'? + + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + + + + + Are you sure you want to delete the view '%1'? + + + + + Are you sure you want to delete the trigger '%1'? + + + + + Are you sure you want to delete the index '%1'? + + + + + Error: could not delete the table. + + + + + Error: could not delete the view. + + + + + Error: could not delete the trigger. + + + + + Error: could not delete the index. + + + + + Message from database engine: +%1 + + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + + + + + Error checking foreign keys after table modification. The changes will be reverted. + + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + + + + + Edit View %1 + + + + + Edit Trigger %1 + + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + + + + + -- EXECUTING SELECTION IN '%1' +-- + + + + + -- EXECUTING LINE IN '%1' +-- + + + + + -- EXECUTING ALL IN '%1' +-- + + + + + + At line %1: + + + + + Result: %1 + + + + + Result: %2 + + + + + Execution finished with errors. + + + + + Execution finished without errors. + + + + + Opened '%1' in read-only mode from recent file list + + + + + Opened '%1' from recent file list + + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + + + + + Open Database or Project + + + + + Attach Database... + + + + + Import CSV file(s)... + + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + + + + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + + + + + Project saved to file '%1' + + + + + This action will open a new SQL tab with the following statements for you to edit and run: + + + + + Busy (%1) + + + + + Rename Tab + + + + + Duplicate Tab + + + + + Close Tab + + + + + Opening '%1'... + + + + + There was an error opening '%1'... + + + + + Value is not a valid URL or filename: %1 + + + + + %1 rows returned in %2ms + + + + + Window Layout + + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + + + + + Do you want to save the changes made to SQL tabs in a new project file? + + + + + Do you want to save the changes made to the SQL file %1? + + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + + + + + Could not find resource file: %1 + + + + + Choose a project file to open + + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + + + + + Could not open project file for writing. +Reason: %1 + + + + + Collation needed! Proceed? + Потрібно виконати зіставлення! Продовжити? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + Таблиця в базі даних вимагає виконання спеціальної функції зіставлення '%1'. +Якщо Ви продовжите, то можливе псування Вашої бази даних. +Створіть резервну копію! + + + + creating collation + + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + + + + + Please specify the view name + Вкажіть ім'я вигляду + + + + There is already an object with that name. Please choose a different name. + Об'єкт із зазначеним ім'ям уже існує. Виберіть інше ім'я. + + + + View successfully created. + Вигляд успішно створений. + + + + Error creating view: %1 + Помилка створення вигляду: %1 + + + + This action will open a new SQL tab for running: + + + + + Press Help for opening the corresponding SQLite reference page. + + + + + + Delete Table + Видалити таблицю + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + Встановлення значень PRAGMA завершить поточну транзакцію. Встановити значення? + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + + + + + Choose text files + Оберіть текстові файли + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + Помилка під час збереження файлу бази даних. Це означає, що не всі зміни в базу даних було збережено. Спочатку Вам необхідно розв'язати таку помилку. + +%1 + + + + Text files(*.sql *.txt);;All files(*) + Текстові файли(*.sql *.txt);;Всі файли(*) + + + + Modify View + Змінити вид + + + + Modify Trigger + Змінити тригер + + + + Modify Index + Змінити індекс + + + + Modify Table + Змінити таблицю + + + + Select SQL file to open + Обрати файл SQL для відкривання + + + + Select file name + Обрати ім'я файлу + + + + Select extension file + Обрати розширення файлу + + + + Extension successfully loaded. + Розширення успішно завантажено. + + + + Error loading extension: %1 + Помилка завантаження розширення: %1 + + + + + Don't show again + Не показувати наступного разу + + + + New version available. + Доступна нова версія. + + + + NullLineEdit + + + Set to NULL + Встановити в NULL + + + + Alt+Del + + + + + PlotDock + + + Plot + Графік + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + + + + + Columns + Стовпці + + + + X + X + + + + Y1 + + + + + Y2 + + + + + Axis Type + + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + + + + + Line type: + Тип лінії: + + + + + None + Ні + + + + Line + Звичайна + + + + StepLeft + Ступенева, зліва + + + + StepRight + Ступенева, справа + + + + StepCenter + Ступенева, по центру + + + + Impulse + Імпульс + + + + Point shape: + Форма точок: + + + + Cross + Хрест + + + + Plus + Плюс + + + + Circle + Коло + + + + Disc + Диск + + + + Square + Квадрат + + + + Diamond + Ромб + + + + Star + Зірка + + + + Triangle + Трикутник + + + + TriangleInverted + Трикутник перевернутий + + + + CrossSquare + Хрест у квадраті + + + + PlusSquare + Плюс у квадраті + + + + CrossCircle + Хрест у колі + + + + PlusCircle + Плюс у колі + + + + Peace + Світ + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>Зберегти поточний графік...</p><p>Формат файлу вибирається розширенням (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + Зберегти поточний графік... + + + + + Load all data and redraw plot + + + + + + + Row # + Рядок # + + + + Copy + Копіювати + + + + Print... + + + + + Show legend + + + + + Stacked bars + + + + + Date/Time + + + + + Date + + + + + Time + + + + + + Numeric + + + + + Label + + + + + Invalid + + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + + + + + Choose an axis color + + + + + Choose a filename to save under + Вибрати ім'я, під яким зберегти дані + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;Всі файли(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + + + + + Loading all remaining data for this table took %1ms. + + + + + PreferencesDialog + + + Preferences + Налаштування + + + + &Database + &База даних + + + + Database &encoding + &Кодування бази даних + + + + Open databases with foreign keys enabled. + Відкривати бази даних з увімкненими зовнішніми ключами. + + + + &Foreign keys + &Зовнішні ключі + + + + + + + + + + + + enabled + увімкнені + + + + Default &location + &Розташування за замовчуванням + + + + + + ... + ... + + + + &General + &Загальні + + + + Remember last location + Запам'ятовувати останню директорію + + + + Always use this location + Завжди відкривати це розташування + + + + Remember last location for session only + Запам'ятовувати останню директорію тільки для сесії + + + + Lan&guage + &Мова + + + + Toolbar style + + + + + + + + + Only display the icon + + + + + + + + + Only display the text + + + + + + + + + The text appears beside the icon + + + + + + + + + The text appears under the icon + + + + + + + + + Follow the style + + + + + Automatic &updates + &Стежити за оновленнями + + + + DB file extensions + + + + + Manage + + + + + SQ&L to execute after opening database + SQ&L,який треба виконання після відкривання бази даних + + + + Data &Browser + Оглядач &даних + + + + Remove line breaks in schema &view + Видалити розрив рядка в &схемі даних + + + + Show remote options + Показати віддалені опції + + + + Prefetch block si&ze + Розмір блоку &вибірки + + + + Default field type + Тип даних за замовчуванням + + + + Font + Шрифт + + + + &Font + &Шрифт + + + + Content + Вміст + + + + Symbol limit in cell + Кількість символів у осередку + + + + NULL + NULL + + + + Regular + Звичайні + + + + Binary + Двійкові дані + + + + Background + Фон + + + + Filters + Фільтри + + + + Threshold for completion and calculation on selection + + + + + Show images in cell + + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + + + + + Escape character + Символ екранування + + + + Delay time (&ms) + Час затримки (&мс) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + Час затримки перед застосуванням нового фільтра. Нульове значення припиняє очікування. + + + + &SQL + Р&едактор SQL + + + + Settings name + Ім'я налаштувань + + + + Context + Контекст + + + + Colour + Колір + + + + Bold + Жирний + + + + Italic + Курсив + + + + Underline + Підкреслення + + + + Keyword + Ключове слово + + + + Function + Функція + + + + Table + Таблиця + + + + Comment + Коментар + + + + Identifier + Ідентифікатор + + + + String + Рядок + + + + Current line + Поточна рядок + + + + SQL &editor font size + Розмір шрифту в &редакторі SQL + + + + Tab size + Розмір табуляції + + + + SQL editor &font + &Шрифт у редакторі SQL + + + + Error indicators + Індикатори помилок + + + + Hori&zontal tiling + Гори&зонтальний розподіл + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + Якщо ця опція увімкнена, то SQL редактор і результат запиту будуть розташовані поруч по горизонталі. + + + + Code co&mpletion + Авто&доповнення коду + + + + Main Window + + + + + Database Structure + Структура БД + + + + Browse Data + Переглянути дані + + + + Execute SQL + Виконати SQL + + + + Edit Database Cell + Редагування комірки БД + + + + When this value is changed, all the other color preferences are also set to matching colors. + + + + + Follow the desktop style + + + + + Dark style + + + + + Application style + + + + + This sets the font size for all UI elements which do not have their own font size option. + + + + + Font size + + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + + + + + Database structure font size + + + + + Font si&ze + + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + + + + + Field display + + + + + Displayed &text + + + + + + + + + + Click to set this color + + + + + Text color + + + + + Background color + + + + + Preview only (N/A) + + + + + Foreground + + + + + SQL &results font size + + + + + &Wrap lines + + + + + Never + + + + + At word boundaries + + + + + At character boundaries + + + + + At whitespace boundaries + + + + + &Quotes for identifiers + + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + + + + + "Double quotes" - Standard SQL (recommended) + + + + + `Grave accents` - Traditional MySQL quotes + + + + + [Square brackets] - Traditional MS SQL Server quotes + + + + + Keywords in &UPPER CASE + + + + + When set, the SQL keywords are completed in UPPER CASE letters. + + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + + + + + Close button on tabs + + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + + + + + &Extensions + Р&озширення + + + + Select extensions to load for every database: + Оберіть розширення, щоб завантажувати їх для кожної бази даних: + + + + Add extension + Додати розширення + + + + Remove extension + Видалити розширення + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>Оглядач для SQLite дає змогу використовувати оператор REGEXP 'з коробки'. Але попри<br/>це, можливі кілька різних варіантів реалізацій цього оператора й Ви вільні<br/>у виборі, який саме використовувати. Можна відімкнути нашу реалізацію та використовувати іншу -<br/>шляхом завантаження відповідного розширення. В цьому випадку потрібно перезавантажити програму.</p></body></html> + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + + + + + Allow loading extensions from SQL code + + + + + Clone databases into + Клонувати бази даних до + + + + Proxy + + + + + Configure + + + + + Disable Regular Expression extension + Відімкнути розширення Регулярних Виразів + + + + Remote + Віддалений сервер + + + + CA certificates + СА-сертифікати + + + + + Subject CN + Об'єкт CN + + + + Common Name + Звичайне ім'я + + + + Subject O + Об'єкт O + + + + Organization + Організація + + + + + Valid from + Дійсний з + + + + + Valid to + Дійсний до + + + + + Serial number + Серійний номер + + + + Your certificates + Ваш сертифікат + + + + File + Файл + + + + Subject Common Name + Звичайне ім'я об'єкта + + + + Issuer CN + Розповсюдник CN + + + + Issuer Common Name + Звичайне ім'я розповсюдника + + + + + Choose a directory + Оберіть каталог + + + + The language will change after you restart the application. + Мова зміниться після перезапуску програми. + + + + Select extension file + Обираємо файл розширення + + + + Extensions(*.so *.dylib *.dll);;All files(*) + + + + + Import certificate file + Імпортувати файл сертифіката + + + + No certificates found in this file. + Для цього файлу не знайдено сертифікатів. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + Ви впевнені, що хочете видалити цей сертифікат? Всі дані сертифіката видаляться з налаштувань програми! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + + + + + ProxyDialog + + + Proxy Configuration + + + + + Pro&xy Type + + + + + Host Na&me + + + + + Port + + + + + Authentication Re&quired + + + + + &User Name + + + + + Password + + + + + None + Ні + + + + System settings + + + + + HTTP + + + + + Socks v5 + + + + + QObject + + + Error importing data + Помилка імпортування даних + + + + from record number %1 + з запису номер %1 + + + + . +%1 + . +%1 + + + + Importing CSV file... + + + + + Cancel + Скасувати + + + + All files (*) + + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + + + + + Left + + + + + Right + + + + + Center + + + + + Justify + + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + + + + + DB Browser for SQLite Project Files (*.sqbpro) + + + + + SQL Files (*.sql) + + + + + All Files (*) + + + + + Text Files (*.txt) + + + + + Comma-Separated Values Files (*.csv) + + + + + Tab-Separated Values Files (*.tsv) + + + + + Delimiter-Separated Values Files (*.dsv) + + + + + Concordance DAT files (*.dat) + + + + + JSON Files (*.json *.js) + + + + + XML Files (*.xml) + + + + + Binary Files (*.bin *.dat) + + + + + SVG Files (*.svg) + + + + + Hex Dump Files (*.dat *.bin) + + + + + Extensions (*.so *.dylib *.dll) + + + + + RemoteCommitsModel + + + Commit ID + + + + + Message + + + + + Date + + + + + Author + + + + + Size + Розмір + + + + Authored and committed by %1 + + + + + Authored by %1, committed by %2 + + + + + RemoteDatabase + + + Error opening local databases list. +%1 + Помилка відкривання списку локальних баз даних. +%1 + + + + Error creating local databases list. +%1 + Помилка створення списку локальних баз даних. +%1 + + + + RemoteDock + + + Remote + Віддалений + + + + Local + Локальний + + + + Identity + Ідентичний + + + + Push currently opened database to server + + + + + DBHub.io + + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + + + + + Current Database + + + + + Clone + + + + + User + Користувачем + + + + Database + + + + + Branch + + + + + Commits + + + + + Commits for + + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + + + + + Back + + + + + Delete Database + + + + + Delete the local clone of this database + + + + + Open in Web Browser + + + + + Open the web page for the current database in your browser + + + + + Clone from Link + + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + + + + + Refresh + Оновити + + + + Reload all data and update the views + + + + + F5 + + + + + Clone Database + + + + + Open Database + + + + + Open the local copy of this database + + + + + Check out Commit + + + + + Download and open this specific commit + + + + + Check out Latest Commit + + + + + Check out the latest commit of the current branch + + + + + Save Revision to File + + + + + Saves the selected revision of the database to another file + + + + + Upload Database + + + + + Upload this database as a new commit + + + + + Select an identity to connect + + + + + Public + + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + + + + + Invalid URL: The host name does not match the host name of the current identity. + + + + + Invalid URL: No branch name specified. + + + + + Invalid URL: No commit ID specified. + + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + + + + + The database has unsaved changes. Are you sure you want to push it before saving? + + + + + The database you are trying to delete is currently opened. Please close it before deleting. + + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + + + + + RemoteLocalFilesModel + + + Name + Ім'я + + + + Branch + + + + + Last modified + Востаннє змінений + + + + Size + Розмір + + + + Commit + + + + + File + + + + + RemoteModel + + + Name + Ім'я + + + + Last modified + Востаннє змінений + + + + Size + Розмір + + + + Commit + + + + + Size: + + + + + Last Modified: + + + + + Licence: + + + + + Default Branch: + + + + + RemoteNetwork + + + Choose a location to save the file + + + + + Error opening remote file at %1. +%2 + Помилка під час відкривання віддаленого файлу %1. +%2 + + + + Error: Invalid client certificate specified. + Помилка: Вказано неправильний сертифікат клієнта. + + + + Please enter the passphrase for this client certificate in order to authenticate. + Будь ласка, введіть парольну фразу для цього сертифіката клієнта, для автентифікації + + + + Cancel + + + + + Uploading remote database to +%1 + Вивантаження віддаленої бази даних до +%1. {1?} + + + + Downloading remote database from +%1 + Завантаження віддаленої бази даних із +%1. {1?} + + + + + Error: The network is not accessible. + Помилка: Мережа не доступна. + + + + Error: Cannot open the file for sending. + Помилка: Неможливо відкрити файл для відправлення. + + + + RemotePushDialog + + + Push database + + + + + Database na&me to push to + + + + + Commit message + + + + + Database licence + + + + + Public + + + + + Branch + + + + + Force push + + + + + Username + + + + + Database will be public. Everyone has read access to it. + + + + + Database will be private. Only you have access to it. + + + + + Use with care. This can cause remote commits to be deleted. + + + + + RunSql + + + Execution aborted by user + Виконання скасовано користувачем + + + + , %1 rows affected + , %1 рядків постраждало + + + + query executed successfully. Took %1ms%2 + + + + + executing query + + + + + SelectItemsPopup + + + A&vailable + + + + + Sele&cted + + + + + SqlExecutionArea + + + Form + Форма + + + + Find previous match [Shift+F3] + + + + + Find previous match with wrapping + + + + + Shift+F3 + + + + + The found pattern must be a whole word + + + + + Whole Words + + + + + Text pattern to find considering the checks in this frame + + + + + Find in editor + + + + + The found pattern must match in letter case + + + + + Case Sensitive + + + + + Find next match [Enter, F3] + + + + + Find next match with wrapping + + + + + F3 + + + + + Interpret search pattern as a regular expression + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Regular Expression + + + + + + Close Find Bar + + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + + + + + Results of the last executed statements + Результати останніх виконаних операторів + + + + This field shows the results and status codes of the last executed statements. + Це поле показує результати та коди статусів останніх виконаних операторів. + + + + Couldn't read file: %1. + Неможливо прочитати файл: %1. + + + + + Couldn't save file: %1. + Неможливо зберегти файл: %1. + + + + Your changes will be lost when reloading it! + + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) Функція abs(X) повертає модуль числа аргументу X. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () Функція changes() повертає кількість рядків у базі даних, які було змінено, вставлено або видалено після вдалого виконання INSERT, DELETE або UPDATE. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) Функція coalesce() повертає копію першого аргументу не-NULL, якщо такого немає, то повертає NULL + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) Функція ifnull() повертає копію першого аргументу не-NULL, або якщо обидва аргумента NULL, то повертає NULL. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) Функція instr(X,Y) повертає кількість символів, починаючи з якого в рядку X знайдено підрядок Y, або 0, якщо такого не знайдено. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) Функція hex() інтерпретує аргумент як BLOB і повертає рядок в 16-ричній системі числення із вмістом аргументу. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () Функція last_insert_rowid() повертає ROWID останнього вставленого рядка. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) Для строкового значення X, функція length(X) повертає кількість символів (НЕ байтів) від початку рядка до першого символу '\0'. + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X,Y) фукнція like() еквівалентна виразу "Y LIKE X". + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) Функція like() еквівалент вираження "Y LIKE X ESCAPE Z". + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) Функція lower(X) повертає копію рядка X, в якій усі ACSII символи переведені в нижній регістр. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ltrim(X) видаляє символи пробілів зліва для рядка X. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) Функція char(X1,X2,...,XN) повертає рядок, складений із символів, переданих як аргументи. + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) функція glob(X,Y) еквівалент вираження "Y GLOB X". + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) Функція ltrim (X,Y) повертає новий рядок шляхом видалення з рядка X зліва будь-якого символу з Y. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) Функція max() повертає аргумент з максимальним значенням, або NULL, якщо хоча б один аргумент дорівнює NULL. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) Функція min() повертає аргумент з мінімальним значенням. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) Функція nullif(X,Y) повертає перший аргумент, якщо аргументи різні, або NULL, якщо вони однакові. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) Функція printf(FORMAT,...) працює так само, як printf() зі стандартної бібліотеки мови програмування Сі. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) Функція quote(X) повертає змінений рядок X, який можна використовувати в SQL виразах. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () Функція random() повертає псевдовипадкове цілочисельне значення з діапозона від -9223372036854775808 до +9223372036854775807. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) Функція randomblob(N) повертає N-байтний BLOB, що містить псевдовипадкові байти. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) Функція replace(X,Y,Z) повертає новий рядок на основі рядка X, заміною всіх підрядків Y на Z. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) Функція round(X) округлює X до цілого значення. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) Функція round(X,Y) округлює X до Y чисел після коми праворуч. + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) rtrim(X) видаляє символи пробілу праворуч від рядка X. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) Функція rtrim(X,Y) повертає новий рядок шляхом видалення з рядка X праворуч будь-якого символу з рядка Y. + + + + + + + (timestring,modifier,modifier,...) + (timestring,modifier,modifier,...) + + + + (format,timestring,modifier,modifier,...) + (format,timestring,modifier,modifier,...) + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) Функція soundex(X) повертає копію рядка X, кодовану в форматі soundex. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) substr(X,Y) повертає підрядок з рядка X, починаючи з Y-го символу. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y,Z) Функція substr(X,Y,Z) повертає підрядок з рядка X, починаючи з Y-го символу, завдовжки Z-символів. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () Функція total_changes() повертає кількість рядків, змінених за допомогою INSERT, UPDATE або DELETE, починаючи з того моменту, коли під'єднання до бази даних було відкрито. + + + + (X) trim(X) removes spaces from both ends of X. + (X) trim(X) видаляє пробіли з обох сторін рядка X. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) Функція trim(X,Y) створює новий рядок з X шляхом видалення з обох кінців символів, які присутні в рядку Y. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) Функція typeof(X) повертає рядок із типом даних вираження X. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) Функція unicode(X) повертає числове значення UNICODE коду символу. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) Функція upper(X) повертає копію рядка X, в якій для кожного ASCII символу регістр буде перетворений з нижнього у верхній. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) Функція zeroblob(N) повертає BLOB розміром N байт зі значеннями 0x00. + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) Функція avg() повертає середнє значення для всіх не-NULL значень групи. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) Функція count(X) повертає кількість рядків, у яких X не-NULL у групі. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) Функція group_concat() повертає рядок з усіх значень X не-NULL. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) Функція group_concat() повертає рядок з усіх значень X не-NULL. Y - роздільник між значеннями X. + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) Агрегатна функція max() повертає максимальне значення для X. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) Агрегатна функція min() повертає мінімальне не-NULL значення для X. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) Агрегатні функції sum() і total() повертають суму всіх не-NULL значень для X. + + + + SqliteTableModel + + + reading rows + + + + + loading... + + + + + References %1(%2) +Hold %3Shift and click to jump there + + + + + Error changing data: +%1 + Помилка зміни даних: +%1 + + + + retrieving list of columns + + + + + Fetching data... + + + + + + Cancel + + + + + TableBrowser + + + Browse Data + Переглянути дані + + + + &Table: + &Таблиця: + + + + Select a table to browse data + Оберіть таблицю для перегляду даних + + + + Use this list to select a table to be displayed in the database view + Використовуйте цей список, щоб вибрати таблицю, яку буде показано в переглядачі баз даних + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + + + + + Text pattern to find considering the checks in this frame + + + + + Find in table + + + + + Find previous match [Shift+F3] + + + + + Find previous match with wrapping + + + + + Shift+F3 + + + + + Find next match [Enter, F3] + + + + + Find next match with wrapping + + + + + F3 + + + + + The found pattern must match in letter case + + + + + Case Sensitive + + + + + The found pattern must be a whole word + + + + + Whole Cell + + + + + Interpret search pattern as a regular expression + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Regular Expression + + + + + + Close Find Bar + + + + + Text to replace with + + + + + Replace with + + + + + Replace next match + + + + + + Replace + + + + + Replace all matches + + + + + Replace all + + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Прокрутити на початок</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Натискання цієї кнопки переміщує до початку таблиці.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 з 0 + + + + Scroll one page downwards + + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + + + + + > + > + + + + Scroll to the end + Прокрутити до кінця + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>Натисніть тут, щоб перейти до зазначеного запису</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>Ця кнопка використовується, щоб переміститися до запису, номер якого зазначений в зоні Перейти до </p></body></html> + + + + Go to: + Перейти до: + + + + Enter record number to browse + Введіть номер запису для перегляду + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Надрукуйте номер запису в цій зоні й натисніть кнопку Перейти до:, щоб показати запис у базі даних + + + + 1 + 1 + + + + Show rowid column + Показати стовпець rowid + + + + Toggle the visibility of the rowid column + Змінити видимість стовпця rowid + + + + Unlock view editing + Розблокувати редагування вигляду + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + Це розблоковує поточний вигляд для редагування. Проте вам необхідно виділити тригери для редагування + + + + Edit display format + Формат показу + + + + Edit the display format of the data in this column + Редагування формату показу для даних у цьому стовпці + + + + + New Record + Додати запис + + + + + Insert a new record in the current table + Додати новий запис у поточну таблицю + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + + + + + + Delete Record + Видалити запис + + + + Delete the current record + Видалити поточний запис + + + + + This button deletes the record or records currently selected in the table + + + + + + Insert new record using default values in browsed table + + + + + Insert Values... + + + + + + Open a dialog for inserting values in a new record + + + + + Export to &CSV + Експортувати в &CSV + + + + + Export the filtered data to CSV + + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + + + + + Save as &view + Зберегти як &вигляд + + + + + Save the current filter, sort column and display formats as a view + + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + + + + + Save Table As... + + + + + + Save the table as currently displayed + + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + + + + + Hide column(s) + + + + + Hide selected column(s) + + + + + Show all columns + + + + + Show all columns that were hidden + + + + + + Set encoding + Кодування + + + + Change the encoding of the text in the table cells + Змінити кодування тексту в цій комірці таблиці + + + + Set encoding for all tables + Встановити кодування для всіх таблиць + + + + Change the default encoding assumed for all tables in the database + Змінити кодування за замовчуванням для всіх таблиць у базі даних + + + + Clear Filters + + + + + Clear all filters + Очистити всі фільтри + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + + + + + Clear Sorting + + + + + Reset the order of rows to the default + + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + + + + + Print + + + + + Print currently browsed table data + + + + + Print currently browsed table data. Print selection if more than one cell is selected. + + + + + Ctrl+P + + + + + Refresh + Оновити + + + + Refresh the data in the selected table + + + + + This button refreshes the data in the currently selected table. + Ця кнопка оновлює дані обраної на цей момент таблиці. + + + + F5 + + + + + Find in cells + + + + + Open the find tool bar which allows you to search for values in the table view below. + + + + + + Bold + Жирний + + + + Ctrl+B + + + + + + Italic + Курсив + + + + + Underline + Підкреслення + + + + Ctrl+U + + + + + + Align Right + + + + + + Align Left + + + + + + Center Horizontally + + + + + + Justify + + + + + + Edit Conditional Formats... + + + + + Edit conditional formats for the current column + + + + + Clear Format + + + + + Clear All Formats + + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + + + + + + Font Color + + + + + + Background Color + + + + + Toggle Format Toolbar + + + + + Show/hide format toolbar + + + + + + This button shows or hides the formatting toolbar of the Data Browser + + + + + Select column + + + + + Ctrl+Space + + + + + Replace text in cells + + + + + Filter in any column + + + + + Ctrl+R + + + + + %n row(s) + + + + + + + + + , %n column(s) + + + + + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + + + + + Conditional formats for "%1" + + + + + determining row count... + + + + + %1 - %2 of >= %3 + + + + + %1 - %2 of %3 + %1 - %2 з %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + Будь ласка, введіть псевдо-первинний ключ для можливості редагування у цьому виді. Це має бути і'мя унікального стовпця у виді + + + + Delete Records + + + + + Duplicate records + + + + + Duplicate record + Дублікат запису + + + + Ctrl+" + + + + + Adjust rows to contents + + + + + Error deleting record: +%1 + Помилка видалення запису: +%1 + + + + Please select a record first + Будь ласка, спочатку оберіть запис + + + + There is no filter set for this table. View will not be created. + + + + + Please choose a new encoding for all tables. + Оберіть нову систему кодування для всіх таблиць. + + + + Please choose a new encoding for this table. + Оберіть нову систему кодування для цієї таблиці. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Залиште це поле порожнім якщо хочете, щоб використовувалося кодування за замовчуванням. + + + + This encoding is either not valid or not supported. + Кодування невірне або не підтримується. + + + + %1 replacement(s) made. + + + + + VacuumDialog + + + Compact Database + Ущільнення БД + Ущільнення бази даних + + + + Warning: Compacting the database will commit all of your changes. + + + + + Please select the databases to co&mpact: + + + + diff --git a/ConfigFiles/translations/sqlb_zh.qm b/ConfigFiles/translations/sqlb_zh.qm new file mode 100644 index 0000000..2cbe4ec Binary files /dev/null and b/ConfigFiles/translations/sqlb_zh.qm differ diff --git a/ConfigFiles/translations/sqlb_zh.ts b/ConfigFiles/translations/sqlb_zh.ts new file mode 100644 index 0000000..8ac3fc0 --- /dev/null +++ b/ConfigFiles/translations/sqlb_zh.ts @@ -0,0 +1,7008 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + 关于 DB Browser for SQLite + + + + Version + 版本 + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB Browser for SQLite 是一个开源免费的可视化工具,用于创建、设计和编辑 SQLite 数据库文件。</p><p>它以第 2 版 Mozilla 公共许可,以及第 3 版及之后版本的 GNU 通用许可方式授权。你可以在遵循这些许可的条件下修改或重新发布它。</p><p>参阅 <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> 了解细节。</p><p>要获得本程序的更多信息,请访问我们的网站: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">这个软件使用了来自于 </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a> <span style=" font-size:small;">的 GPL/LGPL Qt Toolkit。<br/>参阅 </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> 了解许可条款和其他信息。</span></p><p><span style=" font-size:small;">它还使用了 Mark James 的 Silk 图标集,以第 2.5 和 3.0 版知识共享署名(CCA)许可方式授权。<br/>参阅 </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> 了解细节。</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + 新增记录 + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + 为新增的记录填写满足约束的值。加粗的字段必须填写。 + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + 在值列,你可以选择给对应名字列的值。类型列显示了字段的类型。默认值的显示样式和 NULL 值一样。 + + + + Name + 名称 + + + + Type + 类型 + + + + Value + + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + 要插入的值。如果没有修改,就会插入事先填好的默认值。 + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + 当你在上面编辑值时,这里会显示插入新记录所用的 SQL 语句。你可以在保存前手动修改这些语句。 + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">保存</span> 将会把显示的 SQL 语句提交到数据库以插入新记录。</p><p><span style=" font-weight:600;">恢复默认</span> 将会把 <span style=" font-weight:600;">值</span> 恢复成默认值。</p><p><span style=" font-weight:600;">取消</span> 将会关闭此界面,不执行 SQL 语句。</p></body></html> + + + + Auto-increment + + 自增 + + + + + Unique constraint + + 唯一约束 + + + + + Check constraint: %1 + + 检查约束: %1 + + + + + Foreign key: %1 + + 外键: %1 + + + + + Default value: %1 + + 默认值: %1 + + + + + Error adding record. Message from database engine: + +%1 + 添加记录失败。来自数据库引擎的消息: + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + 你确定要把输入的所有值都恢复成默认值吗? + + + + Application + + + Possible command line arguments: + 可用命令行参数: + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + -o/--option 和 -O/--save-option 选项需要 group/setting=value 格式的参数 + + + + Usage: %1 [options] [<database>|<project>] + + 用法: %1 [选项] [<数据库>|<项目>] + + + + + -h, --help Show command line options + -h, --help 显示命令行选项 + + + + -q, --quit Exit application after running scripts + -q, --quit 在运行脚本后退出应用程序 + + + + -s, --sql <file> Execute this SQL file after opening the DB + -s, --sql <文件> 在打开数据库后执行此 SQL 文件 + + + + -t, --table <table> Browse this table after opening the DB + -t, --table <表> 在打开数据库后浏览此表 + + + + -R, --read-only Open database in read-only mode + -R, --read-only 用只读模式打开数据库 + + + + -o, --option <group>/<setting>=<value> + -o, --option <分组/设置=值> + + + + Run application with this setting temporarily set to value + 临时以此设置运行程序 + + + + -O, --save-option <group>/<setting>=<value> + -O, --save-option <分组/设置=值> + + + + Run application saving this value for this setting + 以此设置运行程序并保存设置 + + + + -v, --version Display the current version + -v, --version 显示当前版本 + + + + <database> Open this SQLite database + <文件> 打开这个 SQLite 数据库 + + + + <project> Open this project file (*.sqbpro) + <项目> 打开这个项目文件 (*.sqbpro) + + + + The -s/--sql option requires an argument + -s/--sql 选项需要一个参数 + + + + The file %1 does not exist + 文件 %1 不存在 + + + + The -t/--table option requires an argument + -t/--table 选项需要一个参数 + + + + Invalid option/non-existant file: %1 + 无效选项/不存在的文件: %1 + + + + SQLite Version + SQLite 版本 + + + + SQLCipher Version %1 (based on SQLite %2) + SQLCipher 版本 %1 (基于 SQLite %2) + + + + DB Browser for SQLite Version %1. + DB Browser for SQLite 版本 %1. + + + + Built for %1, running on %2 + 为 %1 构建,运行于 %2 + + + + Qt Version %1 + Qt 版本 %1 + + + + CipherDialog + + + SQLCipher encryption + SQLCipher 加密 + + + + &Password + 密码(&P) + + + + &Reenter password + 确认密码(&R) + + + + Encr&yption settings + 加密设置(&Y) + + + + SQLCipher &3 defaults + SQLCipher &3 默认 + + + + SQLCipher &4 defaults + SQLCipher &4 默认 + + + + Custo&m + 自定义(&M) + + + + Page si&ze + 页大小(&Z) + + + + &KDF iterations + KDF迭代(&K) + + + + HMAC algorithm + HMAC算法 + + + + KDF algorithm + KDF算法 + + + + Plaintext Header Size + 纯文本文件头大小 + + + + Passphrase + 口令 + + + + Raw key + 原始密钥 + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + 请设置密码以加密数据库。 +注意如果修改了任何其他选项设置,以及每次打开数据库时,您都需要重新输入此密码。 +不填密码表示禁用加密。 +加密过程将花费一些时间,您应该在加密之前备份数据库!修改加密前,未保存的更改将会被应用。 + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + 请输入加密数据库的密码。 +如果此数据库的任何其他设置发生变化,您也需要提供此信息。 + + + + ColumnDisplayFormatDialog + + + Choose display format + 选择显示格式 + + + + Display format + 显示格式 + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + 为列 '%1' 选择显示格式,将在显示之前应用到值。 + + + + Default + 默认 + + + + Decimal number + 十进制数 + + + + Exponent notation + 指数 + + + + Hex blob + 十六进制大型对象 + + + + Hex number + 十六进制数 + + + + Apple NSDate to date + 苹果 NSDate 到日期 + + + + Java epoch (milliseconds) to date + Java 时间戳(毫秒)到日期 + + + + .NET DateTime.Ticks to date + .NET 日期时间(Ticks到日期) + + + + Julian day to date + 儒略日 (Julian day) 到日期 + + + + Unix epoch to local time + Unix 时间戳到本地时间 + + + + Date as dd/mm/yyyy + 日期,格式为 dd/mm/yyyy + + + + Lower case + 小写 + + + + Custom display format must contain a function call applied to %1 + 自定义显示格式必须包含处理 %1 的函数 + + + + Error in custom display format. Message from database engine: + +%1 + 自定义显示格式有误。数据库引擎提供的错误信息为:\n\n%1 + + + + Custom display format must return only one column but it returned %1. + 自定义显示格式必须只返回1列,但目前返回 %1 。 + + + + Octal number + 八进制数 + + + + Round number + 取整数 + + + + Unix epoch to date + Unix 时间到日期 + + + + Upper case + 大写 + + + + Windows DATE to date + Windows 日期到日期 + + + + Custom + 自定义 + + + + CondFormatManager + + + Conditional Format Manager + 条件格式管理器 + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + 此对话框用于创建和编辑条件格式。每个单元格的样式将被设置为首个匹配条件的格式。条件格式可以上下移动,靠前的行优先生效。条件的语法与过滤器相同。空条件将适用于所有值。 + + + + Add new conditional format + 创建新的条件格式 + + + + &Add + 添加(&A) + + + + Remove selected conditional format + 删除选中的条件格式 + + + + &Remove + 删除(&R) + + + + Move selected conditional format up + 上移选中的条件格式 + + + + Move &up + 上移(&U) + + + + Move selected conditional format down + 下移选中的条件格式 + + + + Move &down + 下移(&D) + + + + Foreground + 前景 + + + + Text color + 文本颜色 + + + + Background + 背景 + + + + Background color + 背景颜色 + + + + Font + 字体 + + + + Size + 大小 + + + + Bold + 粗体 + + + + Italic + 斜体 + + + + Underline + 下划线 + + + + Alignment + 对齐 + + + + Condition + 条件 + + + + + Click to select color + 点击选择颜色 + + + + Are you sure you want to clear all the conditional formats of this field? + 确实要清除全部条件格式吗? + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + 请指明想要附加的数据库名 + + + + Invalid file format + 无效的文件格式 + + + + Do you want to save the changes made to the database file %1? + 您是否想保存对数据库文件 %1 做出的更改? + + + + Exporting database to SQL file... + 正在导出数据库到 SQL 文件... + + + + + Cancel + 取消 + + + + Executing SQL... + 正在执行 SQL... + + + + Action cancelled. + 操作已取消。 + + + + This database has already been attached. Its schema name is '%1'. + 此数据库已被附加。它的架构名是 '%1'. + + + + Do you really want to close this temporary database? All data will be lost. + 你确定要关闭此临时数据库吗?所有数据都会丢失。 + + + + Database didn't close correctly, probably still busy + 数据库未正确关闭,可能正忙 + + + + The database is currently busy: + 数据库正忙: + + + + Do you want to abort that other operation? + 确定要放弃操作吗? + + + + + No database file opened + 没有打开数据库文件 + + + + + Error in statement #%1: %2. +Aborting execution%3. + 错误在语句 #%1: %2. +正在放弃执行%3. + + + + + and rolling back + 并回滚 + + + + didn't receive any output from %1 + 未收到来自 %1 的任何输出 + + + + could not execute command: %1 + 未能执行命令: %1 + + + + Cannot delete this object + 无法删除此对象 + + + + Cannot set data on this object + 不能为此数据设置对象 + + + + + A table with the name '%1' already exists in schema '%2'. + 一个与 '%1' 同名的表已经存在于架构 '%2' 中。 + + + + No table with name '%1' exists in schema '%2'. + 架构 '%2' 中不存在表 '%1' 。 + + + + + Cannot find column %1. + 找不到列 %1 。 + + + + Creating savepoint failed. DB says: %1 + 创建保存点失败。数据库显示:%1 + + + + Renaming the column failed. DB says: +%1 + 重命名列失败。数据库显示:\n%1 + + + + + Releasing savepoint failed. DB says: %1 + 释放保存点失败。数据库显示:%1 + + + + Creating new table failed. DB says: %1 + 建立新表失败。数据库显示:%1 + + + + Copying data to new table failed. DB says: +%1 + 复制数据到新表失败。数据库显示:\n%1 + + + + Deleting old table failed. DB says: %1 + 删除旧表失败。数据库显示:%1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + 将表 '%1' 重命名为 '%2' 时出错。\n数据库引擎的错误信息:\n%1 + + + + could not get list of db objects: %1 + 未能获取数据库对象列表:%1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + 还原某些和这个表关联的对象失败。这个最可能是因为某些列的名称更改了。这里是您可能需要手动修复和执行的 SQL 语句: + + + + + + could not get list of databases: %1 + 无法获取数据库列表: %1 + + + + Error loading extension: %1 + 加载扩展时出错: %1 + + + + could not get column information + 无法获取列信息 + + + + Error setting pragma %1 to %2: %3 + 设置杂注 %1 为 %2 时出错: %3 + + + + File not found. + 文件找不到。 + + + + DbStructureModel + + + Name + 名称 + + + + Object + 对象 + + + + Type + 类型 + + + + Schema + 架构 + + + + Database + 数据库 + + + + Browsables + 可浏览的 + + + + All + 所有 + + + + Temporary + 临时的 + + + + Tables (%1) + 表 (%1) + + + + Indices (%1) + 索引 (%1) + + + + Views (%1) + 视图 (%1) + + + + Triggers (%1) + 触发器 (%1) + + + + EditDialog + + + Edit database cell + 编辑数据库单元格 + + + + Mode: + 模式: + + + + + Image + 图像 + + + + Set as &NULL + 设为&空 + + + + Apply data to cell + 将数据应用到单元格 + + + + This button saves the changes performed in the cell editor to the database cell. + 此按钮把单元格编辑器中的修改应用到数据库单元格中。 + + + + Apply + 应用 + + + + Text + 文本 + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + 这是单元格编辑器支持的模式列表。选择一种模式以查看或编辑当前单元格的数据。 + + + + RTL Text + 右到左文本 + + + + Binary + 二进制 + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + 自动调整编辑器模式为加载的数据的类型 + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + 此复选按钮可启用或禁用编辑器模式的自动切换。当新单元格被选中或新数据被导入时,如果启用了自动切换,模式会调整为检测到的数据类型。之后你也手动切换编辑器的模式。如果你希望浏览各单元格的时候都保持手动选择的模式,请把此按钮切到关闭状态。 + + + + Auto-switch + 自动切换 + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + 此文本编辑器允许你编辑纯文本。还支持JSON或XML格式的代码高亮,自动格式化和验证。\n\n格式错误用红色波浪线表示。 + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + 此Qt编辑器用于右到左的文本(默认文本编辑器不支持这种格式)。当检测到右到左字符时,会自动选择这种编辑器模式。 + + + + Open preview dialog for printing the data currently stored in the cell + 打印预览此单元格中的数据 + + + + Auto-format: pretty print on loading, compact on saving. + 自动格式: 读取时格式化,存储时紧凑化。 + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + 当启用时,自动格式特性将在数据加载时格式化数据,增加换行并缩进以提高可读性。在保存数据时,自动格式特性会通过删除换行、不必要的空白字符的方式来紧凑化数据。 + + + + Word Wrap + 自动换行 + + + + Wrap lines on word boundaries + 在单词边界自动换行 + + + + + Open in default application or browser + 用默认程序或浏览器打开 + + + + Open in application + 用外部程序打开 + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + 将单元格的值视为文件路径或URL,在默认程序或浏览器中打开。 + + + + Save file reference... + 保留文件引用... + + + + Save reference to file + I'm not sure + 将引用保存到文件 + + + + + Open in external application + 在外部程序中编辑 + + + + Autoformat + 自动格式 + + + + &Export... + 导出(&E) + + + + + &Import... + 导入(&I) + + + + + Import from file + 从文件导入 + + + + + Opens a file dialog used to import any kind of data to this database cell. + 打开文件选择对话框,导入任何类型的数据到此数据库单元格。 + + + + Export to file + 导出到文件 + + + + Opens a file dialog used to export the contents of this database cell to a file. + 打开文件选择对话框,导出此数据库单元格的内容到一个文件里。 + + + + Erases the contents of the cell + 删除单元格的内容 + + + + This area displays information about the data present in this database cell + 这个区域显示存在于这个数据库单元格中的数据的相关信息 + + + + Type of data currently in cell + 当前在单元格中的数据的类型 + + + + Size of data currently in table + 当前在表中的数据的大小 + + + + + Print... + 打印... + + + + Open preview dialog for printing displayed image + 打开打印预览对话框,预览图像 + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + 打开打印预览对话框,预览文本 + + + + Copy Hex and ASCII + 拷贝十六进制和 ASCII + + + + Copy selected hexadecimal and ASCII columns to the clipboard + 拷贝选中的十六进制和 ASCII 列到剪贴板中 + + + + Ctrl+Shift+C + + + + + Choose a filename to export data + 选择一个导出数据的文件名 + + + + Type of data currently in cell: %1 Image + 当前在单元格中的数据的类型: %1 图像 + + + + %1x%2 pixel(s) + %1x%2 像素 + + + + Type of data currently in cell: NULL + 当前在单元格中的数据的类型: 空 + + + + + Type of data currently in cell: Text / Numeric + 当前在单元格中的数据的类型: 文本/ 数值 + + + + + Image data can't be viewed in this mode. + 此模式下无法查看图像数据。 + + + + + Try switching to Image or Binary mode. + 尝试切换到图像或二进制模式。 + + + + + Binary data can't be viewed in this mode. + 此模式下无法查看二进制数据。 + + + + + Try switching to Binary mode. + 尝试切换到二进制模式。 + + + + Couldn't save file: %1. + + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + 单元格内数据已被保存到临时文件并用默认程序打开。你可以编辑文件并保存,然后将更改应用到单元格。 + + + + + Image files (%1) + 图像文件 (%1) + + + + Binary files (*.bin) + 二进制文件 (*.bin) + + + + Choose a file to import + 选择一个要导入的文件 + + + + %1 Image + %1 图像 + + + + Invalid data for this mode + 数据对此模式非法 + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + 单元格中包含非法的 %1 数据。原因: %2. 你确实想把它应用到单元格中吗? + + + + + + %n character(s) + + %n 个字符 + + + + + Type of data currently in cell: Valid JSON + 当前在单元格中的数据的类型: 合法的JSON + + + + Type of data currently in cell: Binary + 当前在单元格中的数据的类型: 二进制 + + + + + %n byte(s) + + %n 字节 + + + + + EditIndexDialog + + + &Name + 名称(&N) + + + + Order + 顺序 + + + + &Table + 表(&T) + + + + Edit Index Schema + 编辑索引架构 + + + + &Unique + 唯一(&U) + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + 为了将索引范围限制到表中的一部分,您可以在此指定 WHERE 子句来在表中选择需要索引的部分 + + + + Partial inde&x clause + 部分索引子句(&x) + + + + Colu&mns + 列(&m) + + + + Table column + 表中的列 + + + + Type + 类型 + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + 向索引中添加一个新的表达式列。表达式列包含 SQL 表达式而不是列名。 + + + + Index column + 索引列 + + + + Deleting the old index failed: +%1 + 删除旧索引失败: +%1 + + + + Creating the index failed: +%1 + 创建索引时失败: +%1 + + + + EditTableDialog + + + Edit table definition + 编辑表定义 + + + + Table + + + + + Advanced + 高级 + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + 让表'没有 rowid'。设置此标志需要有一个 INTEGER 类型并被设为主键、非自增的字段。 + + + + Without Rowid + 无 Rowid + + + + Fields + 字段 + + + + Database sche&ma + 数据库架构(&M) + + + + Add + 增加 + + + + Remove + 删除 + + + + Move to top + 移到最上 + + + + Move up + 上移 + + + + Move down + 下移 + + + + Move to bottom + 移到最下 + + + + + Name + 名称 + + + + + Type + 类型 + + + + NN + 非空 + + + + Not null + 非NULL + + + + PK + 主键 + + + + Primary key + 主键 + + + + AI + 自增 + + + + Autoincrement + 自动增值 + + + + U + 唯一 + + + + + + Unique + 唯一 + + + + Default + 默认 + + + + Default value + 默认值 + + + + + + Check + 检查 + + + + Check constraint + 检查约束条件 + + + + Collation + 排序规则 + + + + + + Foreign Key + 外键 + + + + Constraints + 约束 + + + + Add constraint + 增加约束 + + + + Remove constraint + 删除约束 + + + + Columns + + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">警告: </span>表中有一些无法解析的定义。编辑并保存表可能会带来问题。</p></body></html> + + + + + Primary Key + 主键 + + + + Add a primary key constraint + 增加主键约束 + + + + Add a foreign key constraint + 增加外键约束 + + + + Add a unique constraint + 增加唯一性约束 + + + + Add a check constraint + 增加检查约束 + + + + Error creating table. Message from database engine: +%1 + 创建表时出错。来自数据库引擎的消息: +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + 已存在同名字段。请先重命名已有字段,或为此字段选一个不同的名字。 + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + 每个表只能有一个主键。请修改已有的主键。 + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + 此列是表 %1 的外键,因此它的名字不能改变。 + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + 至少有一行带本字段的记录被设为空。这使得它不可能设置这个标志。请首先更改表数据。 + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + 在这个字段中至少有一行带有一个非整数的值。这使得它不可能设置自增标志。请首先更改表数据。 + + + + Column '%1' has duplicate data. + + 列 '%1' 有重复数据。 + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + 所以无法启用“唯一”标记。请删除重复数据才能启用。 + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + 您是否确认您想删除字段 '%1'? +当前存储在这个字段中的所有数据将会丢失。 + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + 在设置为无 rowid 前,请先添加一个满足以下准则的字段: + - 设置为主键 + - 禁止自增 + + + + ExportDataDialog + + + Export data as CSV + 导出数据为 CSV + + + + Tab&le(s) + 表(&l) + + + + Colu&mn names in first line + 第一行列名(&m) + + + + Fie&ld separator + 字段分隔符(&l) + + + + , + , + + + + ; + ; + + + + Tab + Tab + + + + | + | + + + + + + Other + 其它 + + + + &Quote character + 引号(&Q) + + + + " + " + + + + ' + ' + + + + New line characters + 换行符 + + + + Windows: CR+LF (\r\n) + Windows: 回车+换行 (\r\n) + + + + Unix: LF (\n) + Unix: 换行 (\n) + + + + Pretty print + 美化输出 + + + + + Could not open output file: %1 + 打不开输出文件: %1 + + + + + Choose a filename to export data + 选择导出数据的文件名 + + + + Export data as JSON + 导出为 JSON + + + + exporting CSV + 导出 CSV + + + + exporting JSON + 导出 JSON + + + + Please select at least 1 table. + 请至少选1个表 + + + + Choose a directory + 选择一个目录 + + + + Export completed. + 导出完成。 + + + + ExportSqlDialog + + + Export SQL... + 导出 SQL... + + + + Tab&le(s) + 表(&L) + + + + Select All + 全选 + + + + Deselect All + 全不选 + + + + &Options + 选项(&O) + + + + Keep column names in INSERT INTO + 在 INSERT INTO 语句中保留列名 + + + + Multiple rows (VALUES) per INSERT statement + 每条 INSERT 语句中包含多行 (VALUES) + + + + Export everything + 导出所有 + + + + Export schema only + 仅导出架构 + + + + Export data only + 仅导出数据 + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + 保持旧架构 (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + 覆盖旧架构 (DROP TABLE, 然后 CREATE TABLE) + + + + Please select at least one table. + 请至少选一个表。 + + + + Choose a filename to export + 选择要导出的文件名 + + + + Export completed. + 导出完成。 + + + + Export cancelled or failed. + 导出被取消或失败。 + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + 查找... + + + + Find and Replace... + 查找并替换... + + + + Print... + 打印... + + + + ExtendedTableWidget + + + Use as Exact Filter + 用于精确过滤 + + + + Containing + 包含 + + + + Not containing + 不包含 + + + + Not equal to + 不等于 + + + + Greater than + 大于 + + + + Less than + 小于 + + + + Greater or equal + 大于等于 + + + + Less or equal + 小于等于 + + + + Between this and... + 在此值和...之间 + + + + Regular expression + 正则表达式 + + + + Edit Conditional Formats... + 编辑条件格式... + + + + Set to NULL + 设置为 NULL + + + + Copy + 复制 + + + + Copy with Headers + 带表头一起拷贝 + + + + Copy as SQL + 拷贝为 SQL + + + + Paste + 粘贴 + + + + Print... + 打印... + + + + Use in Filter Expression + 在过滤器表达式中使用 + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + 剪贴板中的数据范围超过了选择的范围。 +是否仍要插入? + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>部分数据没有被加载。<b>在选择所有行之前是否要加载所有数据?</b><p><p>选择<b>否</b>表示不加载数据并放弃全选。<br/>选择<b>是</b>表示加载所有数据(可能花费一些时间)并进行全选。</p>警告:加载所有数据对于大表格可能占用大量内存。 + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + 不能将当前单元格设置为 NULL。列 %1 有 NOT NULL 约束。 + + + + FileExtensionManager + + + File Extension Manager + 文件扩展名管理器 + + + + &Up + 上(&U) + + + + &Down + 下(&D) + + + + &Add + 添加(&A) + + + + &Remove + 删除(&R) + + + + + Description + 描述 + + + + Extensions + 扩展名 + + + + *.extension + *.扩展名 + + + + FilterLineEdit + + + Filter + 过滤 + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + 这些输入框能让你快速在当前所选表中进行过滤。 +默认情况下,包含输入文本的行会被过滤出来。 +以下操作也支持: +% 通配符 +> 大于 +< 小于 +>= 大于等于 +<= 小于等于 += 等于: 精确匹配 +<> 不等于: 精确反向匹配 +x~y 范围: 值在 x 和 y 之间 +/regexp/ 值符合正则表达式 + + + + Clear All Conditional Formats + 清除所有条件格式 + + + + Use for Conditional Format + 用于条件格式 + + + + Edit Conditional Formats... + 编辑条件格式... + + + + Set Filter Expression + 设置过滤表达式 + + + + What's This? + 这是什么? + + + + Is NULL + 为 NULL + + + + Is not NULL + 非 NULL + + + + Is empty + 为空 + + + + Is not empty + 非空 + + + + Not containing... + 不包含... + + + + Equal to... + 等于... + + + + Not equal to... + 不等于... + + + + Greater than... + 大于... + + + + Less than... + 小于... + + + + Greater or equal... + 大于等于... + + + + Less or equal... + 小于等于... + + + + In range... + 在范围内... + + + + Regular expression... + 正则表达式... + + + + FindReplaceDialog + + + Find and Replace + 查找并替换 + + + + Fi&nd text: + 查找文本(&N): + + + + Re&place with: + 替换为(&P): + + + + Match &exact case + 精确匹配(&E) + + + + Match &only whole words + 全字匹配(&O) + + + + When enabled, the search continues from the other end when it reaches one end of the page + 启用时,搜索到页结尾时,搜索会继续从另一边开始。 + + + + &Wrap around + 循环查找(&W) + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + 设置时,搜索从当前位置往回进行。否则向前搜索。 + + + + Search &backwards + 反向查找(&B) + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>选中时,只在当前选择的内容中进行搜索。</p></body></html> + + + + &Selection only + 在所选内容中查找(&S) + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>选中时,要查找的模式被解释为 UNIX 正则表达式。参阅 <a href="https://en.wikibooks.org/wiki/Regular_Expressions"> Wikibooks 中的正则表达式</a>.</p></body></html> + + + + Use regular e&xpressions + 使用正则表达式(&X) + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + 从当前位置查找下一出现的位置,按 "反向查找" 处所选的方向进行查找。 + + + + &Find Next + 查找下一个(&F) + + + + F3 + + + + + &Replace + 替换(&R) + + + + Highlight all the occurrences of the text in the page + 高亮本页中所有出现的文本 + + + + F&ind All + 全部高亮(&I) + + + + Replace all the occurrences of the text in the page + 替换本页中所有出现的文本 + + + + Replace &All + 全部替换(&A) + + + + The searched text was not found + 无法找到要查找的文本 + + + + The searched text was not found. + 无法找到要查找的文本。 + + + + The searched text was found one time. + 查找的文本被找到了 1 次。 + + + + The searched text was found %1 times. + 查找的文本被找到了 %1 次。 + + + + The searched text was replaced one time. + 查找的文本被替换了 1 次。 + + + + The searched text was replaced %1 times. + 查找的文本被替换了 %1 次。 + + + + ForeignKeyEditor + + + &Reset + 重置(&R) + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + 外键子句 (ON UPDATE, ON DELETE 等等) + + + + ImportCsvDialog + + + Import CSV file + 导入 CSV 文件 + + + + Table na&me + 表名称(&M) + + + + &Column names in first line + 列名在首行(&C) + + + + Field &separator + 字段分隔符(&S) + + + + , + , + + + + ; + ; + + + + + Tab + Tab + + + + | + ; + + + + Other + 其它 + + + + &Quote character + 引号(&Q) + + + + + Other (printable) + 其他(可打印) + + + + + Other (code) + 其他(代码) + + + + " + " + + + + ' + ' + + + + &Encoding + 编码(&E) + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + 删除字段头尾空白? + + + + Separate tables + 分离表 + + + + Advanced + 高级 + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + 当从 CSV 文件导入空值到已有表中,并且该列有默认值时,默认值会被插入。选中此项以在这种情况下插入空值。 + + + + Ignore default &values + 忽略默认值(&V) + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + 选中此项以在往没有默认值的非 NULL 列导入空值时终止导入。 + + + + Fail on missing values + 缺值时失败 + + + + Disable data type detection + 禁用类型检测 + + + + Disable the automatic data type detection when creating a new table. + 禁止在创建新表时自动检测数据类型。 + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + 当向有主键的表中导入数据时,可能会产生唯一性约束或索引的冲突。此选项允许你选择处理冲突的策略:默认情况下会取消导入并卷回,也可以选择忽略并跳过冲突的行,或替换表中现有的行。 + + + + Abort import + 取消导入 + + + + Ignore row + 忽略冲突的行 + + + + Replace existing row + 替换现有的行 + + + + Conflict strategy + 冲突策略 + + + + + Deselect All + 全不选 + + + + Match Similar + 匹配相似 + + + + Select All + 全选 + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + 已经有一张叫做 '%1' 的表。只有列数匹配时,才能导入到已经存在的表中。 + + + + There is already a table named '%1'. Do you want to import the data into it? + 已经有一张叫做 '%1' 的表。你想把数据导入到此表中吗? + + + + Creating restore point failed: %1 + 创建还原点失败: %1 + + + + Creating the table failed: %1 + 创建表失败: %1 + + + + importing CSV + 导入 CSV + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + 导入文件 '%1' 用时 %2ms. 其中 %3ms 用在行方程上。 + + + + Inserting row failed: %1 + 插入行失败: %1 + + + + MainWindow + + + DB Browser for SQLite + DB Browser for SQLite + + + + toolBar1 + 工具栏1 + + + + &Wiki + 百科(&W) + + + + Bug &Report... + Bug 上报(&R)... + + + + Feature Re&quest... + 特性请求(&Q)... + + + + Web&site + 网站(&S) + + + + &Donate on Patreon... + 在 Patreon 上捐赠(&D)... + + + + Open &Project... + 打开工程(&P)... + + + + &Attach Database... + 附加数据库(&A)... + + + + + Add another database file to the current database connection + 添加另一个数据库到当前的数据库连接中 + + + + This button lets you add another database file to the current database connection + 此按钮能添加另一个数据库到当前的数据库连接中 + + + + &Set Encryption... + 设置加密(&S)... + + + + This button saves the content of the current SQL editor tab to a file + 此按钮把当前 SQL 编辑器页的内容保存到一个文件 + + + + SQLCipher &FAQ + SQLCipher 常见问题(&F)... + + + + Table(&s) to JSON... + 表到 JSON (&S)... + + + + Export one or more table(s) to a JSON file + 导出一个或多个表到 JSON 文件 + + + + Un/comment block of SQL code + 注释/取消注释SQL代码 + + + + Un/comment block + 注释/取消注释 + + + + Comment or uncomment current line or selected block of code + 注释或取消注释当前行或选中的代码段 + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + 注释或取消注释当前选中的代码段。当没有选中时为当前行。代码段的注释状态由第一行决定。 + + + + Ctrl+/ + + + + + Stop SQL execution + 停止执行SQL + + + + Stop execution + 停止执行 + + + + Stop the currently running SQL script + 停止当前运行的SQL脚本 + + + + &File + 文件(&F) + + + + &Import + 导入(&I) + + + + &Export + 导出(&E) + + + + &Edit + 编辑(&E) + + + + &View + 查看(&V) + + + + &Help + 帮助(&H) + + + + &Remote + 远程(&R) + + + + Execute all/selected SQL + 执行所有/选中的 SQL + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + 此按钮执行当前选中的 SQL 语句。如果没有选中文本,就执行所有的 SQL 语句。 + + + + &Load Extension... + 加载扩展(&L)... + + + + This button executes the SQL statement present in the current editor line + 此按钮执行编辑器当前行中的 SQL 语句 + + + + Shift+F5 + + + + + Sa&ve Project + 保存工程(&V) + + + + + Save SQL file as + SQL 文件另存为 + + + + &Browse Table + 浏览表 + + + + Copy Create statement + 复制 Create 语句 + + + + Copy the CREATE statement of the item to the clipboard + 复制选中项的 CREATE 语句到剪贴板 + + + + Open an existing database file in read only mode + 用只读方式打开一个已有的数据库文件 + + + + Opens the SQLCipher FAQ in a browser window + 用浏览器窗口打开 SQLCipher 常见问题 + + + + User + 用户 + + + + Application + 应用程序 + + + + &Clear + 清除(&C) + + + + DB Sche&ma + 数据库架构(&M) + + + + &New Database... + 新建数据库(&N)... + + + + + Create a new database file + 创建一个新的数据库文件 + + + + This option is used to create a new database file. + 这个选项用于创建一个新的数据库文件。 + + + + Ctrl+N + + + + + + &Open Database... + 打开数据库(&O)... + + + + + + + + Open an existing database file + 打开一个现有的数据库文件 + + + + + + This option is used to open an existing database file. + 这个选项用于打开一个现有的数据库文件。 + + + + Ctrl+O + + + + + &Close Database + 关闭数据库(&C) + + + + + Ctrl+W + + + + + + Revert database to last saved state + 把数据库会退到先前保存的状态 + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + 这个选项用于倒退当前的数据库文件为它最后的保存状态。从最后保存操作开始做出的所有更改将会丢失。 + + + + + Write changes to the database file + 把更改写入到数据库文件 + + + + This option is used to save changes to the database file. + 这个选项用于保存更改到数据库文件。 + + + + Ctrl+S + + + + + Compact &Database... + 压缩数据库(&D)... + + + + Compact the database file, removing space wasted by deleted records + 压缩数据库文件,通过删除记录去掉浪费的空间 + + + + + Compact the database file, removing space wasted by deleted records. + 压缩数据库文件,通过删除记录去掉浪费的空间。 + + + + E&xit + 退出(&X) + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + 从一个 .sql 转储文本文件中导入数据到一个新的或已有的数据库。 + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + 这个选项让你从一个 .sql 转储文本文件中导入数据到一个新的或现有的数据库。SQL 转储文件可以在大多数数据库引擎上创建,包括 MySQL 和 PostgreSQL。 + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + 打开一个向导让您从一个逗号间隔的文本文件导入数据到一个数据库表中。 + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + 打开一个向导让您从一个逗号间隔的文本文件导入数据到一个数据库表中。CSV 文件可以在大多数数据库和电子表格应用程序上创建。 + + + + Export a database to a .sql dump text file. + 导出一个数据库导一个 .sql 转储文本文件。 + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + 这个选项让你导出一个数据库导一个 .sql 转储文本文件。SQL 转储文件包含在大多数数据库引擎上(包括 MySQL 和 PostgreSQL)重新创建数据库所需的所有数据。 + + + + Export a database table as a comma separated text file. + 导出一个数据库表为逗号间隔的文本文件。 + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + 导出一个数据库表为逗号间隔的文本文件,准备好被导入到其他数据库或电子表格应用程序。 + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + 打开“创建表”向导,在那里可以定义在数据库中的一个新表的名称和字段 + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + 打开“删除表”向导,在那里你可以选择要丢弃的一个数据库表。 + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + 打开“修改表”向导,在其中可以重命名一个现有的表。也可以从一个表中添加或删除字段,以及修改字段名称和类型。 + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + 打开“创建索引”向导,在那里可以在一个现有的数据库表上定义一个新索引。 + + + + &Preferences... + 首选项(&P)... + + + + + Open the preferences window. + 打开首选项窗口。 + + + + &DB Toolbar + 数据库工具栏(&D) + + + + Shows or hides the Database toolbar. + 显示或隐藏数据库工具栏。 + + + + Shift+F1 + + + + + &Recently opened + 最近打开(&R) + + + + Open &tab + 打开标签页(&T) + + + + Ctrl+T + + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + 数据库结构 + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + 这是打开的数据库的结构。 +你可以从一个对象行中拖动 SQL 语句,然后拖到其他应用中,或者拖到其他 'DB Browser for SQLite' 的实例中。 + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + 浏览数据 + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + 编辑杂注 + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + 警告: 此杂注无法读取,此值为推断得到。编辑杂注可能会覆盖由 SQLite 扩展重定义的 LIKE。 + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + 执行 SQL + + + + &Tools + 工具(&T) + + + + DB Toolbar + 数据库工具栏 + + + + Edit Database &Cell + 编辑数据库单元格(&C) + + + + SQL &Log + SQL 日志(&L) + + + + Show S&QL submitted by + 显示 SQL 提交自(&Q) + + + + Error Log + 错误记录 + + + + This button clears the contents of the SQL logs + 此按钮清除 SQL 日志的内容 + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + 此面板可以让你自行检查本应用程序执行的所有 SQL 命令的日志。 + + + + &Plot + 图表(&P) + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + 这是当前打开的数据库的结构。 +你可以从名字列拖拽多个对象名字到 SQL 编辑器中,可以用菜单调节拖拽名字的属性。这可以帮助你构建 SQL 语句。 +你可以从架构列拖拽 SQL 语句到 SQL 编辑器或其他应用中。 + + + + + Project Toolbar + 工程工具栏 + + + + Extra DB toolbar + 其他数据库工具栏 + + + + + + Close the current database file + 关闭当前数据库文件 + + + + This button closes the connection to the currently open database file + 此按钮关闭到当前打开的数据库文件的连接 + + + + Ctrl+F4 + + + + + &Revert Changes + 倒退更改(&R) + + + + &Write Changes + 写入更改(&W) + + + + Open SQL file(s) + 打开 SQL 文件 + + + + This button opens files containing SQL statements and loads them in new editor tabs + 此按钮打开包含 SQL 语句的文件,将其载入到新标签页 + + + + Execute line + 执行行 + + + + F1 + + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + 此按钮让你将所有关于打开的数据库的设置保存到一个 DB Browser for SQLite 工程文件。 + + + + This button lets you open a DB Browser for SQLite project file + 此按钮让你打开一个 DB Browser for SQLite 工程文件。 + + + + Open Data&base Read Only... + 只读打开数据库(&B)... + + + + Ctrl+Shift+O + + + + + Save results + 保存结果 + + + + Save the results view + 保存结果视图 + + + + This button lets you save the results of the last executed query + 此按钮让你保存上次执行的查询的结果 + + + + + Find text in SQL editor + 在 SQL 编辑器中查找文本 + + + + Find + 查找 + + + + This button opens the search bar of the editor + 此按钮打开编辑器的查找栏 + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + 在 SQL 编辑器中查找或替换文本 + + + + Find or replace + 查找或替换 + + + + This button opens the find/replace dialog for the current editor tab + 此按钮为当前的编辑器标签页打开查找/替换对话框 + + + + Ctrl+H + + + + + Export to &CSV + 导出到 &CSV + + + + Save as &view + 保存为视图(&V) + + + + Save as view + 保存为视图 + + + + Browse Table + 浏览表 + + + + Shows or hides the Project toolbar. + 显示或隐藏工程工具栏 + + + + Extra DB Toolbar + 其他数据库工具栏 + + + + New In-&Memory Database + 新建内存数据库(&M) + + + + Drag && Drop Qualified Names + 拖拽限定名称 + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + 当拖拽对象到编辑器中时,使用限定名称 (例如 "Table"."Field") + + + + Drag && Drop Enquoted Names + 拖拽引用名字 + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + 当拖拽对象到编辑器中时,使用转移标识符 (例如 "Table1") + + + + &Integrity Check + 完全性检查(&I) + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + 对打开的数据库运行 integrity_check 杂注并在执行 SQL 标签页返回结果。此杂注对整个数据库进行完全性检查。 + + + + &Foreign-Key Check + 外键检查(&F) + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + 对打开的数据库运行 foreign_key_check 杂注并在执行 SQL 标签页返回结果。 + + + + &Quick Integrity Check + 快速完全性检查(&Q) + + + + Run a quick integrity check over the open DB + 对打开的数据库执行快速完全性检查 + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + 对打开的数据库运行 quick_check 杂注并在执行 SQL 标签页返回结果。此命令会执行 integrity_check 的多数检查,但是要快得多。 + + + + &Optimize + 优化(&O) + + + + Attempt to optimize the database + 尝试优化数据库 + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + 对打开的数据库运行 optimize 杂注。可能会执行对未来查询性能有帮助的优化。 + + + + + Print + 打印 + + + + Print text from current SQL editor tab + 从当前的 SQL 编辑器标签页打印文本 + + + + Open a dialog for printing the text in the current SQL editor tab + 打开对话框以从当前的 SQL 编辑器标签页打印文 + + + + Print the structure of the opened database + 打印当前打开的数据库的结构 + + + + Open a dialog for printing the structure of the opened database + 打开对话框以打印当前打开的数据库的结构 + + + + &Save Project As... + 另存为工程(&S)... + + + + + + Save the project in a file selected in a dialog + 将工程保存为文件 + + + + Save A&ll + 全部保存(&L) + + + + + + Save DB file, project file and opened SQL files + 保存数据库文件,工程文件,打开的SQL文件 + + + + Ctrl+Shift+S + + + + + &Database from SQL file... + 从 SQL 文件导入数据库(&D)... + + + + &Table from CSV file... + 从 CSV 文件导入表(&T)... + + + + &Database to SQL file... + 导出数据库到 SQL 文件(&D)... + + + + &Table(s) as CSV file... + 导出表到 CSV 文件(&T)... + + + + &Create Table... + 创建表(&C)... + + + + &Delete Table... + 删除表(&D)... + + + + &Modify Table... + 修改表(&M)... + + + + Create &Index... + 创建索引(&I)... + + + + W&hat's This? + 这是什么(&W)? + + + + &About + 关于(&A) + + + + This button opens a new tab for the SQL editor + 此按钮打开一个 SQL 编辑器的新标签页 + + + + &Execute SQL + 执行 SQL(&E) + + + + + Save the current session to a file + 保存当前会话到一个文件 + + + + + Load a working session from a file + 从一个文件加载工作会话 + + + + + + Save SQL file + 保存 SQL 文件 + + + + + Execute current line + 执行当前行 + + + + Ctrl+E + + + + + Export as CSV file + 导出为 CSV 文件 + + + + Export table as comma separated values file + 导出表为逗号间隔值文件 + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Database encoding + 数据库编码 + + + + + Choose a database file + 选择一个数据库文件 + + + + Ctrl+Return + Ctrl+回车 + + + + Ctrl+D + + + + + Ctrl+I + + + + + Encrypted + 加密的 + + + + Database is encrypted using SQLCipher + 数据库使用 SQLCipher 进行了加密 + + + + Read only + 只读 + + + + Database file is read only. Editing the database is disabled. + 数据库是只读的。编辑被禁止。 + + + + Could not open database file. +Reason: %1 + 无法打开数据库文件。 +原因: %1 + + + + + + Choose a filename to save under + 选择一个文件名保存 + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + 设置或清除杂注值会提交你的当前事务。 +你确定吗? + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + 保存数据库文件时出错。这表明不是所有对数据库的更改都被保存了。你需要先解决以下错误。 + +%1 + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + 有新版本的 DB Browser for SQLite (%1.%2.%3)可用。<br/><br/>请从 <a href='%4'>%4</a> 下载。 + + + + DB Browser for SQLite project file (*.sqbpro) + DB Browser for SQLite 工程文件 (*.sqbpro) + + + + Reset Window Layout + 重置窗口布局 + + + + Alt+0 + + + + + The database is currenctly busy. + 数据库正忙。 + + + + Click here to interrupt the currently running query. + 点击此处中断当前运行的查询。 + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + 你正在执行SQL语句。关闭数据库会停止执行,可能使数据库处于不准确的状态。确实要关闭数据库吗? + + + + Do you want to save the changes made to the project file '%1'? + 是否要保存对工程文件 '%1' 的修改? + + + + Error checking foreign keys after table modification. The changes will be reverted. + 修改表格后的外键检查错误。修改会被回退。 + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + 此表格没有通过外键检查。<br/>你需要执行 '工具 | 外键检查' 并修复发现的问题。 + + + + Edit View %1 + 编辑视图 %1 + + + + Edit Trigger %1 + 编辑触发器 %1 + + + + + At line %1: + 在行 %1: + + + + Result: %1 + 结果: %1 + + + + Result: %2 + 结果: %2 + + + + Execution finished with errors. + 执行已完成,但有错误。 + + + + Execution finished without errors. + 执行完成。 + + + + Opened '%1' in read-only mode from recent file list + 从最近的文件列表中用只读方式打开 %1 + + + + Opened '%1' from recent file list + 从最近的文件列表中打开 %1 + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (只读) + + + + Open Database or Project + 打开数据库或工程 + + + + Attach Database... + 附加数据库... + + + + Import CSV file(s)... + 导入CSV文件... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + 选择要应用到拖放的文件的操作。<br/>注意:只有“导入”会处理多个文件。 + + + + + Do you want to save the changes made to SQL tabs in a new project file? + 是否要把对SQL的修改保存为工程文件? + + + + This action will open a new SQL tab with the following statements for you to edit and run: + 此动作会打开包含下列语句的新的 SQL 标签页以编辑并运行: + + + + Rename Tab + 重命名标签 + + + + Duplicate Tab + 复制标签 + + + + Close Tab + 关闭标签 + + + + Opening '%1'... + 正在打开 '%1'... + + + + There was an error opening '%1'... + 打开 '%1' 时出错... + + + + Value is not a valid URL or filename: %1 + 不是正确的URL或文件名:%1 + + + + Do you want to save the changes made to the SQL file %1? + 是否要保存对SQL文件 %1 的修改? + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + 此标签内的SQL语句正在被执行。关闭标签会停止执行,可能使数据库处于不准确的状态。确实要关闭标签吗? + + + + Could not find resource file: %1 + 不能找到资源文件:%1 + + + + Choose a project file to open + 选择一个要打开的工程文件 + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + 此工程文件使用了旧的文件格式,因为它是由 DB Browser for SQLite version 3.10 或更低版本创建的。加载此文件格式依然完全支持,但我们建议你把工程转换到新的格式,因为旧格式支持将来可能会失效。你可以通过打开并重新保存的方式来转换。 + + + + Could not open project file for writing. +Reason: %1 + 未能写入工程文件。 +原因:%1 + + + + Busy (%1) + 正忙 (%1) + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + 您是否确认您想撤销从上次保存以来对数据库文件‘%1’做出的所有更改。? + + + + Choose a file to import + 选择要导入的一个文件 + + + + Text files(*.sql *.txt);;All files(*) + 文本文件(*.sql *.txt);;所有文件(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + 您是否确认您想创建一个新的数据库文件用来存放导入的数据? +如果您会到“否”的话,我们将尝试导入 SQL 文件中的数据到当前数据库。 + + + + Window Layout + 窗口布局 + + + + Simplify Window Layout + 精简窗口布局 + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + 停靠窗口到底部 + + + + Dock Windows at Left Side + 停靠窗口到左侧 + + + + Dock Windows at Top + 停靠窗口到顶部 + + + + File %1 already exists. Please choose a different name. + 文件 %1 已存在。请选择一个不同的名称。 + + + + Error importing data: %1 + 导入数据时出错: %1 + + + + Import completed. + 导入完成。 + + + + Delete View + 删除视图 + + + + Modify View + 修改视图 + + + + Delete Trigger + 删除触发器 + + + + Modify Trigger + 修改触发器 + + + + Delete Index + 删除索引 + + + + + Delete Table + 删除表 + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + 设置 PRAGMA 值将会提交您的当前事务。 +您确定吗? + + + + In-Memory database + 内存数据库 + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + 你确定要删除表 '%1' 吗? +所有关联的数据都会丢失。 + + + + Are you sure you want to delete the view '%1'? + 你确定要删除视图 '%1' 吗? + + + + Are you sure you want to delete the trigger '%1'? + 你确定要删除触发器 '%1' 吗? + + + + Are you sure you want to delete the index '%1'? + 你确定要删除索引 '%1' 吗? + + + + Error: could not delete the table. + 错误: 无法删除表。 + + + + Error: could not delete the view. + 错误: 无法删除视图。 + + + + Error: could not delete the trigger. + 错误: 无法删除触发器。 + + + + Error: could not delete the index. + 错误: 无法删除索引。 + + + + Message from database engine: +%1 + 来自数据库引擎的消息: +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + 编辑表格之前需要立刻保存所有修改。 +你确定要保存数据库吗? + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + 你已经在执行SQL语句。是否要停止执行并改为执行当前语句?注意,这可能使数据库处于不准确的状态。 + + + + -- EXECUTING SELECTION IN '%1' +-- + -- 执行 '%1' 中所选 +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- 执行 '%1' 中的行 +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- 执行 '%1' 中所有 +-- + + + + %1 rows returned in %2ms + %1 行返回,耗时 %2ms + + + + Choose text files + 选择文本文件 + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + 导入完成。一些外键约束被违反了。请在保存之前修复。 + + + + Modify Index + 修改索引 + + + + Modify Table + 修改表 + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + 是否要把对SQL的修改保存到工程文件 '%1' ? + + + + Select SQL file to open + 选择要打开的 SQL 文件 + + + + Select file name + 选择文件名 + + + + Select extension file + 选择扩展文件 + + + + Extension successfully loaded. + 扩展成功加载。 + + + + Error loading extension: %1 + 加载扩展时出错: %1 + + + + + Don't show again + 不再显示 + + + + New version available. + 新版本可用。 + + + + Project saved to file '%1' + 工程已保存到文件 '%1' + + + + Collation needed! Proceed? + 需要整理! 继续? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + 数据库中的一个表需要特定的整理方法 '%1' 但本应用程序不了解故无法提供。 +如果您选择继续,小心可能会有不好的事情发生。 +记得备份! + + + + creating collation + 创建整理 + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + 为 SQL 标签页设置新名称。使用 '&&' 字符来允许它作为键盘快捷键。 + + + + Please specify the view name + 请指定视图名称 + + + + There is already an object with that name. Please choose a different name. + 已有同名的对象。请选择一个不同的名称。 + + + + View successfully created. + 视图成功创建。 + + + + Error creating view: %1 + 创建视图时出错: %1 + + + + This action will open a new SQL tab for running: + 此动作会打开新的 SQL 标签页以运行: + + + + Press Help for opening the corresponding SQLite reference page. + 按下帮助以打开对应的 SQLite 参考页。 + + + + NullLineEdit + + + Set to NULL + 设置为 NULL + + + + Alt+Del + + + + + PlotDock + + + Plot + 绘图 + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>此面板显示当前表或者刚刚执行的查询的列。你可以选择列用做在下面画图时的 X 轴和 Y 轴。表中显示检测到的会影响绘图结果的轴类型。Y 轴只允许选择数值类型,但 X 轴可以选择:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">日期/时间</span>: 格式化的字符串 &quot;yyyy-MM-dd hh:mm:ss&quot; 或 &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">日期</span>: 格式化的字符串 &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">时间</span>: 格式化的字符串 &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">标签</span>: 其他格式的字符串。选这项作为x轴,会绘制条形图,并用值作为条形的标签</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">数值</span>: 整数或实数值</li></ul><p>双击 Y 单元格可以改变图中所用的颜色。</p></body></html> + + + + Columns + + + + + X + X + + + + Y1 + Y1 + + + + Y2 + Y2 + + + + Axis Type + 轴类型 + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + 这是在你在上面选择 x 和 y 值后绘制出的图。 + +点击点可以在图和表格中选中它们。Ctrl+点击以选中一批点。 + +使用鼠标滚轮可以缩放,鼠标拖拽可以改变坐标轴的范围。 + +选择轴或者轴上的标签并拖拽可以缩放此方向。 + + + + Line type: + 线形: + + + + + None + + + + + Line + 折线 + + + + StepLeft + 左阶梯 + + + + StepRight + 右阶梯 + + + + StepCenter + 中阶梯 + + + + Impulse + 脉冲 + + + + Point shape: + 点形: + + + + Cross + + + + + Plus + + + + + Circle + + + + + Disc + 实心点 + + + + Square + 方形 + + + + Diamond + 菱形 + + + + Star + + + + + Triangle + 三角 + + + + TriangleInverted + 倒三角 + + + + CrossSquare + 叉与方形 + + + + PlusSquare + 加与方形 + + + + CrossCircle + 叉与圈 + + + + PlusCircle + 加与圈 + + + + Peace + 和平符号 + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>保存当前图表...</p><p>文件格式按扩展名选择(png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + 保存当前图表... + + + + + Load all data and redraw plot + 载入所有数据并重新绘图 + + + + + + Row # + 行 # + + + + Copy + 复制 + + + + Print... + 打印... + + + + Show legend + 显示图例 + + + + Stacked bars + 堆叠的条形 + + + + Date/Time + 日期/时间 + + + + Date + 日期 + + + + Time + 时间 + + + + + Numeric + 数值 + + + + Label + 标签 + + + + Invalid + 无效的 + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + 载入所有数据并重新绘图。 +警告:由于部分加载机制,现在并没有加载所有的数据。 + + + + Choose an axis color + 选一个坐标轴颜色 + + + + Choose a filename to save under + 选择一个文件名保存 + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;所有文件(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + 图中有曲线,选择的线形只能用到按 X 排列的图中。要么对表排序或者用 X 查询,要么选一种曲线支持的线形:无或者折线。 + + + + Loading all remaining data for this table took %1ms. + 加载表中全部剩余数据花费了%1毫秒。 + + + + PreferencesDialog + + + Preferences + 首选项 + + + + &General + 通用(&G) + + + + Remember last location + 记住上次的位置 + + + + Always use this location + 总是使用此位置 + + + + Remember last location for session only + 仅在会话中记住上次的位置 + + + + Lan&guage + 语言(&G) + + + + Automatic &updates + 自动更新(&A) + + + + &Database + 数据库(&D) + + + + Database &encoding + 数据库编码(&E) + + + + Open databases with foreign keys enabled. + 打开启用了外键的数据库。 + + + + &Foreign keys + 外键(&F) + + + + + + + + + + + + enabled + 启用 + + + + Default &location + 默认位置(&L) + + + + + + ... + ... + + + + Remove line breaks in schema &view + 删除架构视图中的换行(&V) + + + + Show remote options + 显示远程选项 + + + + Prefetch block si&ze + 预取块尺寸(&Z) + + + + SQ&L to execute after opening database + 打开数据库后执行的 SQL(&L) + + + + Default field type + 默认字段类型 + + + + Data &Browser + 数据浏览器(&B) + + + + Font + 字体 + + + + &Font + 字体(&F) + + + + Content + 内容 + + + + Symbol limit in cell + 单元格字符数限制 + + + + NULL + + + + + Regular + 常规 + + + + Binary + 二进制 + + + + Background + 背景 + + + + Filters + 过滤 + + + + Threshold for completion and calculation on selection + 自动完成与汇总限制 + + + + Show images in cell + 显示单元格中图片 + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + 启用此选项可以预览单元格BOLB中包含的图片。但这会影响浏览数据的性能。 + + + + Escape character + 转义字符 + + + + Delay time (&ms) + 延时(毫秒)(&M) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + 设置应用新过滤值前的等待时间。设为0以禁用等待。 + + + + &SQL + &SQL + + + + Settings name + 设置名称 + + + + Context + 上下文 + + + + Colour + 颜色 + + + + Bold + 粗体 + + + + Italic + 斜体 + + + + Underline + 下划线 + + + + Keyword + 关键字 + + + + Function + 函数 + + + + Table + + + + + Comment + 注释 + + + + Identifier + 识别符 + + + + String + 字符串 + + + + Current line + 当前行 + + + + SQL &editor font size + SQL 编辑器字体大小(&E) + + + + Tab size + Tab 长度 + + + + SQL editor &font + SQL 编辑器字体(&F) + + + + Error indicators + 显示代码错误 + + + + Hori&zontal tiling + 水平平铺(&Z) + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + 如果启用,SQL 编辑器和结果表视图将并排显示,而不是上下显示。 + + + + Code co&mpletion + 自动补全(&M) + + + + Toolbar style + 工具栏风格 + + + + + + + + Only display the icon + 仅显示图标 + + + + + + + + Only display the text + 仅显示文本 + + + + + + + + The text appears beside the icon + 文本在图标旁 + + + + + + + + The text appears under the icon + 文本在图标下 + + + + + + + + Follow the style + 遵循风格 + + + + DB file extensions + 数据库文件扩展 + + + + Manage + 管理 + + + + Main Window + 主窗口 + + + + Database Structure + 数据库结构 + + + + Browse Data + 浏览数据 + + + + Execute SQL + 执行 SQL + + + + Edit Database Cell + 编辑数据库单元格 + + + + When this value is changed, all the other color preferences are also set to matching colors. + 改变这个选项也会改变其他的颜色风格。 + + + + Follow the desktop style + 跟随桌面风格 + + + + Dark style + 黑暗风格 + + + + Application style + 界面风格 + + + + This sets the font size for all UI elements which do not have their own font size option. + 此选项为所有组件设置字体大小,有单独的字体大小选项的组件除外。 + + + + Font size + 字体大小 + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + 当启用时,数据库结构标签页中的架构列里的换行,显示、打印时被移除。 + + + + Database structure font size + 数据库结构字体大小 + + + + Font si&ze + 字体大小(&Z) + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + 启用一些耗费资源的计算的最大行数,包括: +启用自动完成的表中最大行数。 +自动进行求和与平均值的最大选择单元格数量。 +可以设置为0以禁用这些功能。 + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + 这是表启用根据当前值的自动补完的最大的列数量。 +设置成0以禁用补完。 + + + + Field display + 字段显示 + + + + Displayed &text + 显示的文本(&T) + + + + + + + + + Click to set this color + 点击设置颜色 + + + + Text color + 文本颜色 + + + + Background color + 背景颜色 + + + + Preview only (N/A) + 仅预览 (N/A) + + + + Foreground + 前景 + + + + SQL &results font size + SQL 结果的字体大小(&R) + + + + &Wrap lines + 换行(&W) + + + + Never + 永不 + + + + At word boundaries + 按照词边界 + + + + At character boundaries + 按照字母边界 + + + + At whitespace boundaries + 按照空白字符边界 + + + + &Quotes for identifiers + 标识转义(&Q) + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + 选择 SQL 代码中标识的转义方式。 + + + + "Double quotes" - Standard SQL (recommended) + "双引号" - 标准 SQL (推荐) + + + + `Grave accents` - Traditional MySQL quotes + `重音符` - 经典的 MySQL 转义 + + + + [Square brackets] - Traditional MS SQL Server quotes + [方括号] - 经典的 MS SQL Server 转义 + + + + Keywords in &UPPER CASE + 关键字大写(&U) + + + + When set, the SQL keywords are completed in UPPER CASE letters. + 设置时,SQL 关键字被自动补全为大写字母。 + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + 设置时,导致上次执行出错的 SQL 代码行会被高亮。 + + + + Close button on tabs + 标签显示关闭按钮 + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + 如果启用,SQL 编辑器标签页上将显示关闭按钮。无论是否启用,你都可以通过右键菜单或者键盘快捷键来关闭标签。 + + + + &Extensions + 扩展(&E) + + + + Select extensions to load for every database: + 选择每个数据库要加载的扩展: + + + + Add extension + 添加扩展 + + + + Remove extension + 删除扩展 + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>虽然支持 REGEXP 运算符,但是 SQLite 并没有实现任何正则表达式算法,<br/>而是回调应用程序。DB Browser for SQLite 为您实现了算法,以便您可以<br/>打破常规使用 REGEXP。由于算法有多种可能的实现,您可能想用其他的,<br/>所以您可以禁用算法实现并通过扩展加载您的实现。需要重启应用程序。</p></body></html> + + + + Disable Regular Expression extension + 禁用正则表达式扩展 + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html><head/><body><p>SQLite 提供了 SQL 函数用于从共享库中加载扩展。启用这个选项以在SQL代码中使用 <span style=" font-style:italic;">load_extension()</span> 函数。</p><p>因安全原因,加载扩展功能默认被关闭,须在此处手动启用。但即使此选项未启用,仍能通过上方的界面加载扩展。</p></body></html> + + + + Allow loading extensions from SQL code + 允许在SQL代码里加载扩展 + + + + Remote + 远程 + + + + CA certificates + CA 证书 + + + + Proxy + 代理服务器 + + + + Configure + 配置 + + + + + Subject CN + 主题 CN (Subject CN) + + + + Common Name + 公用名称 (Common Name) + + + + Subject O + 主题 O (Subject O) + + + + Organization + 组织 (Organization) + + + + + Valid from + 有效期从 + + + + + Valid to + 有效期到 + + + + + Serial number + 序列号 + + + + Your certificates + 您的证书 + + + + File + 文件 + + + + Subject Common Name + 主题公用名称 (Subject Common Name) + + + + Issuer CN + 签发人 CN (Issuer CN) + + + + Issuer Common Name + 签发人公用名称 (Issuer Common Name) + + + + Clone databases into + 克隆数据库信息 + + + + + Choose a directory + 选择一个目录 + + + + The language will change after you restart the application. + 语言将在重启应用程序后改变。 + + + + Select extension file + 选择扩展文件 + + + + Extensions(*.so *.dylib *.dll);;All files(*) + 扩展(*.so *.dylib *.dll);;所有文件(*) + + + + Import certificate file + 导入证书文件 + + + + No certificates found in this file. + 在文件中找不到证书。 + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + 您确定要删除此证书吗?所有的证书数据都会被从应用设置中删除! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + 你确定要清除所有保存的设置吗? +所有你做的设置都会丢失,并使用默认值。 + + + + ProxyDialog + + + Proxy Configuration + 代理服务器配置 + + + + Pro&xy Type + 代理服务器类型 + + + + Host Na&me + 主机名 + + + + Port + 端口 + + + + Authentication Re&quired + 要求验证 + + + + &User Name + 用户名 + + + + Password + 密码 + + + + None + + + + + System settings + 跟随系统设置 + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + Error importing data + 导入数据时出错 + + + + from record number %1 + 自记录编号 %1 + + + + . +%1 + . +%1 + + + + Importing CSV file... + 导入CSV文件... + + + + Cancel + 取消 + + + + All files (*) + 所有文件 (*) + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + SQLite 数据库文件 (*.db *.sqlite *.sqlite3 *.db3) + + + + Left + + + + + Right + + + + + Center + 居中 + + + + Justify + 两段 + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + SQLite 数据库文件 (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + DB Browser for SQLite 工程文件 (*.sqbpro) + + + + SQL Files (*.sql) + SQL 文件 (*.sql) + + + + All Files (*) + 所有文件 (*) + + + + Text Files (*.txt) + 纯文本文件 (*.txt) + + + + Comma-Separated Values Files (*.csv) + CSV (逗号分隔)(*.csv) + + + + Tab-Separated Values Files (*.tsv) + TSV (制表符分隔)(*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + DSV (分隔符分隔)(*.dsv) + + + + Concordance DAT files (*.dat) + Concordance DAT 文件 (*.dat) + + + + JSON Files (*.json *.js) + JSON 文件 (*.json *.js) + + + + XML Files (*.xml) + XML 文件 (*.xml) + + + + Binary Files (*.bin *.dat) + 二进制文件 (*.bin *.dat) + + + + SVG Files (*.svg) + SVG 文件 (*.svg) + + + + Hex Dump Files (*.dat *.bin) + 十六进制转储文件 (*.dat *.bin) + + + + Extensions (*.so *.dylib *.dll) + 扩展 (*.so *.dylib *.dll) + + + + RemoteCommitsModel + + + Commit ID + 提交ID + + + + Message + 说明 + + + + Date + 日期 + + + + Author + 作者 + + + + Size + 大小 + + + + Authored and committed by %1 + 由 %1 为作者并提交 + + + + Authored by %1, committed by %2 + 由 %1 为作者,由 %2 提交 + + + + RemoteDatabase + + + Error opening local databases list. +%1 + 打开本地数据库列表时出错。 +%1 + + + + Error creating local databases list. +%1 + 创建本地数据库列表时出错。 +%1 + + + + RemoteDock + + + Remote + 远程 + + + + Local + 本地 + + + + Identity + 身份 + + + + Push currently opened database to server + 推送当前打开的数据库到服务器 + + + + DBHub.io + DBHub.io + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + <html><head/><body><p>在此面板,来自 dbhub.io 网站的远程数据库可以被添加到 DB4S。首先你需要一个身份:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">登录 dbhub.io 网站 (使用你的 GitHub 认证或其他什么)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">点击按钮创建 DB4S 证书 (那是你的身份)。 这会给你一个证书文件 (保存到你的本地硬盘里)。</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">前往 DB4S 的设置中的远程选项卡。点击添加证书,选择刚才下载的文件。</li></ol><p>这样,远程面板就会显示你的身份,之后可以添加远程数据库。</p></body></html> + + + + Current Database + 当前数据库 + + + + Clone + 克隆 + + + + User + 用户 + + + + Database + 数据库 + + + + Branch + 分支 + + + + Commits + 提交记录 + + + + Commits for + 提交于 + + + + Delete Database + 删除数据库 + + + + Delete the local clone of this database + 删除此数据库的本地克隆 + + + + Open in Web Browser + 在浏览器中打开 + + + + Open the web page for the current database in your browser + 在你的浏览器中打开当前数据库的网页版 + + + + Clone from Link + 从链接克隆 + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + 使用数据库页面提供的链接,将数据库下载到本地以供编辑。 + + + + Refresh + 刷新 + + + + Reload all data and update the views + 重新载入所有数据并更新视图 + + + + F5 + + + + + Clone Database + 克隆数据库 + + + + Open Database + 打开数据库 + + + + Open the local copy of this database + 打开此数据库的本地拷贝 + + + + Check out Commit + 签出某个提交 + + + + Download and open this specific commit + 下载并打开特定的提交版本 + + + + Check out Latest Commit + 签出最新提交 + + + + Check out the latest commit of the current branch + 从当前分支签出最近一次的提交版本 + + + + Save Revision to File + 将版本另存为文件 + + + + Saves the selected revision of the database to another file + 将选择的版本的数据库保存到另一个文件 + + + + Upload Database + 上传数据库 + + + + Upload this database as a new commit + 将当前数据库作为新的提交上传 + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html><head/><body><p>你正在使用内置的,只读的凭据。要上传你的数据库,你需要配置使用你的 DBHub.io 账号。</p><p>还没有 DBHub.io 账号?<a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">注册一个</span></a> 并在 <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">此处</span></a> 导入你的证书。</p><p>要获得在线帮助,点击<a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">这里</span></a>。</p></body></html> + + + + Back + 返回 + + + + Select an identity to connect + 选择要用于连接的凭据 + + + + Public + 公用证书 + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + 将远程服务器上的数据库下载到本地以编辑。 +请输入用于克隆的URL。可通过在网页上点击 +“Clone Database in DB4S”获得数据库的URL。 + + + + Invalid URL: The host name does not match the host name of the current identity. + 无效的URL:主机名与凭据的主机名不符。 + + + + Invalid URL: No branch name specified. + 无效的URL:未指定分支名。 + + + + Invalid URL: No commit ID specified. + 无效的URL:未指定提交ID。 + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + 你已经修改了本地的数据库。此时获取远程提交将覆盖本地的更改。 +确实要继续吗? + + + + The database has unsaved changes. Are you sure you want to push it before saving? + 数据库有未保存的更改,确实要在保存前推送吗? + + + + The database you are trying to delete is currently opened. Please close it before deleting. + 尝试删除的数据库当前已被打开,请先将之关闭。 + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + 将删除本地的数据库,包括你未提交的修改。 +确实要删除此数据库吗? + + + + RemoteLocalFilesModel + + + Name + 名称 + + + + Branch + 分支 + + + + Last modified + 上次修改 + + + + Size + 大小 + + + + Commit + 提交 + + + + File + 文件 + + + + RemoteModel + + + Name + 名称 + + + + Last modified + 上次修改 + + + + Size + 大小 + + + + Commit + 提交 + + + + Size: + 大小: + + + + Last Modified: + 上次修改: + + + + Licence: + 授权: + + + + Default Branch: + 默认分支: + + + + RemoteNetwork + + + Choose a location to save the file + 选择保存位置 + + + + Error opening remote file at %1. +%2 + 打开远程文件 %1 时出错. +%2 + + + + Error: Invalid client certificate specified. + 错误: 指定了错误的客户端证书。 + + + + Please enter the passphrase for this client certificate in order to authenticate. + 请输入客户端证书的口令以进行身份认证。 + + + + Cancel + 取消 + + + + Uploading remote database to +%1 + 正在上传远程数据库到 +%1. {1?} + + + + Downloading remote database from +%1 + 正在下载远程数据库于 +%1. {1?} + + + + + Error: The network is not accessible. + 错误: 网络无法访问。 + + + + Error: Cannot open the file for sending. + 错误: 无法打开文件用于发送。 + + + + RemotePushDialog + + + Push database + 推送数据库 + + + + Database na&me to push to + 推送的数据库名(&m) + + + + Commit message + 提交信息 + + + + Database licence + 数据库许可协议 + + + + Public + 公开 + + + + Branch + 分支 + + + + Force push + 强制推送 + + + + Username + 用户名 + + + + Database will be public. Everyone has read access to it. + 数据库将是公有的。所有人都可以读取它。 + + + + Database will be private. Only you have access to it. + 数据库将是私有的。只有您可以访问它。 + + + + Use with care. This can cause remote commits to be deleted. + 小心使用。这可能会导致远程提交被删除。 + + + + RunSql + + + Execution aborted by user + 操作被用户终止 + + + + , %1 rows affected + ,%1 行数据受影响 + + + + query executed successfully. Took %1ms%2 + 查询执行成功。耗时 %1ms%2 + + + + executing query + 执行查询 + + + + SelectItemsPopup + + + A&vailable + 可用(&V) + + + + Sele&cted + 已选(&C) + + + + SqlExecutionArea + + + Form + 表单 + + + + Find previous match [Shift+F3] + 查找上一个 [Shift+F3] + + + + Find previous match with wrapping + 按顺序查找上一项 + + + + Shift+F3 + + + + + The found pattern must be a whole word + 找到的必须是一个完整的词 + + + + Whole Words + 全字匹配 + + + + Text pattern to find considering the checks in this frame + 符合这里的选择要查找的文本 + + + + Find in editor + 在编辑器中查找 + + + + The found pattern must match in letter case + 搜索必须大小写匹配 + + + + Case Sensitive + 大小写敏感 + + + + Find next match [Enter, F3] + 查找下一个 [Enter, F3] + + + + Find next match with wrapping + 循环查找下一个 + + + + F3 + + + + + Interpret search pattern as a regular expression + 解析查找目标为正则表达式 + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>选中时,要查找的模式被解释为 UNIX 正则表达式。参阅 <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Wikibooks 中的正则表达式</a>.</p></body></html> + + + + Regular Expression + 正则表达式 + + + + + Close Find Bar + 关闭查找栏 + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html><head/><body><p>上次执行的语句的结果。</p><p>你可能希望折叠这个窗格并使用 <span style=" font-style:italic;">SQL 日志</span> 区域查看提交自 <span style=" font-style:italic;">用户</span> 的结果。</p></body></html> + + + + Results of the last executed statements + 上次执行语句的结果 + + + + This field shows the results and status codes of the last executed statements. + 这个字段显示最后执行的语句的结果和状态码。 + + + + Couldn't read file: %1. + 无法读取文件: %1。 + + + + + Couldn't save file: %1. + 无法保存文件: %1。 + + + + Your changes will be lost when reloading it! + 重新加载时,你的更改将会丢失! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + 文件 "%1" 已被其他程序修改。是否要重新加载?%2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + + + + + (X) ltrim(X) removes spaces from the left side of X. + + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + + + + + (X) rtrim(X) removes spaces from the right side of X. + + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + + + + + (X) trim(X) removes spaces from both ends of X. + + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + + + + + + + + (timestring,modifier,modifier,...) + + + + + (format,timestring,modifier,modifier,...) + + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + + + + + SqliteTableModel + + + reading rows + 读取行 + + + + loading... + 正在加载... + + + + References %1(%2) +Hold %3Shift and click to jump there + 引用 %1(%2) +按住 %3Shift 并点击以跳转 + + + + Error changing data: +%1 + 更改数据库时出错: +%1 + + + + retrieving list of columns + 正在检索列的列表 + + + + Fetching data... + 正在拉取数据... + + + + + Cancel + 取消 + + + + TableBrowser + + + Browse Data + 浏览数据 + + + + &Table: + 表(&T): + + + + Select a table to browse data + 选择一个表以浏览数据 + + + + Use this list to select a table to be displayed in the database view + 使用这个列表选择一个要显示在数据库视图中的表 + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + 这是数据库表视图。你可以进行以下操作: + - 直接打字以在这里直接编辑。 + - 双击记录以打开单元格编辑窗口。 + - Alt+Del 删除单元格内容,变成NULL。 + - Ctrl+" 重复一份当前记录。 + - Ctrl+' 从上面的单元格拷贝。 + - 标准的复制/粘贴操作。 + + + + Text pattern to find considering the checks in this frame + 符合这里的选择要查找的文本 + + + + Find in table + 在表中查找 + + + + Find previous match [Shift+F3] + 查找上一个 [Shift+F3] + + + + Find previous match with wrapping + 按顺序查找上一项 + + + + Shift+F3 + + + + + Find next match [Enter, F3] + 查找下一个 [Enter, F3] + + + + Find next match with wrapping + 循环查找下一个 + + + + F3 + + + + + The found pattern must match in letter case + 搜索必须大小写匹配 + + + + Case Sensitive + 大小写敏感 + + + + The found pattern must be a whole word + 找到的必须是一个完整的词 + + + + Whole Cell + 单元格匹配 + + + + Interpret search pattern as a regular expression + 解析查找目标为正则表达式 + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>选中时,搜索关键词被视为UNIX正则表达式。参阅<a href="https://en.wikibooks.org/wiki/Regular_Expressions">Wikibooks 上对正则表达式的介绍</a>。</p></body></html> + + + + Regular Expression + 正则表达式 + + + + + Close Find Bar + 关闭查找栏 + + + + Text to replace with + 要替换的文本 + + + + Replace with + 替换 + + + + Replace next match + 替换下个匹配的文本 + + + + + Replace + 替换 + + + + Replace all matches + 替换所有匹配 + + + + Replace all + 全部替换 + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>滚动到开始</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>点击这个按钮在上面的表视图中导航到最前。</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + 上翻一页 + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>点击按钮将表中显示的记录向上翻一页。</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 / 0 + + + + Scroll one page downwards + 下翻一页 + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>点击按钮将表中显示的记录向下翻一页。</p></body></html> + + + + > + > + + + + Scroll to the end + 滚动到结束 + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + <html><head/><body><p>点击这个按钮在上面的表视图中导航到最后。</p></body></html> + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>点击这里跳到指定的记录</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>这个按钮用于导航到在“转到”区域中指定的记录号。</p></body></html> + + + + Go to: + 转到: + + + + Enter record number to browse + 输入要浏览的记录号 + + + + Type a record number in this area and click the Go to: button to display the record in the database view + 在这个区域中输入一个记录号,并点击“转到:”按钮以在数据库视图中显示记录 + + + + 1 + 1 + + + + Show rowid column + 显示 rowid 列 + + + + Toggle the visibility of the rowid column + 切换 rowid 列的可见性 + + + + Unlock view editing + 解锁视图编辑 + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + 解锁当前视图以编辑。然而,你需要合适的触发器来编辑。 + + + + Edit display format + 编辑显示格式 + + + + Edit the display format of the data in this column + 编辑列中数据的显示格式 + + + + + New Record + 新建记录 + + + + + Insert a new record in the current table + 在当前表中插入一条新记录 + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>此按钮在数据库中创建新记录。按住鼠标按钮以打开菜单选择不同选项:</p><ul><li><span style=" font-weight:600;">新记录</span>: 用默认值插入一条新记录到数据库中。</li><li><span style=" font-weight:600;">插入值...</span>: 打开对话框编辑要插入的值。可以输入满足约束的值。如果 <span style=" font-weight:600;">新记录</span> 选项失败,对话框也会打开。</li></ul></body></html> + + + + + Delete Record + 删除记录 + + + + Delete the current record + 删除当前记录 + + + + + This button deletes the record or records currently selected in the table + 此按钮删除表里当前选中的记录 + + + + + Insert new record using default values in browsed table + 用默认值插入一条新记录到当前浏览的表中 + + + + Insert Values... + 插入值... + + + + + Open a dialog for inserting values in a new record + 打开对话框以插入值到新记录中 + + + + Export to &CSV + 导出到 &CSV + + + + + Export the filtered data to CSV + 导出当前数据到 CSV + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + 此按钮导出当前浏览、过滤的表的数据 (过滤后,显示格式和列的顺序) 到一个CSV文件。 + + + + Save as &view + 保存为视图(&V) + + + + + Save the current filter, sort column and display formats as a view + 保存当前过滤,列排序和显示格式为视图 + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + 此按钮保存当前浏览表格的设置 (过滤,显示格式和列的顺序) 为SQL视图,之后可以再用SQL语句浏览。 + + + + Save Table As... + 表另存为... + + + + + Save the table as currently displayed + 按当前显示的样子保存表 + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>此菜单提供以下可应用到当前浏览、过滤的表的选项:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">导出到CSV: 导出当前浏览、过滤的表的数据 (过滤后,显示格式和列的顺序) 到一个CSV文件。</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">保存为视图: 此选项保存当前浏览表格的设置 (过滤,显示格式和列的顺序) 为SQL视图,之后可以再用SQL语句浏览。</li></ul></body></html> + + + + Hide column(s) + 隐藏列 + + + + Hide selected column(s) + 隐藏选中的列 + + + + Show all columns + 显示所有列 + + + + Show all columns that were hidden + 显示所有被隐藏的列 + + + + + Set encoding + 设置编码 + + + + Change the encoding of the text in the table cells + 更改表单元格中文本的编码 + + + + Set encoding for all tables + 设置所有表的编码 + + + + Change the default encoding assumed for all tables in the database + 修改数据库中所有表的默认编码 + + + + Clear Filters + 清除过滤 + + + + Clear all filters + 清除所有过滤 + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + 此按钮将清除当前浏览表的所有在头部输入区的过滤器。 + + + + Clear Sorting + 清除排序 + + + + Reset the order of rows to the default + 将行的顺序重置为默认 + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + 此按钮清除当前浏览的表的列排序,重置为默认值。 + + + + Print + 打印 + + + + Print currently browsed table data + 打印当前浏览表中的数据 + + + + Print currently browsed table data. Print selection if more than one cell is selected. + 打印当前正在浏览的表中的数据。如果选中了多于一个的单元格,就打印选中区域。 + + + + Ctrl+P + + + + + Refresh + 刷新 + + + + Refresh the data in the selected table + 刷新选中表中的数据 + + + + This button refreshes the data in the currently selected table. + 这个按钮刷新在当前选择的表中的数据。 + + + + F5 + + + + + Find in cells + 在单元格中查找 + + + + Open the find tool bar which allows you to search for values in the table view below. + 打开查找栏,可以在其中搜索表内数据。 + + + + + Bold + 粗体 + + + + Ctrl+B + + + + + + Italic + 斜体 + + + + + Underline + 下划线 + + + + Ctrl+U + + + + + + Align Right + 右对齐 + + + + + Align Left + 左对齐 + + + + + Center Horizontally + 垂直居中 + + + + + Justify + 两端对齐 + + + + + Edit Conditional Formats... + 编辑条件格式... + + + + Edit conditional formats for the current column + 为当前列设置条件格式 + + + + Clear Format + 清除格式 + + + + Clear All Formats + 清除全部格式 + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + 清除当前选择的单元格的格式和当前选择的列的条件格式 + + + + + Font Color + 字体颜色 + + + + + Background Color + 背景颜色 + + + + Toggle Format Toolbar + 切换格式工具栏 + + + + Show/hide format toolbar + 显示或隐藏格式工具栏 + + + + + This button shows or hides the formatting toolbar of the Data Browser + 此按钮显示或隐藏浏览数据窗口的格式工具栏 + + + + Select column + 选择列 + + + + Ctrl+Space + + + + + Replace text in cells + 在单元格中替换 + + + + Filter in any column + 在所有列中过滤 + + + + Ctrl+R + + + + + %n row(s) + + %n 行 + + + + + , %n column(s) + + , %n 列 + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . 求和: %1; 平均值: %2; 最小值: %3; 最大值: %4 + . Sum: %1; Average: %2; Min: %3; Max: %4 + + + + Conditional formats for "%1" + "%1" 的条件格式 + + + + determining row count... + 正在决定行数... + + + + %1 - %2 of >= %3 + %1 - %2 / 超过 %3 + + + + %1 - %2 of %3 + %1 - %2 / %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + 请输入一个伪主键以在当前视图启用编辑。这需要是视图中的一个满足唯一性的列的名字。 + + + + Delete Records + 删除记录 + + + + Duplicate records + 重复记录 + + + + Duplicate record + 重复的记录 + + + + Ctrl+" + + + + + Adjust rows to contents + 按内容调整行高 + + + + Error deleting record: +%1 + 删除记录时出错: +%1 + + + + Please select a record first + 请首先选择一条记录 + + + + There is no filter set for this table. View will not be created. + 此表没有过滤。视图不会被创建。 + + + + Please choose a new encoding for all tables. + 请为所有表选择新的编码。 + + + + Please choose a new encoding for this table. + 请为此表选择新的编码。 + + + + %1 +Leave the field empty for using the database encoding. + %1 +留空此字段以使用数据库默认编码。 + + + + This encoding is either not valid or not supported. + 这种编码非法或者不支持。 + + + + %1 replacement(s) made. + 进行了 %1 次替换。 + + + + VacuumDialog + + + Compact Database + 压缩数据库 + + + + Warning: Compacting the database will commit all of your changes. + 警告: 压缩数据库会提交你的所有修改。 + + + + Please select the databases to co&mpact: + 请选择要压缩的数据库(&M) + + + diff --git a/ConfigFiles/translations/sqlb_zh_TW.qm b/ConfigFiles/translations/sqlb_zh_TW.qm new file mode 100644 index 0000000..191011b Binary files /dev/null and b/ConfigFiles/translations/sqlb_zh_TW.qm differ diff --git a/ConfigFiles/translations/sqlb_zh_TW.ts b/ConfigFiles/translations/sqlb_zh_TW.ts new file mode 100644 index 0000000..51afd52 --- /dev/null +++ b/ConfigFiles/translations/sqlb_zh_TW.ts @@ -0,0 +1,6931 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + + + + + Version + 版本 + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + + + + + AddRecordDialog + + + Add New Record + + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + + + + + Name + 名稱 + + + + Type + 類型 + + + + Value + + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + + + + + Auto-increment + + + + + + Unique constraint + + + + + + Check constraint: %1 + + + + + + Foreign key: %1 + + + + + + Default value: %1 + + + + + + Error adding record. Message from database engine: + +%1 + + + + + Are you sure you want to restore all the entered values to their defaults? + + + + + Application + + + Possible command line arguments: + 可用命令列參數: + + + + Usage: %1 [options] [<database>|<project>] + + + + + + -h, --help Show command line options + + + + + -q, --quit Exit application after running scripts + + + + + -s, --sql <file> Execute this SQL file after opening the DB + + + + + -t, --table <table> Browse this table after opening the DB + + + + + -R, --read-only Open database in read-only mode + + + + + -o, --option <group>/<setting>=<value> + + + + + Run application with this setting temporarily set to value + + + + + -O, --save-option <group>/<setting>=<value> + + + + + Run application saving this value for this setting + + + + + -v, --version Display the current version + + + + + <database> Open this SQLite database + + + + + <project> Open this project file (*.sqbpro) + + + + + The -s/--sql option requires an argument + -s/--sql 選項需要一個參數 + + + + The file %1 does not exist + 檔案 %1 不存在 + + + + The -t/--table option requires an argument + + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + + + + + Invalid option/non-existant file: %1 + 無效選項/不存在的檔案: %1 + + + + SQLite Version + + + + + SQLCipher Version %1 (based on SQLite %2) + + + + + DB Browser for SQLite Version %1. + + + + + Built for %1, running on %2 + + + + + Qt Version %1 + + + + + CipherDialog + + + SQLCipher encryption + + + + + &Password + + + + + &Reenter password + + + + + Encr&yption settings + + + + + SQLCipher &3 defaults + + + + + SQLCipher &4 defaults + + + + + Custo&m + + + + + Page si&ze + + + + + &KDF iterations + + + + + HMAC algorithm + + + + + KDF algorithm + + + + + Plaintext Header Size + + + + + Passphrase + + + + + Raw key + + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + + + + + ColumnDisplayFormatDialog + + + Choose display format + + + + + Display format + + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + + + + + Default + 預設 + + + + Decimal number + + + + + Exponent notation + + + + + Hex blob + + + + + Hex number + + + + + Apple NSDate to date + + + + + Java epoch (milliseconds) to date + + + + + .NET DateTime.Ticks to date + + + + + Julian day to date + + + + + Unix epoch to local time + + + + + Date as dd/mm/yyyy + + + + + Lower case + + + + + Custom display format must contain a function call applied to %1 + + + + + Error in custom display format. Message from database engine: + +%1 + + + + + Custom display format must return only one column but it returned %1. + + + + + Octal number + + + + + Round number + + + + + Unix epoch to date + + + + + Upper case + + + + + Windows DATE to date + + + + + Custom + + + + + CondFormatManager + + + Conditional Format Manager + + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + + + + + Add new conditional format + + + + + &Add + + + + + Remove selected conditional format + + + + + &Remove + + + + + Move selected conditional format up + + + + + Move &up + + + + + Move selected conditional format down + + + + + Move &down + + + + + Foreground + + + + + Text color + + + + + Background + + + + + Background color + + + + + Font + + + + + Size + + + + + Bold + 粗體 + + + + Italic + 斜體 + + + + Underline + 底線 + + + + Alignment + + + + + Condition + + + + + + Click to select color + + + + + Are you sure you want to clear all the conditional formats of this field? + + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + + + + + Invalid file format + + + + + Do you want to save the changes made to the database file %1? + 您是否想儲存對資料庫檔案 %1 做出的修改? + + + + Exporting database to SQL file... + 正在匯出資料庫到 SQL 檔案... + + + + + Cancel + 取消 + + + + Executing SQL... + 正在執行 SQL... + + + + Action cancelled. + 操作已取消。 + + + + This database has already been attached. Its schema name is '%1'. + + + + + Do you really want to close this temporary database? All data will be lost. + + + + + Database didn't close correctly, probably still busy + + + + + The database is currently busy: + + + + + Do you want to abort that other operation? + + + + + + No database file opened + + + + + + Error in statement #%1: %2. +Aborting execution%3. + + + + + + and rolling back + + + + + didn't receive any output from %1 + + + + + could not execute command: %1 + + + + + Cannot delete this object + + + + + Cannot set data on this object + + + + + + A table with the name '%1' already exists in schema '%2'. + + + + + No table with name '%1' exists in schema '%2'. + + + + + + Cannot find column %1. + + + + + Creating savepoint failed. DB says: %1 + + + + + Renaming the column failed. DB says: +%1 + + + + + + Releasing savepoint failed. DB says: %1 + + + + + Creating new table failed. DB says: %1 + + + + + Copying data to new table failed. DB says: +%1 + + + + + Deleting old table failed. DB says: %1 + + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + + + + + could not get list of db objects: %1 + + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + 還原某些和這個資料表關聯的物件失敗。這個最可能是因為某些列的名稱修改了。這裡是您可能需要手動修復和執行的 SQL 語句: + + + + + + could not get list of databases: %1 + + + + + Error loading extension: %1 + 載入擴充套件時出現錯誤: %1 + + + + could not get column information + + + + + Error setting pragma %1 to %2: %3 + 設定雜注 %1 為 %2 時出現錯誤: %3 + + + + File not found. + 找不到檔案。 + + + + DbStructureModel + + + Name + 名稱 + + + + Object + 對象 + + + + Type + 類型 + + + + Schema + 架構 + + + + Database + + + + + Browsables + + + + + All + + + + + Temporary + + + + + Tables (%1) + 資料表 (%1) + + + + Indices (%1) + 索引 (%1) + + + + Views (%1) + 視圖 (%1) + + + + Triggers (%1) + 觸發器 (%1) + + + + EditDialog + + + Edit database cell + 編輯資料庫儲存格 + + + + Mode: + + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + + + + + RTL Text + + + + + + Image + + + + + JSON + + + + + XML + + + + + + Automatically adjust the editor mode to the loaded data type + + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + + + + + Auto-switch + + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + + + + + Open preview dialog for printing the data currently stored in the cell + + + + + Auto-format: pretty print on loading, compact on saving. + + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + + + + + Word Wrap + + + + + Wrap lines on word boundaries + + + + + + Open in default application or browser + + + + + Open in application + + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + + + + + Save file reference... + + + + + Save reference to file + + + + + + Open in external application + + + + + Autoformat + + + + + &Export... + + + + + + &Import... + + + + + + Import from file + + + + + + Opens a file dialog used to import any kind of data to this database cell. + + + + + Export to file + + + + + Opens a file dialog used to export the contents of this database cell to a file. + + + + + + Print... + + + + + Open preview dialog for printing displayed image + + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + + + + + Copy Hex and ASCII + + + + + Copy selected hexadecimal and ASCII columns to the clipboard + + + + + Ctrl+Shift+C + + + + + Set as &NULL + + + + + Apply data to cell + + + + + This button saves the changes performed in the cell editor to the database cell. + + + + + Apply + + + + + Text + 純文字檔案 + + + + Binary + 二進位 + + + + Erases the contents of the cell + 刪除儲存格的內容 + + + + This area displays information about the data present in this database cell + 這個區域顯示存在於這個資料庫儲存格中的資料的相關資訊 + + + + Type of data currently in cell + 目前在儲存格中的資料的類型 + + + + Size of data currently in table + 目前在資料表中的資料的大小 + + + + Choose a filename to export data + 選擇一個匯出資料的檔案名稱 + + + + Type of data currently in cell: %1 Image + + + + + %1x%2 pixel(s) + + + + + Type of data currently in cell: NULL + + + + + + Type of data currently in cell: Text / Numeric + 目前在儲存格中的資料的類型: Text 純文字檔案/ Numeric 數值 + + + + + Image data can't be viewed in this mode. + + + + + + Try switching to Image or Binary mode. + + + + + + Binary data can't be viewed in this mode. + + + + + + Try switching to Binary mode. + + + + + + Image files (%1) + + + + + Binary files (*.bin) + + + + + Choose a file to import + 選擇要匯入的一個檔案 + + + + %1 Image + + + + + Invalid data for this mode + + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + + + + + + + %n character(s) + + %n 個字元 + + + + + Type of data currently in cell: Valid JSON + + + + + Couldn't save file: %1. + + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + + + + + Type of data currently in cell: Binary + 目前在儲存格中的資料的類型: Binary 二進位 + + + + + %n byte(s) + + %n 位元組 + + + + + EditIndexDialog + + + &Name + 名稱(&N) + + + + Order + 順序 + + + + &Table + 資料表(&T) + + + + Edit Index Schema + + + + + &Unique + 唯一(&U) + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + + + + + Partial inde&x clause + + + + + Colu&mns + + + + + Table column + + + + + Type + 類型 + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + + + + + Index column + + + + + Deleting the old index failed: +%1 + + + + + Creating the index failed: +%1 + 建立索引時失敗: +%1 + + + + EditTableDialog + + + Edit table definition + 編輯資料表定義 + + + + Table + 資料表 + + + + Advanced + + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + + + + + Without Rowid + + + + + Database sche&ma + + + + + Fields + 欄位 + + + + Add + + + + + Remove + + + + + Move to top + + + + + Move up + + + + + Move down + + + + + Move to bottom + + + + + + Name + 名稱 + + + + + Type + 類型 + + + + NN + + + + + Not null + 非空 + + + + PK + PK + + + + Primary key + 主鍵 + + + + AI + AI + + + + Autoincrement + 自動增值 + + + + U + + + + + + + Unique + + + + + Default + 預設 + + + + Default value + 預設值 + + + + + + Check + 檢查 + + + + Check constraint + 檢查約束條件 + + + + Collation + + + + + + + Foreign Key + + + + + Constraints + + + + + Add constraint + + + + + Remove constraint + + + + + Columns + 列列 + + + + SQL + + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + + + + + + Primary Key + + + + + Add a primary key constraint + + + + + Add a foreign key constraint + + + + + Add a unique constraint + + + + + Add a check constraint + + + + + Error creating table. Message from database engine: +%1 + 建立資料表時出現錯誤。來自資料庫引擎的消息: +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + 至少有一行帶本欄位的記錄被設為空。這使得它不可能設定這個標誌。請首先修改資料表資料。 + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + 在這個欄位中至少有一行帶有一個非整數的值。這使得它不可能設定 AI 標誌。請首先修改資料表資料。 + + + + Column '%1' has duplicate data. + + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + 您是否確認您想刪除欄位 '%1'? +目前存儲在這個欄位中的所有資料將會遺失。 + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + + + + + ExportDataDialog + + + Export data as CSV + 匯出資料為 CSV + + + + Tab&le(s) + + + + + Colu&mn names in first line + + + + + Fie&ld separator + + + + + , + , + + + + ; + ; + + + + Tab + Tab + + + + | + | + + + + + + Other + 其它 + + + + &Quote character + 引號(&Q) + + + + " + " + + + + ' + ' + + + + New line characters + + + + + Windows: CR+LF (\r\n) + + + + + Unix: LF (\n) + + + + + Pretty print + + + + + + Could not open output file: %1 + + + + + + Choose a filename to export data + 選擇匯出資料的檔案名稱 + + + + Export data as JSON + + + + + exporting CSV + + + + + exporting JSON + + + + + Please select at least 1 table. + + + + + Choose a directory + 選擇一個目錄 + + + + Export completed. + 匯出完成。 + + + + ExportSqlDialog + + + Export SQL... + + + + + Tab&le(s) + + + + + Select All + + + + + Deselect All + + + + + &Options + + + + + Keep column names in INSERT INTO + + + + + Multiple rows (VALUES) per INSERT statement + + + + + Export everything + + + + + Export schema only + + + + + Export data only + + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + + + + + Please select at least one table. + + + + + Choose a filename to export + 選擇要匯出的檔案名稱 + + + + Export completed. + 匯出完成。 + + + + Export cancelled or failed. + 匯出取消或失敗。 + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + + + + + Find and Replace... + + + + + Print... + + + + + ExtendedTableWidget + + + Use as Exact Filter + + + + + Containing + + + + + Not containing + + + + + Not equal to + + + + + Greater than + + + + + Less than + + + + + Greater or equal + + + + + Less or equal + + + + + Between this and... + + + + + Regular expression + + + + + Edit Conditional Formats... + + + + + Set to NULL + + + + + Copy + + + + + Copy with Headers + + + + + Copy as SQL + + + + + Paste + + + + + Print... + + + + + Use in Filter Expression + + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + + + + + FileExtensionManager + + + File Extension Manager + + + + + &Up + + + + + &Down + + + + + &Add + + + + + &Remove + + + + + + Description + + + + + Extensions + + + + + *.extension + + + + + FilterLineEdit + + + Filter + 過濾 + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + + + + + Clear All Conditional Formats + + + + + Use for Conditional Format + + + + + Edit Conditional Formats... + + + + + Set Filter Expression + + + + + What's This? + 這是什麼? + + + + Is NULL + + + + + Is not NULL + + + + + Is empty + + + + + Is not empty + + + + + Not containing... + + + + + Equal to... + + + + + Not equal to... + + + + + Greater than... + + + + + Less than... + + + + + Greater or equal... + + + + + Less or equal... + + + + + In range... + + + + + Regular expression... + + + + + FindReplaceDialog + + + Find and Replace + + + + + Fi&nd text: + + + + + Re&place with: + + + + + Match &exact case + + + + + Match &only whole words + + + + + When enabled, the search continues from the other end when it reaches one end of the page + + + + + &Wrap around + + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + + + + + Search &backwards + + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + + + + + &Selection only + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Use regular e&xpressions + + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + + + + + &Find Next + + + + + F3 + + + + + &Replace + + + + + Highlight all the occurrences of the text in the page + + + + + F&ind All + + + + + Replace all the occurrences of the text in the page + + + + + Replace &All + + + + + The searched text was not found + + + + + The searched text was not found. + + + + + The searched text was found one time. + + + + + The searched text was found %1 times. + + + + + The searched text was replaced one time. + + + + + The searched text was replaced %1 times. + + + + + ForeignKeyEditor + + + &Reset + + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + + + + + ImportCsvDialog + + + Import CSV file + 匯入 CSV 檔案 + + + + Table na&me + + + + + &Column names in first line + 列名在首行(&C) + + + + Field &separator + 欄位分隔符號(&S) + + + + , + , + + + + ; + ; + + + + + Tab + Tab + + + + | + ; + + + + Other + 其它 + + + + &Quote character + 引號(&Q) + + + + + Other (printable) + + + + + + Other (code) + + + + + " + ; + + + + ' + ' + + + + &Encoding + + + + + UTF-8 + + + + + UTF-16 + + + + + ISO-8859-1 + + + + + Trim fields? + + + + + Separate tables + + + + + Advanced + + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + + + + + Ignore default &values + + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + + + + + Fail on missing values + + + + + Disable data type detection + + + + + Disable the automatic data type detection when creating a new table. + + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + + + + + Abort import + + + + + Ignore row + + + + + Replace existing row + + + + + Conflict strategy + + + + + + Deselect All + + + + + Match Similar + + + + + Select All + + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + + + + + There is already a table named '%1'. Do you want to import the data into it? + + + + + Creating restore point failed: %1 + + + + + Creating the table failed: %1 + + + + + importing CSV + + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + + + + + Inserting row failed: %1 + + + + + MainWindow + + + toolBar1 + + + + + Opens the SQLCipher FAQ in a browser window + + + + + Export one or more table(s) to a JSON file + + + + + DB Browser for SQLite + + + + + Open an existing database file in read only mode + + + + + &File + 檔案(&F) + + + + &Import + 匯入(&I) + + + + &Export + 匯出(&E) + + + + &Edit + 編輯(&E) + + + + &View + 查看(&V) + + + + &Help + 幫助(&H) + + + + Edit Database &Cell + + + + + DB Sche&ma + + + + + &Remote + + + + + + Execute current line + 執行目前行 + + + + This button executes the SQL statement present in the current editor line + + + + + Shift+F5 + + + + + Sa&ve Project + + + + + + Save SQL file as + + + + + This button saves the content of the current SQL editor tab to a file + + + + + &Browse Table + + + + + Copy Create statement + + + + + Copy the CREATE statement of the item to the clipboard + + + + + User + 用戶 + + + + Application + 應用程式 + + + + &Clear + 清除(&C) + + + + &New Database... + 新建資料庫(&N)... + + + + + Create a new database file + 建立一個新的資料庫檔 + + + + This option is used to create a new database file. + 這個選項用於建立一個新的資料庫檔案。 + + + + Ctrl+N + + + + + + &Open Database... + 打開資料庫(&O)... + + + + + + + + Open an existing database file + 打開一個現有的資料庫檔 + + + + + + This option is used to open an existing database file. + 這個選項用於打開一個現有的資料庫檔案。 + + + + Ctrl+O + + + + + &Close Database + 關閉資料庫(&C) + + + + + Ctrl+W + + + + + + Revert database to last saved state + 把資料庫退回到先前儲存的狀態 + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + 這個選項用於倒退目前的資料庫檔為它最後的儲存狀態。從最後儲存操作開始做出的所有修改將會遺失。 + + + + + Write changes to the database file + 把修改寫入到資料庫檔 + + + + This option is used to save changes to the database file. + 這個選項用於儲存修改到資料庫檔案。 + + + + Ctrl+S + + + + + Compact the database file, removing space wasted by deleted records + 壓縮資料庫檔,通過刪除記錄去掉浪費的空間 + + + + + Compact the database file, removing space wasted by deleted records. + 壓縮資料庫檔,通過刪除記錄去掉浪費的空間。 + + + + E&xit + 退出(&X) + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + 從一個 .sql 轉儲文字檔中匯入資料到一個新的或已有的資料庫。 + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + 這個選項讓你從一個 .sql 轉儲文字檔中匯入資料到一個新的或現有的資料庫。SQL 轉儲檔可以在大多數資料庫引擎上建立,包括 MySQL 和 PostgreSQL。 + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + 打開一個引導精靈讓您從一個逗號間隔的文字檔匯入資料到一個資料庫資料表中。 + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + 打開一個引導精靈讓您從一個逗號間隔的文字檔匯入資料到一個資料庫資料表中。CSV 檔可以在大多數資料庫和試算資料表應用程式上建立。 + + + + Export a database to a .sql dump text file. + 匯出一個資料庫導一個 .sql 轉儲文字檔案。 + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + 這個選項讓你匯出一個資料庫導一個 .sql 轉儲文字檔案。SQL 轉儲檔包含在大多數資料庫引擎上(包括 MySQL 和 PostgreSQL)重新建立資料庫所需的所有資料。 + + + + Export a database table as a comma separated text file. + 匯出一個資料庫資料表為逗號間隔的文字檔案。 + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + 匯出一個資料庫資料表為逗號間隔的文字檔,準備好被匯入到其他資料庫或試算資料表應用程式。 + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + 打開“建立資料表”引導精靈,在那裡可以定義在資料庫中的一個新資料表的名稱和欄位 + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + 打開“刪除資料表”引導精靈,在那裡你可以選擇要丟棄的一個資料庫資料表。 + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + 打開“修改資料表”引導精靈,在其中可以重命名一個現有的資料表。也可以從一個資料表中加入或刪除欄位,以及修改欄位名稱和類型。 + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + 打開“建立索引”引導精靈,在那裡可以在一個現有的資料庫資料表上定義一個新索引。 + + + + &Preferences... + 偏好選項(&P)... + + + + + Open the preferences window. + 打開首選項視窗。 + + + + &DB Toolbar + 資料庫工具列(&D) + + + + Shows or hides the Database toolbar. + 顯示或隱藏資料庫工具列。 + + + + Shift+F1 + + + + + &Recently opened + 最近打開(&R) + + + + Open &tab + 打開標籤頁(&T) + + + + Ctrl+T + + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + + + + + Un/comment block of SQL code + + + + + Un/comment block + + + + + Comment or uncomment current line or selected block of code + + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + + + + + Ctrl+/ + + + + + Stop SQL execution + + + + + Stop execution + + + + + Stop the currently running SQL script + + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + 執行 SQL + + + + &Tools + + + + + DB Toolbar + + + + + SQL &Log + + + + + Show S&QL submitted by + + + + + Error Log + + + + + This button clears the contents of the SQL logs + + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + + + + + &Plot + + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + + + + + + Project Toolbar + + + + + Extra DB toolbar + + + + + + + Close the current database file + + + + + This button closes the connection to the currently open database file + + + + + Ctrl+F4 + + + + + &Revert Changes + + + + + &Write Changes + + + + + Compact &Database... + + + + + Execute all/selected SQL + + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + + + + + &Load Extension... + + + + + Execute line + + + + + &Wiki + + + + + F1 + + + + + Bug &Report... + + + + + Feature Re&quest... + + + + + Web&site + + + + + &Donate on Patreon... + + + + + Open &Project... + + + + + &Attach Database... + + + + + + Add another database file to the current database connection + + + + + This button lets you add another database file to the current database connection + + + + + &Set Encryption... + + + + + SQLCipher &FAQ + + + + + Table(&s) to JSON... + + + + + Open Data&base Read Only... + + + + + Ctrl+Shift+O + + + + + Save results + + + + + Save the results view + + + + + This button lets you save the results of the last executed query + + + + + + Find text in SQL editor + + + + + Find + + + + + This button opens the search bar of the editor + + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + + + + + Find or replace + + + + + This button opens the find/replace dialog for the current editor tab + + + + + Ctrl+H + + + + + Export to &CSV + 匯出到 &CSV + + + + Save as &view + 儲存為視圖(&V) + + + + Save as view + 儲存為視圖 + + + + Browse Table + + + + + Shows or hides the Project toolbar. + + + + + Open SQL file(s) + + + + + This button opens files containing SQL statements and loads them in new editor tabs + + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + + + + + This button lets you open a DB Browser for SQLite project file + + + + + Extra DB Toolbar + + + + + New In-&Memory Database + + + + + Drag && Drop Qualified Names + + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + + + + + Drag && Drop Enquoted Names + + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + + + + + &Integrity Check + + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + + + + + &Foreign-Key Check + + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + + + + + &Quick Integrity Check + + + + + Run a quick integrity check over the open DB + + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + + + + + &Optimize + + + + + Attempt to optimize the database + + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + + + + + + Print + + + + + Print text from current SQL editor tab + + + + + Open a dialog for printing the text in the current SQL editor tab + + + + + Print the structure of the opened database + + + + + Open a dialog for printing the structure of the opened database + + + + + &Save Project As... + + + + + + + Save the project in a file selected in a dialog + + + + + Save A&ll + + + + + + + Save DB file, project file and opened SQL files + + + + + Ctrl+Shift+S + + + + + &Database from SQL file... + + + + + &Table from CSV file... + + + + + &Database to SQL file... + + + + + &Table(s) as CSV file... + + + + + &Create Table... + + + + + &Delete Table... + + + + + &Modify Table... + + + + + Create &Index... + + + + + W&hat's This? + + + + + &About + + + + + This button opens a new tab for the SQL editor + + + + + &Execute SQL + 執行 SQL(&E) + + + + + Save the current session to a file + 儲存目前會話到一個檔案 + + + + + Load a working session from a file + 從一個檔載入工作會話 + + + + + + Save SQL file + 儲存 SQL 檔案 + + + + Ctrl+E + + + + + Export as CSV file + 匯出為 CSV 檔案 + + + + Export table as comma separated values file + 匯出資料表為逗號間隔值檔案 + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Database encoding + 資料庫編碼 + + + + + Choose a database file + 選擇一個資料庫檔案 + + + + Ctrl+Return + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Reset Window Layout + + + + + Alt+0 + + + + + The database is currenctly busy. + + + + + Click here to interrupt the currently running query. + + + + + Encrypted + + + + + Database is encrypted using SQLCipher + + + + + Read only + + + + + Database file is read only. Editing the database is disabled. + + + + + Could not open database file. +Reason: %1 + + + + + + + Choose a filename to save under + 選擇一個檔案名稱儲存 + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + + + + + DB Browser for SQLite project file (*.sqbpro) + + + + + Error checking foreign keys after table modification. The changes will be reverted. + + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + + + + + Execution finished with errors. + + + + + Execution finished without errors. + + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + 您是否確認您想撤銷從上次儲存以來對資料庫檔‘%1’做出的所有修改。? + + + + Choose a file to import + 選擇要匯入的一個檔案 + + + + Text files(*.sql *.txt);;All files(*) + 文字檔案(*.sql *.txt);;所有擋檔案(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + 您是否確認您想建立一個新的資料庫檔用來存放匯入的資料? +如果您會到“否”的話,我們將嘗試匯入 SQL 檔中的資料到目前資料庫。 + + + + File %1 already exists. Please choose a different name. + 檔案 %1 已存在。請選擇一個不同的名稱。 + + + + Error importing data: %1 + 匯入資料時出現錯誤: %1 + + + + Import completed. + 匯入完成。 + + + + Delete View + 刪除視圖 + + + + Delete Trigger + 刪除觸發器 + + + + Delete Index + 刪除索引 + + + + + Delete Table + 刪除資料表 + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + 設定 PRAGMA 值將會提交您的目前事務。. +您確認嗎? + + + + In-Memory database + + + + + Window Layout + + + + + Simplify Window Layout + + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + + + + + Dock Windows at Left Side + + + + + Dock Windows at Top + + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + + + + + Are you sure you want to delete the view '%1'? + + + + + Are you sure you want to delete the trigger '%1'? + + + + + Are you sure you want to delete the index '%1'? + + + + + Error: could not delete the table. + + + + + Error: could not delete the view. + + + + + Error: could not delete the trigger. + + + + + Error: could not delete the index. + + + + + Message from database engine: +%1 + + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + + + + + Edit View %1 + + + + + Edit Trigger %1 + + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + + + + + -- EXECUTING SELECTION IN '%1' +-- + + + + + -- EXECUTING LINE IN '%1' +-- + + + + + -- EXECUTING ALL IN '%1' +-- + + + + + + At line %1: + + + + + Result: %1 + + + + + Result: %2 + + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + + + + + Opened '%1' in read-only mode from recent file list + + + + + Opened '%1' from recent file list + + + + + Project saved to file '%1' + + + + + This action will open a new SQL tab with the following statements for you to edit and run: + + + + + Rename Tab + + + + + Duplicate Tab + + + + + Close Tab + + + + + Opening '%1'... + + + + + There was an error opening '%1'... + + + + + Value is not a valid URL or filename: %1 + + + + + %1 rows returned in %2ms + + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + + + + + Do you want to save the changes made to the project file '%1'? + + + + + Choose text files + + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + + + + + Modify View + + + + + Modify Trigger + + + + + Modify Index + + + + + Modify Table + + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + + + + + Open Database or Project + + + + + Attach Database... + + + + + Import CSV file(s)... + + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + + + + + + Do you want to save the changes made to SQL tabs in a new project file? + + + + + Do you want to save the changes made to the SQL file %1? + + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + + + + + Select SQL file to open + 選擇要打開的 SQL 檔案 + + + + Select file name + 選擇檔案名稱 + + + + Select extension file + 選擇擴充套件檔 + + + + Extension successfully loaded. + 擴充套件成功載入。 + + + + Error loading extension: %1 + 載入擴充套件時出現錯誤: %1 + + + + Could not find resource file: %1 + + + + + + Don't show again + 不再顯示 + + + + New version available. + 新版本可用。 + + + + Choose a project file to open + + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + + + + + Could not open project file for writing. +Reason: %1 + + + + + Collation needed! Proceed? + + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + + + + + creating collation + + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + + + + + Please specify the view name + 請指定視圖名稱 + + + + There is already an object with that name. Please choose a different name. + 已有相同名稱的對象。請選擇一個不同的名稱。 + + + + View successfully created. + 成功建立視圖。 + + + + Error creating view: %1 + 建立視圖時出現錯誤: %1 + + + + This action will open a new SQL tab for running: + + + + + Press Help for opening the corresponding SQLite reference page. + + + + + Busy (%1) + + + + + NullLineEdit + + + Set to NULL + + + + + Alt+Del + + + + + PlotDock + + + Plot + 圖表 + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + + + + + Columns + 列列 + + + + X + X + + + + Y1 + + + + + Y2 + + + + + Axis Type + + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + + + + + Line type: + + + + + + None + + + + + Line + + + + + StepLeft + + + + + StepRight + + + + + StepCenter + + + + + Impulse + + + + + Point shape: + + + + + Cross + + + + + Plus + + + + + Circle + + + + + Disc + + + + + Square + + + + + Diamond + + + + + Star + + + + + Triangle + + + + + TriangleInverted + + + + + CrossSquare + + + + + PlusSquare + + + + + CrossCircle + + + + + PlusCircle + + + + + Peace + + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>儲存目前圖表...</p><p>檔案格式按副檔名選擇(png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + 儲存目前圖表... + + + + + Load all data and redraw plot + + + + + + + Row # + + + + + Copy + + + + + Print... + + + + + Show legend + + + + + Stacked bars + + + + + Date/Time + + + + + Date + + + + + Time + + + + + + Numeric + + + + + Label + + + + + Invalid + + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + + + + + Choose an axis color + + + + + Choose a filename to save under + 選擇一個檔案名稱儲存 + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;所有擋檔案(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + + + + + Loading all remaining data for this table took %1ms. + + + + + PreferencesDialog + + + Preferences + 首選項 + + + + &General + + + + + Remember last location + + + + + Always use this location + + + + + Remember last location for session only + + + + + Lan&guage + + + + + Show remote options + + + + + Automatic &updates + + + + + &Database + 資料庫(&D) + + + + Database &encoding + 資料庫編碼(&E) + + + + Open databases with foreign keys enabled. + 打開啟用了外鍵的資料庫。 + + + + &Foreign keys + 外鍵(&F) + + + + + + + + + + + + enabled + 啟用 + + + + Default &location + 預設位置(&L) + + + + + + ... + ... + + + + Remove line breaks in schema &view + + + + + Prefetch block si&ze + + + + + SQ&L to execute after opening database + + + + + Default field type + + + + + Data &Browser + + + + + Font + + + + + &Font + + + + + Content + + + + + Symbol limit in cell + + + + + Threshold for completion and calculation on selection + + + + + Show images in cell + + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + + + + + NULL + + + + + Regular + + + + + Binary + 二進位 + + + + Background + + + + + Filters + + + + + Escape character + + + + + Delay time (&ms) + + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + + + + + &SQL + &SQL + + + + Settings name + 設定名稱 + + + + Context + 上下文 + + + + Colour + 顏色 + + + + Bold + 粗體 + + + + Italic + 斜體 + + + + Underline + 底線 + + + + Keyword + 關鍵字 + + + + Function + 函數 + + + + Table + 資料表 + + + + Comment + 注釋 + + + + Identifier + 識別符 + + + + String + 字串 + + + + Current line + 目前行 + + + + SQL &editor font size + SQL 編輯器字體大小(&E) + + + + Tab size + + + + + SQL editor &font + + + + + Error indicators + + + + + Hori&zontal tiling + + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + + + + + Code co&mpletion + + + + + Toolbar style + + + + + + + + + Only display the icon + + + + + + + + + Only display the text + + + + + + + + + The text appears beside the icon + + + + + + + + + The text appears under the icon + + + + + + + + + Follow the style + + + + + DB file extensions + + + + + Manage + + + + + Main Window + + + + + Database Structure + + + + + Browse Data + + + + + Execute SQL + 執行 SQL + + + + Edit Database Cell + + + + + When this value is changed, all the other color preferences are also set to matching colors. + + + + + Follow the desktop style + + + + + Dark style + + + + + Application style + + + + + This sets the font size for all UI elements which do not have their own font size option. + + + + + Font size + + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + + + + + Database structure font size + + + + + Font si&ze + + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + + + + + Field display + + + + + Displayed &text + + + + + + + + + + Click to set this color + + + + + Text color + + + + + Background color + + + + + Preview only (N/A) + + + + + Foreground + + + + + SQL &results font size + + + + + &Wrap lines + + + + + Never + + + + + At word boundaries + + + + + At character boundaries + + + + + At whitespace boundaries + + + + + &Quotes for identifiers + + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + + + + + "Double quotes" - Standard SQL (recommended) + + + + + `Grave accents` - Traditional MySQL quotes + + + + + [Square brackets] - Traditional MS SQL Server quotes + + + + + Keywords in &UPPER CASE + + + + + When set, the SQL keywords are completed in UPPER CASE letters. + + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + + + + + Close button on tabs + + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + + + + + &Extensions + 擴充套件(&E) + + + + Select extensions to load for every database: + 選擇每個資料庫要載入的擴充套件: + + + + Add extension + 加入擴充套件 + + + + Remove extension + 刪除擴充套件 + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + + + + + Disable Regular Expression extension + + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + + + + + Allow loading extensions from SQL code + + + + + Remote + + + + + CA certificates + + + + + Proxy + + + + + Configure + + + + + + Subject CN + + + + + Common Name + + + + + Subject O + + + + + Organization + + + + + + Valid from + + + + + + Valid to + + + + + + Serial number + + + + + Your certificates + + + + + File + 檔案 + + + + Subject Common Name + + + + + Issuer CN + + + + + Issuer Common Name + + + + + Clone databases into + + + + + + Choose a directory + 選擇一個目錄 + + + + The language will change after you restart the application. + + + + + Select extension file + 選擇擴充套件檔 + + + + Extensions(*.so *.dylib *.dll);;All files(*) + + + + + Import certificate file + + + + + No certificates found in this file. + + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + + + + + ProxyDialog + + + Proxy Configuration + + + + + Pro&xy Type + + + + + Host Na&me + + + + + Port + + + + + Authentication Re&quired + + + + + &User Name + + + + + Password + + + + + None + + + + + System settings + + + + + HTTP + + + + + Socks v5 + + + + + QObject + + + Error importing data + + + + + from record number %1 + + + + + . +%1 + + + + + Importing CSV file... + + + + + Cancel + 取消 + + + + All files (*) + + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + + + + + Left + + + + + Right + + + + + Center + + + + + Justify + + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + + + + + DB Browser for SQLite Project Files (*.sqbpro) + + + + + SQL Files (*.sql) + + + + + All Files (*) + + + + + Text Files (*.txt) + + + + + Comma-Separated Values Files (*.csv) + + + + + Tab-Separated Values Files (*.tsv) + + + + + Delimiter-Separated Values Files (*.dsv) + + + + + Concordance DAT files (*.dat) + + + + + JSON Files (*.json *.js) + + + + + XML Files (*.xml) + + + + + Binary Files (*.bin *.dat) + + + + + SVG Files (*.svg) + + + + + Hex Dump Files (*.dat *.bin) + + + + + Extensions (*.so *.dylib *.dll) + + + + + RemoteCommitsModel + + + Commit ID + + + + + Message + + + + + Date + + + + + Author + + + + + Size + + + + + Authored and committed by %1 + + + + + Authored by %1, committed by %2 + + + + + RemoteDatabase + + + Error opening local databases list. +%1 + + + + + Error creating local databases list. +%1 + + + + + RemoteDock + + + Remote + + + + + Identity + + + + + Push currently opened database to server + + + + + DBHub.io + + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + + + + + Local + + + + + Current Database + + + + + Clone + + + + + User + 用戶 + + + + Database + + + + + Branch + + + + + Commits + + + + + Commits for + + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + + + + + Back + + + + + Delete Database + + + + + Delete the local clone of this database + + + + + Open in Web Browser + + + + + Open the web page for the current database in your browser + + + + + Clone from Link + + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + + + + + Refresh + + + + + Reload all data and update the views + + + + + F5 + + + + + Clone Database + + + + + Open Database + + + + + Open the local copy of this database + + + + + Check out Commit + + + + + Download and open this specific commit + + + + + Check out Latest Commit + + + + + Check out the latest commit of the current branch + + + + + Save Revision to File + + + + + Saves the selected revision of the database to another file + + + + + Upload Database + + + + + Upload this database as a new commit + + + + + Select an identity to connect + + + + + Public + + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + + + + + Invalid URL: The host name does not match the host name of the current identity. + + + + + Invalid URL: No branch name specified. + + + + + Invalid URL: No commit ID specified. + + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + + + + + The database has unsaved changes. Are you sure you want to push it before saving? + + + + + The database you are trying to delete is currently opened. Please close it before deleting. + + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + + + + + RemoteLocalFilesModel + + + Name + 名稱 + + + + Branch + + + + + Last modified + + + + + Size + + + + + Commit + + + + + File + 檔案 + + + + RemoteModel + + + Name + 名稱 + + + + Commit + + + + + Last modified + + + + + Size + + + + + Size: + + + + + Last Modified: + + + + + Licence: + + + + + Default Branch: + + + + + RemoteNetwork + + + Choose a location to save the file + + + + + Error opening remote file at %1. +%2 + + + + + Error: Invalid client certificate specified. + + + + + Please enter the passphrase for this client certificate in order to authenticate. + + + + + Cancel + 取消 + + + + Uploading remote database to +%1 + + + + + Downloading remote database from +%1 + + + + + + Error: The network is not accessible. + + + + + Error: Cannot open the file for sending. + + + + + RemotePushDialog + + + Push database + + + + + Database na&me to push to + + + + + Commit message + + + + + Database licence + + + + + Public + + + + + Branch + + + + + Force push + + + + + Username + + + + + Database will be public. Everyone has read access to it. + + + + + Database will be private. Only you have access to it. + + + + + Use with care. This can cause remote commits to be deleted. + + + + + RunSql + + + Execution aborted by user + + + + + , %1 rows affected + + + + + query executed successfully. Took %1ms%2 + + + + + executing query + + + + + SelectItemsPopup + + + A&vailable + + + + + Sele&cted + + + + + SqlExecutionArea + + + Form + 表單 + + + + Find previous match [Shift+F3] + + + + + Find previous match with wrapping + + + + + Shift+F3 + + + + + The found pattern must be a whole word + + + + + Whole Words + + + + + Text pattern to find considering the checks in this frame + + + + + Find in editor + + + + + The found pattern must match in letter case + + + + + Case Sensitive + + + + + Find next match [Enter, F3] + + + + + Find next match with wrapping + + + + + F3 + + + + + Interpret search pattern as a regular expression + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Regular Expression + + + + + + Close Find Bar + + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + + + + + Results of the last executed statements + 最後執行語句的結果 + + + + This field shows the results and status codes of the last executed statements. + 這個欄位顯示最後執行的語句的結果和狀態碼。 + + + + Couldn't read file: %1. + + + + + + Couldn't save file: %1. + + + + + Your changes will be lost when reloading it! + + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + + + + + (X) ltrim(X) removes spaces from the left side of X. + + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + + + + + (X) rtrim(X) removes spaces from the right side of X. + + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + + + + + (X) trim(X) removes spaces from both ends of X. + + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + + + + + + + + (timestring,modifier,modifier,...) + + + + + (format,timestring,modifier,modifier,...) + + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + + + + + SqliteTableModel + + + reading rows + + + + + loading... + + + + + References %1(%2) +Hold %3Shift and click to jump there + + + + + Error changing data: +%1 + 修改資料庫時出現錯誤: +%1 + + + + retrieving list of columns + + + + + Fetching data... + + + + + + Cancel + 取消 + + + + TableBrowser + + + Browse Data + + + + + &Table: + + + + + Select a table to browse data + 選擇一個資料表以瀏覽資料 + + + + Use this list to select a table to be displayed in the database view + 使用這個清單選擇一個要顯示在資料庫視圖中的資料表 + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + + + + + Text pattern to find considering the checks in this frame + + + + + Find in table + + + + + Find previous match [Shift+F3] + + + + + Find previous match with wrapping + + + + + Shift+F3 + + + + + Find next match [Enter, F3] + + + + + Find next match with wrapping + + + + + F3 + + + + + The found pattern must match in letter case + + + + + Case Sensitive + + + + + The found pattern must be a whole word + + + + + Whole Cell + + + + + Interpret search pattern as a regular expression + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Regular Expression + + + + + + Close Find Bar + + + + + Text to replace with + + + + + Replace with + + + + + Replace next match + + + + + + Replace + + + + + Replace all matches + + + + + Replace all + + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + + + + + |< + + + + + Scroll one page upwards + + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 / 0 + + + + Scroll one page downwards + + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + + + + + > + > + + + + Scroll to the end + + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + + + + + >| + + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>點擊這裡跳到指定的記錄</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>這個按鈕用於導航到在“轉到”區域中指定的記錄編號。</p></body></html> + + + + Go to: + 轉到: + + + + Enter record number to browse + 輸入要瀏覽的記錄編號 + + + + Type a record number in this area and click the Go to: button to display the record in the database view + 在這個區域中輸入一個記錄編號,並點擊“轉到:”按鈕以在資料庫視圖中顯示記錄 + + + + 1 + 1 + + + + Show rowid column + + + + + Toggle the visibility of the rowid column + + + + + Unlock view editing + + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + + + + + Edit display format + + + + + Edit the display format of the data in this column + + + + + + New Record + 新建記錄 + + + + + Insert a new record in the current table + 在目前資料表中插入一條新記錄 + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + + + + + + Delete Record + 刪除記錄 + + + + Delete the current record + 刪除目前記錄 + + + + + This button deletes the record or records currently selected in the table + + + + + + Insert new record using default values in browsed table + + + + + Insert Values... + + + + + + Open a dialog for inserting values in a new record + + + + + Export to &CSV + 匯出到 &CSV + + + + + Export the filtered data to CSV + + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + + + + + Save as &view + 儲存為視圖(&V) + + + + + Save the current filter, sort column and display formats as a view + + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + + + + + Save Table As... + + + + + + Save the table as currently displayed + + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + + + + + Hide column(s) + + + + + Hide selected column(s) + + + + + Show all columns + + + + + Show all columns that were hidden + + + + + + Set encoding + + + + + Change the encoding of the text in the table cells + + + + + Set encoding for all tables + + + + + Change the default encoding assumed for all tables in the database + + + + + Clear Filters + + + + + Clear all filters + + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + + + + + Clear Sorting + + + + + Reset the order of rows to the default + + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + + + + + Print + + + + + Print currently browsed table data + + + + + Print currently browsed table data. Print selection if more than one cell is selected. + + + + + Ctrl+P + + + + + Refresh + + + + + Refresh the data in the selected table + + + + + This button refreshes the data in the currently selected table. + 這個按鈕更新在目前選擇的資料表中的資料。 + + + + F5 + + + + + Find in cells + + + + + Open the find tool bar which allows you to search for values in the table view below. + + + + + + Bold + 粗體 + + + + Ctrl+B + + + + + + Italic + 斜體 + + + + + Underline + 底線 + + + + Ctrl+U + + + + + + Align Right + + + + + + Align Left + + + + + + Center Horizontally + + + + + + Justify + + + + + + Edit Conditional Formats... + + + + + Edit conditional formats for the current column + + + + + Clear Format + + + + + Clear All Formats + + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + + + + + + Font Color + + + + + + Background Color + + + + + Toggle Format Toolbar + + + + + Show/hide format toolbar + + + + + + This button shows or hides the formatting toolbar of the Data Browser + + + + + Select column + + + + + Ctrl+Space + + + + + Replace text in cells + + + + + Filter in any column + + + + + Ctrl+R + + + + + %n row(s) + + + + + + + , %n column(s) + + + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + + + + + Conditional formats for "%1" + + + + + determining row count... + + + + + %1 - %2 of >= %3 + + + + + %1 - %2 of %3 + %1 - %2 / %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + + + + + Delete Records + + + + + Duplicate records + + + + + Duplicate record + + + + + Ctrl+" + + + + + Adjust rows to contents + + + + + Error deleting record: +%1 + 刪除記錄時出現錯誤: +%1 + + + + Please select a record first + 請首先選擇一條記錄 + + + + There is no filter set for this table. View will not be created. + + + + + Please choose a new encoding for all tables. + + + + + Please choose a new encoding for this table. + + + + + %1 +Leave the field empty for using the database encoding. + + + + + This encoding is either not valid or not supported. + + + + + %1 replacement(s) made. + + + + + VacuumDialog + + + Compact Database + 壓縮資料庫 + + + + Warning: Compacting the database will commit all of your changes. + + + + + Please select the databases to co&mpact: + + + + diff --git a/ConfigFiles/translations/translations.qrc b/ConfigFiles/translations/translations.qrc new file mode 100644 index 0000000..9dc8486 --- /dev/null +++ b/ConfigFiles/translations/translations.qrc @@ -0,0 +1,21 @@ + + + sqlb_ar_SA.qm + sqlb_cs.qm + sqlb_ru.qm + sqlb_de.qm + sqlb_fr.qm + sqlb_zh.qm + sqlb_zh_TW.qm + sqlb_pl.qm + sqlb_pt_BR.qm + sqlb_en_GB.qm + sqlb_es_ES.qm + sqlb_ko_KR.qm + sqlb_tr.qm + sqlb_uk_UA.qm + sqlb_it.qm + sqlb_ja.qm + sqlb_nl.qm + + diff --git a/README.md b/README.md index 201d536..a65c8d8 100644 --- a/README.md +++ b/README.md @@ -6,25 +6,25 @@ - cmake: cmake相关的脚本 - doc: 生成文档需要的模板及配置文件 - extlib: 第三方依赖库(见下文extlib获取方式) -- src: FastCAE源码 +- src: LAMPCAE源码 - test: 包含单元测试代码(待整理) ## 构建编译 -### FastCAE相关的cmake构建选项说明 -- `FASTCAE_AUTO_DOWNLOAD`:如果源码目录不存在extlib目录时是否会自动从gitee克隆依赖包。 -- `FASTCAE_DOXYGEN_DOC`:是否需要构建目标Doxygen(需要本地安装Doxygen软件) -- `FASTCAE_ENABLE_DEV`:是否在构建完成时自动拷贝依赖文件到调试目录。(开启该选项会在每次编译完拷贝第三方依赖库文件到构建目录,会增加构建时间) -- `FASTCAE_ENABLE_MPI`:是否开启MPI支持(目前无效)。 -- `FASTCAE_ENABLE_OPENMP`:是否开启OpenMP。 -- `FASTCAE_ENABLE_TEST`:是否构建单元测试模块(目前无效)。 -- `FASTCAE_INSTALLATION_PACKAGE`:是否构建安装包制作PACKAGE。 +### LAMPCAE相关的cmake构建选项说明 +- `LAMPCAE_AUTO_DOWNLOAD`:如果源码目录不存在extlib目录时是否会自动从gitee克隆依赖包。 +- `LAMPCAE_DOXYGEN_DOC`:是否需要构建目标Doxygen(需要本地安装Doxygen软件) +- `LAMPCAE_ENABLE_DEV`:是否在构建完成时自动拷贝依赖文件到调试目录。(开启该选项会在每次编译完拷贝第三方依赖库文件到构建目录,会增加构建时间) +- `LAMPCAE_ENABLE_MPI`:是否开启MPI支持(目前无效)。 +- `LAMPCAE_ENABLE_OPENMP`:是否开启OpenMP。 +- `LAMPCAE_ENABLE_TEST`:是否构建单元测试模块(目前无效)。 +- `LAMPCAE_INSTALLATION_PACKAGE`:是否构建安装包制作PACKAGE。 ### cmake预定义目标说明: - ALL_BUILD:生成所有项目。 -- INSTALL:安装FastCAE到CMAKE_INSTALL_PREFIX定义的目录。 -- PACKAGE或者package: 在Visual Studio中该目标为大写,在其它构建系统中该目标为小写,用于将FastCAE打包成安装包(exe、deb、rpm)。 -- DOXYGEN: 生成FastCAE的Doxygen格式文档(html)。 +- INSTALL:安装LAMPCAE到CMAKE_INSTALL_PREFIX定义的目录。 +- PACKAGE或者package: 在Visual Studio中该目标为大写,在其它构建系统中该目标为小写,用于将LAMPCAE打包成安装包(exe、deb、rpm)。 +- DOXYGEN: 生成LAMPCAE的Doxygen格式文档(html)。 ### 编译视频教程 @@ -73,13 +73,13 @@ ### Linux系统 ```bash - git clone https://gitee.com/DISOGitee/FastCAELinuxExtlib.git extlib + git clone https://gitee.com/DISOGitee/LAMPCAELinuxExtlib.git extlib ``` ### windows系统 ```bash - git clone https://gitee.com/DISOGitee/FastCAEWinExtlib.git extlib + git clone https://gitee.com/DISOGitee/LAMPCAEWinExtlib.git extlib ``` @@ -156,8 +156,8 @@ cmake --build build --target package ## 相关链接 -- 帮助文档:http://www.fastcae.com/index.php?mod=document -- 社区论坛:http://disc.fastcae.com/ +- 帮助文档:http://www.LAMPCAE.com/index.php?mod=document +- 社区论坛:http://disc.LAMPCAE.com/ ## 感谢开源贡献者 @@ -172,4 +172,4 @@ cmake --build build --target package 技术交流QQ群:671925863 -官方微信号:FastCAE-DISO +官方微信号:LAMPCAE-DISO diff --git a/cmake/CMakePack.cmake b/cmake/CMakePack.cmake index c00b5e5..ed628cf 100644 --- a/cmake/CMakePack.cmake +++ b/cmake/CMakePack.cmake @@ -11,7 +11,7 @@ set(CPACK_RESOURCE_FILE_LICENSE "${PROJECT_SOURCE_DIR}/LICENSE") # site set(CPACK_SITE "${PROJECT_HOMEPAGE_URL}") # 从发布包中安装时,文件将放在/opt/${PROJECT_NAME}目录下 -#[[if(FASTCAE_WIN) +#[[if(LAMPCAE_WIN) set(CPACK_PACKAGING_INSTALL_PREFIX "C:\\Program Files\\${PROJECT_NAME}") else() set(CPACK_PACKAGING_INSTALL_PREFIX "/opt/${PROJECT_NAME}") @@ -73,15 +73,15 @@ if(WIN32 OR MINGW) #set(CPACK_NSIS_MUI_HEADERIMAGE "${CMAKE_SOURCE_DIR}/src/qrc/QUI/HEADERIMAGE.bmp") set(CPACK_NSIS_MODIFY_PATH ON) set(CPACK_NSIS_MUI_FINISHPAGE_RUN ON) - set(CPACK_NSIS_HELP_LINK "http://www.fastcae.com/index.php?mod=document") - set(CPACK_NSIS_URL_INFO_ABOUT "http://www.fastcae.com/index.php?mod=product") - set(CPACK_NSIS_MENU_LINKS "http://www.fastcae.com/" "FastCAE网站") + set(CPACK_NSIS_HELP_LINK "http://www.LAMPCAE.com/index.php?mod=document") + set(CPACK_NSIS_URL_INFO_ABOUT "http://www.LAMPCAE.com/index.php?mod=product") + set(CPACK_NSIS_MENU_LINKS "http://www.LAMPCAE.com/" "LAMPCAE网站") set(CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL ON) elseif(WIX_EXECUTABLE) list(APPEND CPACK_GENERATOR "WIX") set(CPACK_WIX_PROPERTY_ARPCOMMENTS ${CPACK_PACKAGE_DESCRIPTION_SUMMARY}) - set(CPACK_WIX_PROPERTY_ARPURLINFOABOUT "http://www.fastcae.com/index.php?mod=product") - set(CPACK_WIX_PROPERTY_ARPHELPLINK "http://www.fastcae.com/") + set(CPACK_WIX_PROPERTY_ARPURLINFOABOUT "http://www.LAMPCAE.com/index.php?mod=product") + set(CPACK_WIX_PROPERTY_ARPHELPLINK "http://www.LAMPCAE.com/") endif () endif() diff --git a/cmake/FindCGNS.cmake b/cmake/FindCGNS.cmake index 0f6a74c..c5bb959 100644 --- a/cmake/FindCGNS.cmake +++ b/cmake/FindCGNS.cmake @@ -1,7 +1,7 @@ # FindCGNS # -------- # -# Find the CGNS libraries(Only for CGNS provided by FastCAE) +# Find the CGNS libraries(Only for CGNS provided by LAMPCAE) # # Result Variables # ^^^^^^^^^^^^^^^^ @@ -28,18 +28,18 @@ # # 防止重复引入 -if(FASTCAE_CGNS_ALREADY_INCLUDED) +if(LAMPCAE_CGNS_ALREADY_INCLUDED) return() endif() -set(FASTCAE_CGNS_ALREADY_INCLUDED 1) +set(LAMPCAE_CGNS_ALREADY_INCLUDED 1) # find_path 搜索包含某个文件的路径 # 如果在某个路径下发现了该文件,该结果会被存储到该变量中;如果没有找到,存储的结果将会是-NOTFOUND find_path(CGNS_DIRS NAMES include/cgnslib.h - PATHS - ${CMAKE_SOURCE_DIR}/extlib/CGNS + PATHS + D:/vcpkg/installed/x64-windows NO_SYSTEM_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH ) @@ -64,20 +64,20 @@ find_path(CGNS_LIBRARY_DIRS ${CGNS_DIRS}/lib ) -set(CGNS_LIBRARIES FASTCAE::CGNS) +set(CGNS_LIBRARIES LAMPCAE::CGNS) -add_library(FASTCAE::CGNS SHARED IMPORTED) -set_property(TARGET FASTCAE::CGNS PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${CGNS_INCLUDE_DIRS}) -set_property(TARGET FASTCAE::CGNS APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) -set_property(TARGET FASTCAE::CGNS PROPERTY INTERFACE_LINK_LIBRARIES FASTCAE::HDF5) +add_library(LAMPCAE::CGNS SHARED IMPORTED) +set_property(TARGET LAMPCAE::CGNS PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${CGNS_INCLUDE_DIRS}) +set_property(TARGET LAMPCAE::CGNS APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) +set_property(TARGET LAMPCAE::CGNS PROPERTY INTERFACE_LINK_LIBRARIES LAMPCAE::HDF5) if(CMAKE_SYSTEM_NAME STREQUAL "Linux") - set_target_properties(FASTCAE::CGNS PROPERTIES + set_target_properties(LAMPCAE::CGNS PROPERTIES IMPORTED_LOCATION_RELEASE "${CGNS_LIBRARY_DIRS}/libcgns.so.${CGNS_VERSION_MAJOR}.${CGNS_VERSION_MINOR}" IMPORTED_SONAME_RELEASE "libcgns.so" ) elseif(CMAKE_SYSTEM_NAME STREQUAL "Windows") - set_target_properties(FASTCAE::CGNS PROPERTIES + set_target_properties(LAMPCAE::CGNS PROPERTIES IMPORTED_IMPLIB_RELEASE "${CGNS_LIBRARY_DIRS}/cgnsdll.lib" IMPORTED_LOCATION_RELEASE "${CGNS_DIRS}/bin/cgnsdll.dll" ) diff --git a/cmake/FindGmsh.cmake b/cmake/FindGmsh.cmake index 681e7e1..b1dc677 100644 --- a/cmake/FindGmsh.cmake +++ b/cmake/FindGmsh.cmake @@ -1,7 +1,7 @@ # FindGmsh # -------- # -# Find the Gmsh exe (Only for Gmsh provided by FastCAE) +# Find the Gmsh exe (Only for Gmsh provided by LAMPCAE) # # Result Variables # ^^^^^^^^^^^^^^^^ diff --git a/cmake/FindHDF5.cmake b/cmake/FindHDF5.cmake index 4816b80..a4fbc3c 100644 --- a/cmake/FindHDF5.cmake +++ b/cmake/FindHDF5.cmake @@ -1,7 +1,7 @@ # FindHDF5 # -------- # -# Find the HDF5 libraries(Only for HDF5 provided by FastCAE) +# Find the HDF5 libraries(Only for HDF5 provided by LAMPCAE) # # Result Variables # ^^^^^^^^^^^^^^^^ @@ -28,10 +28,10 @@ # # 防止重复引入 -if(FASTCAE_HDF5_ALREADY_INCLUDED) +if(LAMPCAE_HDF5_ALREADY_INCLUDED) return() endif() -set(FASTCAE_HDF5_ALREADY_INCLUDED 1) +set(LAMPCAE_HDF5_ALREADY_INCLUDED 1) # find_path 搜索包含某个文件的路径 # 如果在某个路径下发现了该文件,该结果会被存储到该变量中;如果没有找到,存储的结果将会是-NOTFOUND @@ -64,77 +64,77 @@ find_path(HDF5_LIBRARY_DIRS ${HDF5_DIRS}/lib ) -set(HDF5_LIBRARIES FASTCAE::HDF5;FASTCAE::HDF5CPP;FASTCAE::HDF5HL;FASTCAE::HDF5HLCPP;FASTCAE::HDF5TOOLS) +set(HDF5_LIBRARIES LAMPCAE::HDF5;LAMPCAE::HDF5CPP;LAMPCAE::HDF5HL;LAMPCAE::HDF5HLCPP;LAMPCAE::HDF5TOOLS) -add_library(FASTCAE::HDF5 SHARED IMPORTED) -add_library(FASTCAE::HDF5CPP SHARED IMPORTED) -add_library(FASTCAE::HDF5HL SHARED IMPORTED) -add_library(FASTCAE::HDF5HLCPP SHARED IMPORTED) -add_library(FASTCAE::HDF5TOOLS SHARED IMPORTED) +add_library(LAMPCAE::HDF5 SHARED IMPORTED) +add_library(LAMPCAE::HDF5CPP SHARED IMPORTED) +add_library(LAMPCAE::HDF5HL SHARED IMPORTED) +add_library(LAMPCAE::HDF5HLCPP SHARED IMPORTED) +add_library(LAMPCAE::HDF5TOOLS SHARED IMPORTED) -set_property(TARGET FASTCAE::HDF5 PROPERTY INTERFACE_COMPILE_DEFINITIONS "H5_BUILT_AS_DYNAMIC_LIB") -set_property(TARGET FASTCAE::HDF5 PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${HDF5_INCLUDE_DIRS}) -set_property(TARGET FASTCAE::HDF5 APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) +set_property(TARGET LAMPCAE::HDF5 PROPERTY INTERFACE_COMPILE_DEFINITIONS "H5_BUILT_AS_DYNAMIC_LIB") +set_property(TARGET LAMPCAE::HDF5 PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${HDF5_INCLUDE_DIRS}) +set_property(TARGET LAMPCAE::HDF5 APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) -set_property(TARGET FASTCAE::HDF5CPP PROPERTY INTERFACE_COMPILE_DEFINITIONS "H5_BUILT_AS_DYNAMIC_LIB") -set_property(TARGET FASTCAE::HDF5CPP PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${HDF5_INCLUDE_DIRS}) -set_property(TARGET FASTCAE::HDF5CPP APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) -set_property(TARGET FASTCAE::HDF5CPP PROPERTY INTERFACE_LINK_LIBRARIES FASTCAE::HDF5) +set_property(TARGET LAMPCAE::HDF5CPP PROPERTY INTERFACE_COMPILE_DEFINITIONS "H5_BUILT_AS_DYNAMIC_LIB") +set_property(TARGET LAMPCAE::HDF5CPP PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${HDF5_INCLUDE_DIRS}) +set_property(TARGET LAMPCAE::HDF5CPP APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) +set_property(TARGET LAMPCAE::HDF5CPP PROPERTY INTERFACE_LINK_LIBRARIES LAMPCAE::HDF5) -set_property(TARGET FASTCAE::HDF5HL PROPERTY INTERFACE_COMPILE_DEFINITIONS "H5_BUILT_AS_DYNAMIC_LIB") -set_property(TARGET FASTCAE::HDF5HL PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${HDF5_INCLUDE_DIRS}) -set_property(TARGET FASTCAE::HDF5HL APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) -set_property(TARGET FASTCAE::HDF5HL PROPERTY INTERFACE_LINK_LIBRARIES FASTCAE::HDF5) +set_property(TARGET LAMPCAE::HDF5HL PROPERTY INTERFACE_COMPILE_DEFINITIONS "H5_BUILT_AS_DYNAMIC_LIB") +set_property(TARGET LAMPCAE::HDF5HL PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${HDF5_INCLUDE_DIRS}) +set_property(TARGET LAMPCAE::HDF5HL APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) +set_property(TARGET LAMPCAE::HDF5HL PROPERTY INTERFACE_LINK_LIBRARIES LAMPCAE::HDF5) -set_property(TARGET FASTCAE::HDF5HLCPP PROPERTY INTERFACE_COMPILE_DEFINITIONS "H5_BUILT_AS_DYNAMIC_LIB") -set_property(TARGET FASTCAE::HDF5HLCPP PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${HDF5_INCLUDE_DIRS}) -set_property(TARGET FASTCAE::HDF5HLCPP APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) -set_property(TARGET FASTCAE::HDF5HLCPP PROPERTY INTERFACE_LINK_LIBRARIES FASTCAE::HDF5HL) +set_property(TARGET LAMPCAE::HDF5HLCPP PROPERTY INTERFACE_COMPILE_DEFINITIONS "H5_BUILT_AS_DYNAMIC_LIB") +set_property(TARGET LAMPCAE::HDF5HLCPP PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${HDF5_INCLUDE_DIRS}) +set_property(TARGET LAMPCAE::HDF5HLCPP APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) +set_property(TARGET LAMPCAE::HDF5HLCPP PROPERTY INTERFACE_LINK_LIBRARIES LAMPCAE::HDF5HL) -set_property(TARGET FASTCAE::HDF5TOOLS PROPERTY INTERFACE_COMPILE_DEFINITIONS "H5_BUILT_AS_DYNAMIC_LIB") -set_property(TARGET FASTCAE::HDF5TOOLS PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${HDF5_INCLUDE_DIRS}) -set_property(TARGET FASTCAE::HDF5TOOLS APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) -set_property(TARGET FASTCAE::HDF5TOOLS PROPERTY INTERFACE_LINK_LIBRARIES FASTCAE::HDF5) +set_property(TARGET LAMPCAE::HDF5TOOLS PROPERTY INTERFACE_COMPILE_DEFINITIONS "H5_BUILT_AS_DYNAMIC_LIB") +set_property(TARGET LAMPCAE::HDF5TOOLS PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${HDF5_INCLUDE_DIRS}) +set_property(TARGET LAMPCAE::HDF5TOOLS APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) +set_property(TARGET LAMPCAE::HDF5TOOLS PROPERTY INTERFACE_LINK_LIBRARIES LAMPCAE::HDF5) if(CMAKE_SYSTEM_NAME STREQUAL "Linux") - set_target_properties(FASTCAE::HDF5 PROPERTIES + set_target_properties(LAMPCAE::HDF5 PROPERTIES IMPORTED_LOCATION_RELEASE "${HDF5_LIBRARY_DIRS}/libhdf5.so.300.1.0" IMPORTED_SONAME_RELEASE "libhdf5.so.300" ) - set_target_properties(FASTCAE::HDF5CPP PROPERTIES + set_target_properties(LAMPCAE::HDF5CPP PROPERTIES IMPORTED_LOCATION_RELEASE "${HDF5_LIBRARY_DIRS}/libhdf5_cpp.so.300.0.1" IMPORTED_SONAME_RELEASE "libhdf5_cpp.so.300" ) - set_target_properties(FASTCAE::HDF5HL PROPERTIES + set_target_properties(LAMPCAE::HDF5HL PROPERTIES IMPORTED_LOCATION_RELEASE "${HDF5_LIBRARY_DIRS}/libhdf5_hl.so.300.0.1" IMPORTED_SONAME_RELEASE "libhdf5_hl.so.300" ) - set_target_properties(FASTCAE::HDF5HLCPP PROPERTIES + set_target_properties(LAMPCAE::HDF5HLCPP PROPERTIES IMPORTED_LOCATION_RELEASE "${HDF5_LIBRARY_DIRS}/libhdf5_hl_cpp.so.300.0.1" IMPORTED_SONAME_RELEASE "libhdf5_hl_cpp.so.300" ) - set_target_properties(FASTCAE::HDF5TOOLS PROPERTIES + set_target_properties(LAMPCAE::HDF5TOOLS PROPERTIES IMPORTED_LOCATION_RELEASE "${HDF5_LIBRARY_DIRS}/libhdf5_tools.so.300.0.1" IMPORTED_SONAME_RELEASE "libhdf5_tools.so.300" ) elseif(CMAKE_SYSTEM_NAME STREQUAL "Windows") - set_target_properties(FASTCAE::HDF5 PROPERTIES + set_target_properties(LAMPCAE::HDF5 PROPERTIES IMPORTED_IMPLIB_RELEASE "${HDF5_LIBRARY_DIRS}/hdf5.lib" IMPORTED_LOCATION_RELEASE "${HDF5_DIRS}/bin/hdf5.dll" ) - set_target_properties(FASTCAE::HDF5CPP PROPERTIES + set_target_properties(LAMPCAE::HDF5CPP PROPERTIES IMPORTED_IMPLIB_RELEASE "${HDF5_LIBRARY_DIRS}/hdf5_cpp.lib" IMPORTED_LOCATION_RELEASE "${HDF5_DIRS}/bin/hdf5_cpp.dll" ) - set_target_properties(FASTCAE::HDF5HL PROPERTIES + set_target_properties(LAMPCAE::HDF5HL PROPERTIES IMPORTED_IMPLIB_RELEASE "${HDF5_LIBRARY_DIRS}/hdf5_hl.lib" IMPORTED_LOCATION_RELEASE "${HDF5_DIRS}/bin/hdf5_hl.dll" ) - set_target_properties(FASTCAE::HDF5HLCPP PROPERTIES + set_target_properties(LAMPCAE::HDF5HLCPP PROPERTIES IMPORTED_IMPLIB_RELEASE "${HDF5_LIBRARY_DIRS}/hdf5_hl_cpp.lib" IMPORTED_LOCATION_RELEASE "${HDF5_DIRS}/bin/hdf5_hl_cpp.dll" ) - set_target_properties(FASTCAE::HDF5TOOLS PROPERTIES + set_target_properties(LAMPCAE::HDF5TOOLS PROPERTIES IMPORTED_IMPLIB_RELEASE "${HDF5_LIBRARY_DIRS}/hdf5_tools.lib" IMPORTED_LOCATION_RELEASE "${HDF5_DIRS}/bin/hdf5_tools.dll" ) diff --git a/cmake/FindOpenCASCADE.cmake b/cmake/FindOpenCASCADE.cmake index df6ec20..177ccaf 100644 --- a/cmake/FindOpenCASCADE.cmake +++ b/cmake/FindOpenCASCADE.cmake @@ -1,7 +1,7 @@ # FindOpenCASCADE # -------- # -# Find the OpenCASCADE libraries(Only for OpenCASCADE provided by FastCAE) +# Find the OpenCASCADE libraries(Only for OpenCASCADE provided by LAMPCAE) # # Result Variables # ^^^^^^^^^^^^^^^^ @@ -30,12 +30,12 @@ # # 防止重复引入 -if(FASTCAE_OpenCASCADE_ALREADY_INCLUDED) +if(LAMPCAE_OpenCASCADE_ALREADY_INCLUDED) return() endif() -set(FASTCAE_OpenCASCADE_ALREADY_INCLUDED 1) +set(LAMPCAE_OpenCASCADE_ALREADY_INCLUDED 1) -set(OpenCASCADE_DIRS "${CMAKE_SOURCE_DIR}/extlib/OpenCASCADE") +set(OpenCASCADE_DIRS "C:/OCCT") set(OpenCASCADE_VERSION_MAJOR 7) set(OpenCASCADE_VERSION_MINOR 6) @@ -45,6 +45,9 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Windows") set(OpenCASCADE_INCLUDE_DIRS "${OpenCASCADE_DIRS}/inc") set(OpenCASCADE_LIBRARY_DIRS "${OpenCASCADE_DIRS}/win64/vc14/lib") set(OpenCASCADE_BINARY_DIRS "${OpenCASCADE_DIRS}/win64/vc14/bin") +# set(OpenCASCADE_INCLUDE_DIRS "${OpenCASCADE_DIRS}/include/opencascade") +# set(OpenCASCADE_LIBRARY_DIRS "${OpenCASCADE_DIRS}/lib") +# set(OpenCASCADE_BINARY_DIRS "${OpenCASCADE_DIRS}/bin") elseif(CMAKE_SYSTEM_NAME STREQUAL "Linux") set(OpenCASCADE_INCLUDE_DIRS "${OpenCASCADE_DIRS}/include/opencascade") set(OpenCASCADE_LIBRARY_DIRS "${OpenCASCADE_DIRS}/lib") @@ -98,10 +101,10 @@ elseif(CMAKE_SYSTEM_NAME STREQUAL "Windows") set_property(TARGET OpenCASCADE::Tcl86 APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) set_property(TARGET OpenCASCADE::Tk86 APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) set_target_properties(OpenCASCADE::Freetype PROPERTIES - IMPORTED_IMPLIB_RELEASE "${OpenCASCADE_LIBRARY_DIRS}/freetype.lib" - IMPORTED_LOCATION_RELEASE "${OpenCASCADE_BINARY_DIRS}/freetype.dll" - IMPORTED_IMPLIB_DEBUG "${OpenCASCADE_LIBRARY_DIRS}d/freetype.lib" - IMPORTED_LOCATION_DEBUG "${OpenCASCADE_BINARY_DIRS}d/freetype.dll" + IMPORTED_IMPLIB_RELEASE "D:/vcpkg/installed/x64-windows/lib/freetype.lib" + IMPORTED_LOCATION_RELEASE "D:/vcpkg/installed/x64-windows/bin/freetype.dll" + IMPORTED_IMPLIB_DEBUG "D:/vcpkg/installed/x64-windows/debug/lib/freetype.lib" + IMPORTED_LOCATION_DEBUG "D:/vcpkg/installed/x64-windows/debug/bin/freetype.dll" ) set_target_properties(OpenCASCADE::Tcl86 PROPERTIES IMPORTED_IMPLIB_RELEASE "${OpenCASCADE_LIBRARY_DIRS}/tcl86.lib" diff --git a/cmake/FindPython.cmake b/cmake/FindPython.cmake index ad4fbdc..7f5f5a9 100644 --- a/cmake/FindPython.cmake +++ b/cmake/FindPython.cmake @@ -1,7 +1,7 @@ # FindPython # -------- # -# Find the Python libraries(Only for Python provided by FastCAE) +# Find the Python libraries(Only for Python provided by LAMPCAE) # # Result Variables # ^^^^^^^^^^^^^^^^ @@ -30,10 +30,10 @@ # # 防止重复引入 -if(FASTCAE_Python_ALREADY_INCLUDED) +if(LAMPCAE_Python_ALREADY_INCLUDED) return() endif() -set(FASTCAE_Python_ALREADY_INCLUDED 1) +set(LAMPCAE_Python_ALREADY_INCLUDED 1) set(Python_VERSION_MAJOR 3) set(Python_VERSION_MINOR 7) @@ -108,28 +108,28 @@ find_path(Python_LIBRARY_DIRS ${Python_DIRS}/libs ${Python_DIRS}/lib ) -set(Python_LIBRARIES FASTCAE::PYTHON) +set(Python_LIBRARIES LAMPCAE::PYTHON) -add_library(FASTCAE::PYTHON SHARED IMPORTED) +add_library(LAMPCAE::PYTHON SHARED IMPORTED) -set_property(TARGET FASTCAE::PYTHON PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${Python_INCLUDE_DIRS}) -set_property(TARGET FASTCAE::PYTHON APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) +set_property(TARGET LAMPCAE::PYTHON PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${Python_INCLUDE_DIRS}) +set_property(TARGET LAMPCAE::PYTHON APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) if(CMAKE_SYSTEM_NAME STREQUAL "Linux") - add_library(FASTCAE::FFI SHARED IMPORTED) - set_property(TARGET FASTCAE::FFI APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) - set_target_properties(FASTCAE::FFI PROPERTIES + add_library(LAMPCAE::FFI SHARED IMPORTED) + set_property(TARGET LAMPCAE::FFI APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) + set_target_properties(LAMPCAE::FFI PROPERTIES IMPORTED_LOCATION_RELEASE "${Python_LIBRARY_DIRS}/libffi.so.8.1.0" IMPORTED_SONAME_RELEASE "libffi.so.8" ) - set_target_properties(FASTCAE::PYTHON PROPERTIES + set_target_properties(LAMPCAE::PYTHON PROPERTIES IMPORTED_LOCATION_RELEASE "${Python_LIBRARY_DIRS}/libpython${Python_VERSION_MAJOR}.${Python_VERSION_MINOR}m.so.1.0" IMPORTED_SONAME_RELEASE "libpython${Python_VERSION_MAJOR}.${Python_VERSION_MINOR}m.so" ) elseif(CMAKE_SYSTEM_NAME STREQUAL "Windows") - set_target_properties(FASTCAE::PYTHON PROPERTIES + set_target_properties(LAMPCAE::PYTHON PROPERTIES IMPORTED_IMPLIB_RELEASE "${Python_LIBRARY_DIRS}/python${Python_VERSION_MAJOR}${Python_VERSION_MINOR}.lib" IMPORTED_LOCATION_RELEASE "${Python_DIRS}/python${Python_VERSION_MAJOR}${Python_VERSION_MINOR}.dll" ) diff --git a/cmake/FindQuaZIP.cmake b/cmake/FindQuaZIP.cmake index 8fd4d99..4f86965 100644 --- a/cmake/FindQuaZIP.cmake +++ b/cmake/FindQuaZIP.cmake @@ -1,7 +1,7 @@ # FindQuaZIP # -------- # -# Find the QuaZIP libraries(Only for QuaZIP provided by FastCAE) +# Find the QuaZIP libraries(Only for QuaZIP provided by LAMPCAE) # # Result Variables # ^^^^^^^^^^^^^^^^ @@ -30,10 +30,10 @@ # # 防止重复引入 -if(FASTCAE_QuaZIP_ALREADY_INCLUDED) +if(LAMPCAE_QuaZIP_ALREADY_INCLUDED) return() endif() -set(FASTCAE_QuaZIP_ALREADY_INCLUDED 1) +set(LAMPCAE_QuaZIP_ALREADY_INCLUDED 1) # find_path 搜索包含某个文件的路径 # 如果在某个路径下发现了该文件,该结果会被存储到该变量中;如果没有找到,存储的结果将会是-NOTFOUND @@ -73,19 +73,19 @@ find_path(QuaZIP_BINARY_DIRS ${QuaZIP_DIRS}/lib ) -set(QuaZIP_LIBRARIES FASTCAE::QUAZIP) +set(QuaZIP_LIBRARIES LAMPCAE::QUAZIP) -add_library(FASTCAE::QUAZIP SHARED IMPORTED) -set_property(TARGET FASTCAE::QUAZIP PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${QuaZIP_INCLUDE_DIRS}) -set_property(TARGET FASTCAE::QUAZIP APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) +add_library(LAMPCAE::QUAZIP SHARED IMPORTED) +set_property(TARGET LAMPCAE::QUAZIP PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${QuaZIP_INCLUDE_DIRS}) +set_property(TARGET LAMPCAE::QUAZIP APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) if(CMAKE_SYSTEM_NAME STREQUAL "Linux") - set_target_properties(FASTCAE::QUAZIP PROPERTIES + set_target_properties(LAMPCAE::QUAZIP PROPERTIES IMPORTED_LOCATION_RELEASE "${QuaZIP_LIBRARY_DIRS}/libquazip5.so.1.0.0" IMPORTED_SONAME_RELEASE "libquazip5.so.1" ) elseif(CMAKE_SYSTEM_NAME STREQUAL "Windows") - set_property(TARGET FASTCAE::QUAZIP APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) - set_target_properties(FASTCAE::QUAZIP PROPERTIES + set_property(TARGET LAMPCAE::QUAZIP APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) + set_target_properties(LAMPCAE::QUAZIP PROPERTIES IMPORTED_IMPLIB_RELEASE "${QuaZIP_LIBRARY_DIRS}/quazip5.lib" IMPORTED_LOCATION_RELEASE "${QuaZIP_BINARY_DIRS}/quazip5.dll" IMPORTED_IMPLIB_DEBUG "${QuaZIP_LIBRARY_DIRS}/quazip5d.lib" diff --git a/cmake/FindQwt.cmake b/cmake/FindQwt.cmake index 5a8dc3b..9e91bcd 100644 --- a/cmake/FindQwt.cmake +++ b/cmake/FindQwt.cmake @@ -1,7 +1,7 @@ # FindQwt # -------- # -# Find the Qwt libraries(Only for Qwt provided by FastCAE) +# Find the Qwt libraries(Only for Qwt provided by LAMPCAE) # # Result Variables # ^^^^^^^^^^^^^^^^ @@ -38,90 +38,96 @@ # # 防止重复引入 -if(FASTCAE_Qwt_ALREADY_INCLUDED) +if(LAMPCAE_Qwt_ALREADY_INCLUDED) return() endif() -set(FASTCAE_Qwt_ALREADY_INCLUDED 1) +set(LAMPCAE_Qwt_ALREADY_INCLUDED 1) # find_path 搜索包含某个文件的路径 # 如果在某个路径下发现了该文件,该结果会被存储到该变量中;如果没有找到,存储的结果将会是-NOTFOUND +set(Qwt_DIRS C:/Qwt) # 设置qwt 路径 find_path(Qwt_DIRS - NAMES - include/qwt.h - PATHS - ${CMAKE_SOURCE_DIR}/extlib/Qwt + NAMES + qwt.h + PATHS + C:/Qwt NO_SYSTEM_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH ) set(Qwt_VERSION_MAJOR 6) -set(Qwt_VERSION_MINOR 1) -set(Qwt_VERSION_PATCH 6) -set(QwtPolar_VERSION_MAJOR 1) -set(QwtPolar_VERSION_MINOR 1) -set(QwtPolar_VERSION_PATCH 1) +set(Qwt_VERSION_MINOR 2) +set(Qwt_VERSION_PATCH 0) +#set(QwtPolar_VERSION_MAJOR 1) +#set(QwtPolar_VERSION_MINOR 1) +#set(QwtPolar_VERSION_PATCH 1) set(Qwt_VERSION "${Qwt_VERSION_MAJOR}.${Qwt_VERSION_MINOR}.${Qwt_VERSION_PATCH}") -set(QwtPolar_VERSION "${QwtPolar_VERSION_MAJOR}.${QwtPolar_VERSION_MINOR}.${QwtPolar_VERSION_PATCH}") +#set(QwtPolar_VERSION "${QwtPolar_VERSION_MAJOR}.${QwtPolar_VERSION_MINOR}.${QwtPolar_VERSION_PATCH}") find_path(Qwt_INCLUDE_DIRS NAMES qwt.h HINTS - ${Qwt_DIRS}/include + C:/Qwt/include ) find_path(Qwt_LIBRARY_DIRS NAMES qwt.lib libqwt.so HINTS - ${Qwt_DIRS}/lib + C:/Qwt/lib ) find_path(Qwt_BINARY_DIRS NAMES qwt.dll libqwt.so HINTS - ${Qwt_DIRS}/lib + C:/Qwt/lib ) -set(Qwt_LIBRARIES FASTCAE::QWT;FASTCAE::QWTPOLAR) +set(Qwt_LIBRARIES LAMPCAE::QWT;LAMPCAE::QWTPOLAR) -add_library(FASTCAE::QWT SHARED IMPORTED) -add_library(FASTCAE::QWTPOLAR SHARED IMPORTED) -set_property(TARGET FASTCAE::QWT PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${Qwt_INCLUDE_DIRS}) -set_property(TARGET FASTCAE::QWT APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) -set_property(TARGET FASTCAE::QWT PROPERTY INTERFACE_LINK_LIBRARIES Qt5::Svg Qt5::OpenGL) -set_property(TARGET FASTCAE::QWT PROPERTY INTERFACE_COMPILE_DEFINITIONS "QWT_DLL") +add_library(LAMPCAE::QWT SHARED IMPORTED) +add_library(LAMPCAE::QWTPOLAR SHARED IMPORTED) +set_property(TARGET LAMPCAE::QWT PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${Qwt_INCLUDE_DIRS}) +set_property(TARGET LAMPCAE::QWT APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) +set_property(TARGET LAMPCAE::QWT PROPERTY INTERFACE_LINK_LIBRARIES Qt5::Svg Qt5::OpenGL) +set_property(TARGET LAMPCAE::QWT PROPERTY INTERFACE_COMPILE_DEFINITIONS "QWT_DLL") -set_property(TARGET FASTCAE::QWTPOLAR PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${Qwt_INCLUDE_DIRS}) -set_property(TARGET FASTCAE::QWTPOLAR APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) -set_property(TARGET FASTCAE::QWTPOLAR PROPERTY INTERFACE_LINK_LIBRARIES FASTCAE::QWT Qt5::PrintSupport) +set_property(TARGET LAMPCAE::QWTPOLAR PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${Qwt_INCLUDE_DIRS}) +set_property(TARGET LAMPCAE::QWTPOLAR APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) +set_property(TARGET LAMPCAE::QWTPOLAR PROPERTY INTERFACE_LINK_LIBRARIES LAMPCAE::QWT Qt5::PrintSupport) if(CMAKE_SYSTEM_NAME STREQUAL "Linux") - set_target_properties(FASTCAE::QWT PROPERTIES + set_target_properties(LAMPCAE::QWT PROPERTIES IMPORTED_LOCATION_RELEASE "${Qwt_LIBRARY_DIRS}/libqwt.so.${Qwt_VERSION_MAJOR}.${Qwt_VERSION_MINOR}.${Qwt_VERSION_PATCH}" IMPORTED_SONAME_RELEASE "libqwt.so.${Qwt_VERSION_MAJOR}" ) - set_target_properties(FASTCAE::QWTPOLAR PROPERTIES - IMPORTED_LOCATION_RELEASE "${Qwt_LIBRARY_DIRS}/libqwtpolar.so.${QwtPolar_VERSION_MAJOR}.${QwtPolar_VERSION_MINOR}.${QwtPolar_VERSION_PATCH}" - IMPORTED_SONAME_RELEASE "libqwtpolar.so.${QwtPolar_VERSION_MAJOR}" - ) +# set_target_properties(LAMPCAE::QWTPOLAR PROPERTIES +# IMPORTED_LOCATION_RELEASE "${Qwt_LIBRARY_DIRS}/libqwtpolar.so.${QwtPolar_VERSION_MAJOR}.${QwtPolar_VERSION_MINOR}.${QwtPolar_VERSION_PATCH}" +# IMPORTED_SONAME_RELEASE "libqwtpolar.so.${QwtPolar_VERSION_MAJOR}" +# ) elseif(CMAKE_SYSTEM_NAME STREQUAL "Windows") - set_property(TARGET FASTCAE::QWT APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) - set_property(TARGET FASTCAE::QWTPOLAR APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) - set_target_properties(FASTCAE::QWT PROPERTIES + set_property(TARGET LAMPCAE::QWT APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) + set_property(TARGET LAMPCAE::QWTPOLAR APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) + set_target_properties(LAMPCAE::QWT PROPERTIES IMPORTED_IMPLIB_RELEASE "${Qwt_LIBRARY_DIRS}/qwt.lib" IMPORTED_LOCATION_RELEASE "${Qwt_BINARY_DIRS}/qwt.dll" IMPORTED_IMPLIB_DEBUG "${Qwt_LIBRARY_DIRS}/qwtd.lib" IMPORTED_LOCATION_DEBUG "${Qwt_BINARY_DIRS}/qwtd.dll" ) - set_target_properties(FASTCAE::QWTPOLAR PROPERTIES - IMPORTED_IMPLIB_RELEASE "${Qwt_LIBRARY_DIRS}/qwtpolar.lib" - IMPORTED_LOCATION_RELEASE "${Qwt_BINARY_DIRS}/qwtpolar.dll" - IMPORTED_IMPLIB_DEBUG "${Qwt_LIBRARY_DIRS}/qwtpolard.lib" - IMPORTED_LOCATION_DEBUG "${Qwt_BINARY_DIRS}/qwtpolard.dll" + set_target_properties(LAMPCAE::QWTPOLAR PROPERTIES + IMPORTED_IMPLIB_RELEASE "${Qwt_LIBRARY_DIRS}/qwt.lib" + IMPORTED_LOCATION_RELEASE "${Qwt_BINARY_DIRS}/qwt.dll" + IMPORTED_IMPLIB_DEBUG "${Qwt_LIBRARY_DIRS}/qwtd.lib" + IMPORTED_LOCATION_DEBUG "${Qwt_BINARY_DIRS}/qwtd.dll" + # qwtploar 集成进 qwt6.2.0 中 +# IMPORTED_IMPLIB_RELEASE "${Qwt_LIBRARY_DIRS}/qwtpolar.lib" +# IMPORTED_LOCATION_RELEASE "${Qwt_BINARY_DIRS}/qwtpolar.dll" +# IMPORTED_IMPLIB_DEBUG "${Qwt_LIBRARY_DIRS}/qwtpolard.lib" +# IMPORTED_LOCATION_DEBUG "${Qwt_BINARY_DIRS}/qwtpolard.dll" ) endif() diff --git a/cmake/FindTecIO.cmake b/cmake/FindTecIO.cmake index 739a38d..acf3eed 100644 --- a/cmake/FindTecIO.cmake +++ b/cmake/FindTecIO.cmake @@ -1,7 +1,7 @@ # FindTecIO # -------- # -# Find the TecIO libraries(Only for TecIO provided by FastCAE) +# Find the TecIO libraries(Only for TecIO provided by LAMPCAE) # # Result Variables # ^^^^^^^^^^^^^^^^ @@ -28,10 +28,10 @@ # # 防止重复引入 -if(FASTCAE_TecIO_ALREADY_INCLUDED) +if(LAMPCAE_TecIO_ALREADY_INCLUDED) return() endif() -set(FASTCAE_TecIO_ALREADY_INCLUDED 1) +set(LAMPCAE_TecIO_ALREADY_INCLUDED 1) # find_path 搜索包含某个文件的路径 # 如果在某个路径下发现了该文件,该结果会被存储到该变量中;如果没有找到,存储的结果将会是-NOTFOUND @@ -64,19 +64,19 @@ find_path(TecIO_LIBRARY_DIRS ${TecIO_DIRS}/lib ) -set(TecIO_LIBRARIES FASTCAE::TECIO) +set(TecIO_LIBRARIES LAMPCAE::TECIO) -add_library(FASTCAE::TECIO SHARED IMPORTED) -set_property(TARGET FASTCAE::TECIO PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${TecIO_INCLUDE_DIRS}) -set_property(TARGET FASTCAE::TECIO APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) +add_library(LAMPCAE::TECIO SHARED IMPORTED) +set_property(TARGET LAMPCAE::TECIO PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${TecIO_INCLUDE_DIRS}) +set_property(TARGET LAMPCAE::TECIO APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) if(CMAKE_SYSTEM_NAME STREQUAL "Linux") - set_target_properties(FASTCAE::TECIO PROPERTIES + set_target_properties(LAMPCAE::TECIO PROPERTIES IMPORTED_LOCATION_RELEASE "${TecIO_LIBRARY_DIRS}/libtecio.so" #IMPORTED_SONAME_RELEASE "${TecIO_LIBRARY_DIRS}/libtecio.so" ) elseif(CMAKE_SYSTEM_NAME STREQUAL "Windows") - set_target_properties(FASTCAE::TECIO PROPERTIES + set_target_properties(LAMPCAE::TECIO PROPERTIES IMPORTED_IMPLIB_RELEASE "${TecIO_LIBRARY_DIRS}/tecio.lib" IMPORTED_LOCATION_RELEASE "${TecIO_DIRS}/bin/tecio.dll" ) diff --git a/cmake/FindVTK.cmake b/cmake/FindVTK.cmake index 7dc0dd5..3644a27 100644 --- a/cmake/FindVTK.cmake +++ b/cmake/FindVTK.cmake @@ -1,7 +1,7 @@ # FindVTK # -------- # -# Find the VTK libraries(Only for VTK provided by FastCAE) +# Find the VTK libraries(Only for VTK provided by LAMPCAE) # # Result Variables # ^^^^^^^^^^^^^^^^ @@ -30,12 +30,13 @@ # # 防止重复引入 -if(FASTCAE_VTK_ALREADY_INCLUDED) +if(LAMPCAE_VTK_ALREADY_INCLUDED) return() endif() -set(FASTCAE_VTK_ALREADY_INCLUDED 1) +set(LAMPCAE_VTK_ALREADY_INCLUDED 1) -set(VTK_DIRS "C:/PCL/3rdParty/VTK") +#set(VTK_DIRS "${CMAKE_SOURCE_DIR}/extlib/VTK") +set(VTK_DIRS "C:/VTK") set(VTK_VERSION_MAJOR 9) set(VTK_VERSION_MINOR 3) @@ -196,6 +197,7 @@ _populate_target_properties(VTK::ViewsCore VTK::CommonCore VTK::CommonExecutionM _populate_target_properties(VTK::ViewsInfovis VTK::CommonCore VTK::CommonDataModel VTK::CommonExecutionModel VTK::InteractionStyle VTK::RenderingContext2D VTK::ViewsCore VTK::ChartsCore VTK::CommonColor VTK::CommonTransforms VTK::FiltersCore VTK::FiltersExtraction VTK::FiltersGeneral VTK::FiltersGeometry VTK::FiltersImaging VTK::FiltersModeling VTK::FiltersSources VTK::FiltersStatistics VTK::ImagingGeneral VTK::InfovisCore VTK::InfovisLayout VTK::InteractionWidgets VTK::RenderingAnnotation VTK::RenderingCore VTK::RenderingLabel) _populate_target_properties(VTK::ViewsQt VTK::CommonCore VTK::GUISupportQt VTK::ViewsCore VTK::ViewsInfovis VTK::CommonDataModel VTK::CommonExecutionModel VTK::FiltersExtraction VTK::FiltersGeneral VTK::InfovisCore) _populate_target_properties(VTK::WrappingTools) +_populate_target_properties(VTK::IOChemistry VTK::CommonCore VTK::CommonDataModel VTK::CommonExecutionModel VTK::IOCore) # 增加IOChemistry include(FindPackageHandleStandardArgs) diff --git a/cmake/InitRuntime.cmake b/cmake/InitRuntime.cmake index 980b8c8..cafcb60 100644 --- a/cmake/InitRuntime.cmake +++ b/cmake/InitRuntime.cmake @@ -1,11 +1,11 @@ -if(FASTCAE_ENABLE_DEV) +if(LAMPCAE_ENABLE_DEV) - if(FASTCAE_WIN) - if(NOT EXISTS "$/FastCAE.ini") + if(LAMPCAE_WIN) + if(NOT EXISTS "$/LAMPCAE.ini") get_target_property(_qmake_executable Qt5::qmake IMPORTED_LOCATION) get_filename_component(_qt_bin_dir "${_qmake_executable}" DIRECTORY) - foreach(_lib ${FastCAE_Runtimes_Libraries}) + foreach(_lib ${LAMPCAE_Runtimes_Libraries}) add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy $ @@ -47,11 +47,11 @@ ) endif() else() - if(NOT EXISTS "$/FastCAE.ini") + if(NOT EXISTS "$/LAMPCAE.ini") get_target_property(_qmake_executable Qt5::qmake IMPORTED_LOCATION) get_filename_component(_qt_bin_dir "${_qmake_executable}" DIRECTORY) - foreach(_lib ${FastCAE_Runtimes_Libraries}) + foreach(_lib ${LAMPCAE_Runtimes_Libraries}) add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy $ @@ -109,10 +109,10 @@ endif() endif() - # FastCAE的配置文件,python脚本,有可能会修改,每次构建都会拷贝 + # LAMPCAE的配置文件,python脚本,有可能会修改,每次构建都会拷贝 add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_if_different - ${CMAKE_SOURCE_DIR}/src/PythonModule/py/FastCAE.ini + ${CMAKE_SOURCE_DIR}/src/PythonModule/py/LAMPCAE.ini ${CMAKE_SOURCE_DIR}/src/PythonModule/py/CAD.py ${CMAKE_SOURCE_DIR}/src/PythonModule/py/Case.py ${CMAKE_SOURCE_DIR}/src/PythonModule/py/ControlPanel.py diff --git a/docs/Doxyfile b/docs/Doxyfile index f663ff5..8b75463 100644 --- a/docs/Doxyfile +++ b/docs/Doxyfile @@ -42,7 +42,7 @@ DOXYFILE_ENCODING = UTF-8 # title of most generated pages and in a few other places. # The default value is: My Project. -PROJECT_NAME = fastcae +PROJECT_NAME = LAMPCAE # The PROJECT_NUMBER tag can be used to enter a project or revision number. This # could be handy for archiving the generated documentation or if some version @@ -74,7 +74,7 @@ PROJECT_ICON = # entered, it will be relative to the location where doxygen was started. If # left blank the current directory will be used. -OUTPUT_DIRECTORY = D:/WBFZCPP/project/FastCAEdoc +OUTPUT_DIRECTORY = D:/WBFZCPP/project/LAMPCAEdoc # If the CREATE_SUBDIRS tag is set to YES then doxygen will create up to 4096 # sub-directories (in 2 levels) under the output directory of each output format @@ -949,7 +949,7 @@ WARN_LOGFILE = # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING # Note: If this tag is empty the current directory is searched. -INPUT = D:/WBFZCPP/source/FastCAE/src +INPUT = D:/WBFZCPP/source/LAMPCAE/src # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses diff --git a/docs/Doxyfile.in b/docs/Doxyfile.in index cf43e5e..1a5d700 100644 --- a/docs/Doxyfile.in +++ b/docs/Doxyfile.in @@ -51,7 +51,7 @@ PROJECT_BRIEF = @PROJECT_DESCRIPTION@ # pixels and the maximum width should not exceed 200 pixels. Doxygen will copy # the logo to the output directory. -PROJECT_LOGO = http://www.fastcae.com/static/images/logo.png +PROJECT_LOGO = http://www.LAMPCAE.com/static/images/logo.png # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path # into which the generated documentation will be written. If a relative path is diff --git a/docs/code-reference/mainwindow.rst b/docs/code-reference/mainwindow.rst index 6320113..d4bdd3d 100644 --- a/docs/code-reference/mainwindow.rst +++ b/docs/code-reference/mainwindow.rst @@ -4,7 +4,7 @@ MainWindow ---------- .. doxygenclass:: GUI::MainWindow - :project: FastCAE + :project: LAMPCAE :members: :protected-members: :private-members: \ No newline at end of file diff --git a/docs/conf.py.in b/docs/conf.py.in index b667165..f8c0db5 100644 --- a/docs/conf.py.in +++ b/docs/conf.py.in @@ -46,8 +46,8 @@ master_doc = 'index' # General information about the project. project = '@PROJECT_NAME@' -copyright = 'Since 2018, fastcae.com' -author = 'FastCAE团队' +copyright = 'Since 2018, LAMPCAE.com' +author = 'LAMPCAE团队' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/docs/index.rst b/docs/index.rst index f90d461..bf009b5 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -3,7 +3,7 @@ You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. -Welcome to FastCAE's documentation! +Welcome to LAMPCAE's documentation! ===================================== .. toctree:: diff --git a/out/build/.cmake/api/v1/query/client-MicrosoftVS/query.json b/out/build/.cmake/api/v1/query/client-MicrosoftVS/query.json new file mode 100644 index 0000000..7d776af --- /dev/null +++ b/out/build/.cmake/api/v1/query/client-MicrosoftVS/query.json @@ -0,0 +1 @@ +{"requests":[{"kind":"cache","version":2},{"kind":"cmakeFiles","version":1},{"kind":"codemodel","version":2},{"kind":"toolchains","version":1}]} \ No newline at end of file diff --git a/out/build/.cmake/api/v1/reply/cache-v2-261c2d679b8e4328aa57.json b/out/build/.cmake/api/v1/reply/cache-v2-261c2d679b8e4328aa57.json new file mode 100644 index 0000000..fa1aba9 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/cache-v2-261c2d679b8e4328aa57.json @@ -0,0 +1,2091 @@ +{ + "entries" : + [ + { + "name" : "CGNS_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "D:/vcpkg/installed/x64-windows" + }, + { + "name" : "CGNS_INCLUDE_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "D:/vcpkg/installed/x64-windows/include" + }, + { + "name" : "CGNS_LIBRARY_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "D:/vcpkg/installed/x64-windows/lib" + }, + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/MSVC/14.39.33519/bin/Hostx64/x64/lib.exe" + }, + { + "name" : "CMAKE_BUILD_TYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "Debug" + }, + { + "name" : "CMAKE_CACHEFILE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "This is the directory where this CMakeCache.txt was created" + } + ], + "type" : "INTERNAL", + "value" : "d:/WBFZCPP/source/FastCAE/out/build" + }, + { + "name" : "CMAKE_CACHE_MAJOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Major version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_CACHE_MINOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Minor version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "28" + }, + { + "name" : "CMAKE_CACHE_PATCH_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Patch version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "0" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/bin/cmake.exe" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/bin/cpack.exe" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/bin/ctest.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "CXX compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/MSVC/14.39.33519/bin/Hostx64/x64/cl.exe" + }, + { + "name" : "CMAKE_CXX_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "-DQT_QML_DEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "/Zi /Ob0 /Od /RTC1" + }, + { + "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "/O1 /Ob1 /DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "/O2 /Ob2 /DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "/Zi /O2 /Ob1 /DNDEBUG" + }, + { + "name" : "CMAKE_CXX_STANDARD_LIBRARIES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Libraries linked by default with all C++ applications." + } + ], + "type" : "STRING", + "value" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib" + }, + { + "name" : "CMAKE_EXECUTABLE_FORMAT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executable file format" + } + ], + "type" : "INTERNAL", + "value" : "Unknown" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during all build types." + } + ], + "type" : "STRING", + "value" : "/machine:x64" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "/debug /INCREMENTAL" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "/INCREMENTAL:NO" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "/INCREMENTAL:NO" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "/debug /INCREMENTAL" + }, + { + "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable/Disable output of compile commands during generation." + } + ], + "type" : "BOOL", + "value" : "" + }, + { + "name" : "CMAKE_EXTRA_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of external makefile project generator." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake." + } + ], + "type" : "STATIC", + "value" : "D:/WBFZCPP/source/FastCAE/out/build/CMakeFiles/pkgRedirects" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator." + } + ], + "type" : "INTERNAL", + "value" : "Ninja" + }, + { + "name" : "CMAKE_GENERATOR_INSTANCE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Generator instance identifier." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator platform." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_TOOLSET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator toolset." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_HOME_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Source directory with the top level CMakeLists.txt file for this project" + } + ], + "type" : "INTERNAL", + "value" : "D:/WBFZCPP/source/FastCAE" + }, + { + "name" : "CMAKE_INSTALL_BINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "User executables (bin)" + } + ], + "type" : "PATH", + "value" : "bin" + }, + { + "name" : "CMAKE_INSTALL_DATADIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data (DATAROOTDIR)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_DATAROOTDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data root (share)" + } + ], + "type" : "PATH", + "value" : "share" + }, + { + "name" : "CMAKE_INSTALL_DOCDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Documentation root (DATAROOTDIR/doc/PROJECT_NAME)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_INCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files (include)" + } + ], + "type" : "PATH", + "value" : "include" + }, + { + "name" : "CMAKE_INSTALL_INFODIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Info documentation (DATAROOTDIR/info)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LIBDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Object code libraries (lib)" + } + ], + "type" : "PATH", + "value" : "lib" + }, + { + "name" : "CMAKE_INSTALL_LIBEXECDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Program executables (libexec)" + } + ], + "type" : "PATH", + "value" : "libexec" + }, + { + "name" : "CMAKE_INSTALL_LOCALEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Locale-dependent data (DATAROOTDIR/locale)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LOCALSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable single-machine data (var)" + } + ], + "type" : "PATH", + "value" : "var" + }, + { + "name" : "CMAKE_INSTALL_MANDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Man documentation (DATAROOTDIR/man)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_OLDINCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files for non-gcc (/usr/include)" + } + ], + "type" : "PATH", + "value" : "/usr/include" + }, + { + "name" : "CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "LAMPCAE\u7684\u5b89\u88c5\u8def\u5f84" + } + ], + "type" : "PATH", + "value" : "c:/Program Files/LAMPCAE" + }, + { + "name" : "CMAKE_INSTALL_RUNSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Run-time variable data (LOCALSTATEDIR/run)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_SBINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "System admin executables (sbin)" + } + ], + "type" : "PATH", + "value" : "sbin" + }, + { + "name" : "CMAKE_INSTALL_SHAREDSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable architecture-independent data (com)" + } + ], + "type" : "PATH", + "value" : "com" + }, + { + "name" : "CMAKE_INSTALL_SYSCONFDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only single-machine data (etc)" + } + ], + "type" : "PATH", + "value" : "etc" + }, + { + "name" : "CMAKE_LINKER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/MSVC/14.39.33519/bin/Hostx64/x64/link.exe" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "make program" + } + ], + "type" : "FILEPATH", + "value" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/Ninja/ninja.exe" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during all build types." + } + ], + "type" : "STRING", + "value" : "/machine:x64" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "/debug /INCREMENTAL" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "/INCREMENTAL:NO" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "/INCREMENTAL:NO" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "/debug /INCREMENTAL" + }, + { + "name" : "CMAKE_MT", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/Program Files (x86)/Windows Kits/10/bin/10.0.22621.0/x64/mt.exe" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "37" + }, + { + "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Platform information initialized" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "C:/QT/5.15.2/MSVC2019_64" + }, + { + "name" : "CMAKE_PROJECT_DESCRIPTION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "LAMPCAE ,\u57fa\u4e8e FastCAE\uff0c\u4e00\u6b3e\u514d\u8d39\u7684CAE\u4eff\u771f\u8f6f\u4ef6\u7814\u53d1\u652f\u6491\u5e73\u53f0\u3002" + }, + { + "name" : "CMAKE_PROJECT_HOMEPAGE_URL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "http://www.LAMPCAE.com/" + }, + { + "name" : "CMAKE_PROJECT_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "LAMPCAE" + }, + { + "name" : "CMAKE_PROJECT_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "2.5.0" + }, + { + "name" : "CMAKE_PROJECT_VERSION_MAJOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "2" + }, + { + "name" : "CMAKE_PROJECT_VERSION_MINOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "5" + }, + { + "name" : "CMAKE_PROJECT_VERSION_PATCH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "0" + }, + { + "name" : "CMAKE_PROJECT_VERSION_TWEAK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "noop for ranlib" + } + ], + "type" : "INTERNAL", + "value" : ":" + }, + { + "name" : "CMAKE_RC_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "RC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/Program Files (x86)/Windows Kits/10/bin/10.0.22621.0/x64/rc.exe" + }, + { + "name" : "CMAKE_RC_COMPILER_WORKS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_RC_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during all build types." + } + ], + "type" : "STRING", + "value" : "-DWIN32" + }, + { + "name" : "CMAKE_RC_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-D_DEBUG" + }, + { + "name" : "CMAKE_RC_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during all build types." + } + ], + "type" : "STRING", + "value" : "/machine:x64" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "/debug /INCREMENTAL" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "/INCREMENTAL:NO" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "/INCREMENTAL:NO" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "/debug /INCREMENTAL" + }, + { + "name" : "CMAKE_SKIP_INSTALL_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_SKIP_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when using shared libraries." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during all build types." + } + ], + "type" : "STRING", + "value" : "/machine:x64" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_VERBOSE_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." + } + ], + "type" : "BOOL", + "value" : "FALSE" + }, + { + "name" : "CPACK_BINARY_7Z", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable to build 7-Zip packages" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "CPACK_BINARY_IFW", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable to build IFW packages" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "CPACK_BINARY_INNOSETUP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable to build Inno Setup packages" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "CPACK_BINARY_NSIS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable to build NSIS packages" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "CPACK_BINARY_NUGET", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable to build NuGet packages" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "CPACK_BINARY_WIX", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable to build WiX packages" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "CPACK_BINARY_ZIP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable to build ZIP packages" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "CPACK_SOURCE_7Z", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable to build 7-Zip source packages" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "CPACK_SOURCE_ZIP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable to build ZIP source packages" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "DOXYGEN_DOT_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Dot tool for use with Doxygen" + } + ], + "type" : "FILEPATH", + "value" : "DOXYGEN_DOT_EXECUTABLE-NOTFOUND" + }, + { + "name" : "DOXYGEN_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Doxygen documentation generation tool (https://www.doxygen.nl)" + } + ], + "type" : "FILEPATH", + "value" : "C:/doxygen/bin/doxygen.exe" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_CGNS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding CGNS" + } + ], + "type" : "INTERNAL", + "value" : "[D:/vcpkg/installed/x64-windows][D:/vcpkg/installed/x64-windows/include][D:/vcpkg/installed/x64-windows/lib][LAMPCAE::CGNS][v4.3.0()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_Doxygen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding Doxygen" + } + ], + "type" : "INTERNAL", + "value" : "[C:/doxygen/bin/doxygen.exe][cfound components: doxygen missing components: dot][v1.10.0()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_Gmsh", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding Gmsh" + } + ], + "type" : "INTERNAL", + "value" : "[D:/WBFZCPP/source/FastCAE/extlib/Gmsh][D:/WBFZCPP/source/FastCAE/extlib/Gmsh/gmsh.exe][v4.8.0()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_HDF5", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding HDF5" + } + ], + "type" : "INTERNAL", + "value" : "[D:/WBFZCPP/source/FastCAE/extlib/HDF5][D:/WBFZCPP/source/FastCAE/extlib/HDF5/include][D:/WBFZCPP/source/FastCAE/extlib/HDF5/lib][LAMPCAE::HDF5;LAMPCAE::HDF5CPP;LAMPCAE::HDF5HL;LAMPCAE::HDF5HLCPP;LAMPCAE::HDF5TOOLS][v1.13.1()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_OpenCASCADE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding OpenCASCADE" + } + ], + "type" : "INTERNAL", + "value" : "[C:/OCCT][C:/OCCT/inc][C:/OCCT/win64/vc14/lib][OpenCASCADE::Freetype;OpenCASCADE::Tcl86;OpenCASCADE::Tk86;OpenCASCADE::TKernel;OpenCASCADE::TKMath;OpenCASCADE::TKG2d;OpenCASCADE::TKG3d;OpenCASCADE::TKGeomBase;OpenCASCADE::TKBRep;OpenCASCADE::TKGeomAlgo;OpenCASCADE::TKTopAlgo;OpenCASCADE::TKPrim;OpenCASCADE::TKBO;OpenCASCADE::TKShHealing;OpenCASCADE::TKBool;OpenCASCADE::TKHLR;OpenCASCADE::TKFillet;OpenCASCADE::TKOffset;OpenCASCADE::TKFeat;OpenCASCADE::TKMesh;OpenCASCADE::TKXMesh;OpenCASCADE::TKService;OpenCASCADE::TKV3d;OpenCASCADE::TKOpenGl;OpenCASCADE::TKMeshVS;OpenCASCADE::TKIVtk;OpenCASCADE::TKCDF;OpenCASCADE::TKLCAF;OpenCASCADE::TKCAF;OpenCASCADE::TKBinL;OpenCASCADE::TKXmlL;OpenCASCADE::TKBin;OpenCASCADE::TKXml;OpenCASCADE::TKStdL;OpenCASCADE::TKStd;OpenCASCADE::TKTObj;OpenCASCADE::TKBinTObj;OpenCASCADE::TKXmlTObj;OpenCASCADE::TKVCAF;OpenCASCADE::TKXSBase;OpenCASCADE::TKSTEPBase;OpenCASCADE::TKSTEPAttr;OpenCASCADE::TKSTEP209;OpenCASCADE::TKSTEP;OpenCASCADE::TKIGES;OpenCASCADE::TKXCAF;OpenCASCADE::TKXDEIGES;OpenCASCADE::TKXDESTEP;OpenCASCADE::TKSTL;OpenCASCADE::TKVRML;OpenCASCADE::TKXmlXCAF;OpenCASCADE::TKBinXCAF;OpenCASCADE::TKRWMesh;OpenCASCADE::TKDraw;OpenCASCADE::TKTopTest;OpenCASCADE::TKOpenGlTest;OpenCASCADE::TKViewerTest;OpenCASCADE::TKXSDRAW;OpenCASCADE::TKDCAF;OpenCASCADE::TKXDEDRAW;OpenCASCADE::TKTObjDRAW;OpenCASCADE::TKQADraw;OpenCASCADE::TKIVtkDraw][C:/OCCT/win64/vc14/bin][v7.6.0()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_Python", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding Python" + } + ], + "type" : "INTERNAL", + "value" : "[D:/WBFZCPP/source/FastCAE/extlib/Python][D:/WBFZCPP/source/FastCAE/extlib/Python/include][D:/WBFZCPP/source/FastCAE/extlib/Python/libs][LAMPCAE::PYTHON][D:/WBFZCPP/source/FastCAE/extlib/Python/python.exe][v3.7.0()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_QuaZIP", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding QuaZIP" + } + ], + "type" : "INTERNAL", + "value" : "[D:/WBFZCPP/source/FastCAE/extlib/QuaZIP][D:/WBFZCPP/source/FastCAE/extlib/QuaZIP/include/quazip5][D:/WBFZCPP/source/FastCAE/extlib/QuaZIP/lib][LAMPCAE::QUAZIP][D:/WBFZCPP/source/FastCAE/extlib/QuaZIP/lib][v0.7.3()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_Qwt", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding Qwt" + } + ], + "type" : "INTERNAL", + "value" : "[C:/Qwt][C:/Qwt/include][C:/Qwt/lib][LAMPCAE::QWT;LAMPCAE::QWTPOLAR][C:/Qwt/lib][v6.2.0()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_TecIO", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding TecIO" + } + ], + "type" : "INTERNAL", + "value" : "[D:/WBFZCPP/source/FastCAE/extlib/TecIO][D:/WBFZCPP/source/FastCAE/extlib/TecIO/include][D:/WBFZCPP/source/FastCAE/extlib/TecIO/lib][LAMPCAE::TECIO][v1.4.2()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_VTK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding VTK" + } + ], + "type" : "INTERNAL", + "value" : "[C:/VTK][C:/VTK/include/vtk-9.3][C:/VTK/lib][VTK::ChartsCore;VTK::CommonColor;VTK::CommonComputationalGeometry;VTK::CommonCore;VTK::CommonDataModel;VTK::CommonExecutionModel;VTK::CommonMath;VTK::CommonMisc;VTK::CommonSystem;VTK::CommonTransforms;VTK::DomainsChemistry;VTK::FiltersAMR;VTK::FiltersCore;VTK::FiltersExtraction;VTK::FiltersFlowPaths;VTK::FiltersGeneral;VTK::FiltersGeneric;VTK::FiltersGeometry;VTK::FiltersHybrid;VTK::FiltersHyperTree;VTK::FiltersImaging;VTK::FiltersModeling;VTK::FiltersParallel;VTK::FiltersParallelImaging;VTK::FiltersPoints;VTK::FiltersProgrammable;VTK::FiltersSelection;VTK::FiltersSMP;VTK::FiltersSources;VTK::FiltersStatistics;VTK::FiltersTexture;VTK::FiltersTopology;VTK::FiltersVerdict;VTK::GeovisCore;VTK::GUISupportQt;VTK::GUISupportQtSQL;VTK::ImagingColor;VTK::ImagingCore;VTK::ImagingFourier;VTK::ImagingGeneral;VTK::ImagingHybrid;VTK::ImagingMath;VTK::ImagingMorphological;VTK::ImagingSources;VTK::ImagingStatistics;VTK::ImagingStencil;VTK::InfovisCore;VTK::InfovisLayout;VTK::InteractionImage;VTK::InteractionStyle;VTK::InteractionWidgets;VTK::IOAsynchronous;VTK::IOCityGML;VTK::IOCore;VTK::IOEnSight;VTK::IOExport;VTK::IOExportGL2PS;VTK::IOExportPDF;VTK::IOGeometry;VTK::IOImage;VTK::IOImport;VTK::IOInfovis;VTK::IOLegacy;VTK::IOLSDyna;VTK::IOMotionFX;VTK::IOMovie;VTK::IOOggTheora;VTK::IOParallel;VTK::IOParallelXML;VTK::IOPLY;VTK::IOSegY;VTK::IOSQL;VTK::IOTecplotTable;VTK::IOVideo;VTK::IOXML;VTK::IOXMLParser;VTK::ParallelCore;VTK::ParallelDIY;VTK::RenderingAnnotation;VTK::RenderingContext2D;VTK::RenderingCore;VTK::RenderingFreeType;VTK::RenderingGL2PSOpenGL2;VTK::RenderingImage;VTK::RenderingLabel;VTK::RenderingLOD;VTK::RenderingOpenGL2;VTK::RenderingQt;VTK::RenderingSceneGraph;VTK::RenderingUI;VTK::RenderingVolume;VTK::RenderingVolumeOpenGL2;VTK::RenderingVtkJS;VTK::TestingRendering;VTK::doubleconversion;VTK::expat;VTK::freetype;VTK::gl2ps;VTK::glew;VTK::jpeg;VTK::jsoncpp;VTK::libharu;VTK::libproj;VTK::libxml2;VTK::loguru;VTK::lz4;VTK::lzma;VTK::ogg;VTK::png;VTK::pugixml;VTK::sqlite;VTK::theora;VTK::tiff;VTK::verdict;VTK::zlib;VTK::DICOMParser;VTK::sys;VTK::metaio;VTK::ViewsContext2D;VTK::ViewsCore;VTK::ViewsInfovis;VTK::ViewsQt;VTK::WrappingTools][C:/VTK/bin][v9.3.0()]" + }, + { + "name" : "Gmsh_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "D:/WBFZCPP/source/FastCAE/extlib/Gmsh" + }, + { + "name" : "HDF5_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "D:/WBFZCPP/source/FastCAE/extlib/HDF5" + }, + { + "name" : "HDF5_INCLUDE_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "D:/WBFZCPP/source/FastCAE/extlib/HDF5/include" + }, + { + "name" : "HDF5_LIBRARY_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "D:/WBFZCPP/source/FastCAE/extlib/HDF5/lib" + }, + { + "name" : "LAMPCAE_AUTO_DOWNLOAD", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "\u5982\u679cextlib\u4e0d\u5b58\u5728\uff0c\u5219\u81ea\u52a8\u4e0b\u8f7d(git)\u4f9d\u8d56\u5e93" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "LAMPCAE_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "D:/WBFZCPP/source/FastCAE/out/build" + }, + { + "name" : "LAMPCAE_DEBUG_INFO", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "\u8f93\u51fa\u8c03\u8bd5\u4fe1\u606f" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "LAMPCAE_DOXYGEN_DOC", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "\u751f\u6210Doxygen\u6587\u6863" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "LAMPCAE_ENABLE_DEV", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "ON:\u5f00\u542f\u4ee3\u7801\u8c03\u8bd5\uff0cOFF:\u4ec5\u5b89\u88c5\u7a0b\u5e8f" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "LAMPCAE_ENABLE_MPI", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "\u4f7f\u7528MPI" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "LAMPCAE_ENABLE_OPENMP", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "\u4f7f\u7528OpenMP" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "LAMPCAE_ENABLE_TEST", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "\u5f00\u542f\u5355\u5143\u6d4b\u8bd5\uff08\u5c1a\u672a\u5f00\u53d1\u5b8c\u6210\uff09" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "LAMPCAE_INSTALLATION_PACKAGE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "\u751f\u6210LAMPCAE\u5b89\u88c5\u5305" + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "LAMPCAE_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "ON" + }, + { + "name" : "LAMPCAE_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "D:/WBFZCPP/source/FastCAE" + }, + { + "name" : "NSIS_EXECUTABLE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "NSIS_EXECUTABLE-NOTFOUND" + }, + { + "name" : "Python_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "D:/WBFZCPP/source/FastCAE/extlib/Python" + }, + { + "name" : "Python_INCLUDE_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + }, + { + "name" : "Python_LIBRARY_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "D:/WBFZCPP/source/FastCAE/extlib/Python/libs" + }, + { + "name" : "Qt5Core_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt5Core." + } + ], + "type" : "PATH", + "value" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Core" + }, + { + "name" : "Qt5DBus_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt5DBus." + } + ], + "type" : "PATH", + "value" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5DBus" + }, + { + "name" : "Qt5Gui_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt5Gui." + } + ], + "type" : "PATH", + "value" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui" + }, + { + "name" : "Qt5OpenGL_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt5OpenGL." + } + ], + "type" : "PATH", + "value" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5OpenGL" + }, + { + "name" : "Qt5PrintSupport_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt5PrintSupport." + } + ], + "type" : "PATH", + "value" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5PrintSupport" + }, + { + "name" : "Qt5Svg_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt5Svg." + } + ], + "type" : "PATH", + "value" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Svg" + }, + { + "name" : "Qt5Widgets_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt5Widgets." + } + ], + "type" : "PATH", + "value" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Widgets" + }, + { + "name" : "Qt5Xml_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt5Xml." + } + ], + "type" : "PATH", + "value" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Xml" + }, + { + "name" : "Qt5_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt5Config.cmake\u6240\u5728\u76ee\u5f55" + } + ], + "type" : "PATH", + "value" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5" + }, + { + "name" : "QuaZIP_BINARY_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "D:/WBFZCPP/source/FastCAE/extlib/QuaZIP/lib" + }, + { + "name" : "QuaZIP_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "D:/WBFZCPP/source/FastCAE/extlib/QuaZIP" + }, + { + "name" : "QuaZIP_INCLUDE_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "D:/WBFZCPP/source/FastCAE/extlib/QuaZIP/include/quazip5" + }, + { + "name" : "QuaZIP_LIBRARY_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "D:/WBFZCPP/source/FastCAE/extlib/QuaZIP/lib" + }, + { + "name" : "Qwt_BINARY_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "C:/Qwt/lib" + }, + { + "name" : "Qwt_INCLUDE_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "C:/Qwt/include" + }, + { + "name" : "Qwt_LIBRARY_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "C:/Qwt/lib" + }, + { + "name" : "TecIO_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "D:/WBFZCPP/source/FastCAE/extlib/TecIO" + }, + { + "name" : "TecIO_INCLUDE_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "D:/WBFZCPP/source/FastCAE/extlib/TecIO/include" + }, + { + "name" : "TecIO_LIBRARY_DIRS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "D:/WBFZCPP/source/FastCAE/extlib/TecIO/lib" + }, + { + "name" : "_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CMAKE_INSTALL_PREFIX during last run" + } + ], + "type" : "INTERNAL", + "value" : "D:/WBFZCPP/source/FastCAE/install" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/out/build/.cmake/api/v1/reply/cmakeFiles-v1-bc0bc38fca065813c476.json b/out/build/.cmake/api/v1/reply/cmakeFiles-v1-bc0bc38fca065813c476.json new file mode 100644 index 0000000..f802ed1 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/cmakeFiles-v1-bc0bc38fca065813c476.json @@ -0,0 +1,1024 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeSystem.cmake.in" + }, + { + "isGenerated" : true, + "path" : "out/build/CMakeFiles/3.28.0-msvc1/CMakeSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Platform/Windows-Initialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeDetermineCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeDetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Platform/Windows-Determine-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeCompilerIdDetection.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/ADSP-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/Borland-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/Cray-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/CrayClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/GHS-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/IAR-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/Intel-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/MSVC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/OrangeC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/PGI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/PathScale-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/SCO-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/TI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/Tasking-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/Watcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeFindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeCXXCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "out/build/CMakeFiles/3.28.0-msvc1/CMakeCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Platform/Windows.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Platform/WindowsPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/MSVC-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/MSVC.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Platform/Windows-MSVC-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Platform/Windows-MSVC.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeDetermineRCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeRCCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "out/build/CMakeFiles/3.28.0-msvc1/CMakeRCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeRCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeTestRCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeParseImplicitIncludeInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeParseImplicitLinkInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeParseLibraryArchitecture.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeDetermineCompileFeatures.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/Internal/FeatureTesting.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeCXXCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "out/build/CMakeFiles/3.28.0-msvc1/CMakeCXXCompiler.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5/Qt5ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5/Qt5Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5/Qt5ModuleLocation.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Core/Qt5CoreConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Core/Qt5CoreConfig.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Core/Qt5CoreMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeParseArguments.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5Gui_QVirtualKeyboardPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5Gui_QWebGLIntegrationPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5Gui_QXdgDesktopPortalThemePlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeParseArguments.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Xml/Qt5XmlConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Xml/Qt5XmlConfig.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Svg/Qt5SvgConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Svg/Qt5SvgConfig.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5OpenGL/Qt5OpenGLConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5OpenGL/Qt5OpenGLConfig.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5PrintSupport/Qt5PrintSupportConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5PrintSupport/Qt5PrintSupportConfig.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5PrintSupport/Qt5PrintSupport_QWindowsPrinterSupportPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5DBus/Qt5DBusConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5DBus/Qt5DBusConfig.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5DBus/Qt5DBusConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5DBus/Qt5DBusMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/MacroAddFileDependencies.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeParseArguments.cmake" + }, + { + "path" : "cmake/FindVTK.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindPackageMessage.cmake" + }, + { + "path" : "cmake/FindOpenCASCADE.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindPackageMessage.cmake" + }, + { + "path" : "cmake/FindQwt.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindPackageMessage.cmake" + }, + { + "path" : "cmake/FindHDF5.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindPackageMessage.cmake" + }, + { + "path" : "cmake/FindCGNS.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindPackageMessage.cmake" + }, + { + "path" : "cmake/FindTecIO.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindPackageMessage.cmake" + }, + { + "path" : "cmake/FindQuaZIP.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindPackageMessage.cmake" + }, + { + "path" : "cmake/FindGmsh.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindPackageMessage.cmake" + }, + { + "path" : "cmake/FindPython.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/GNUInstallDirs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindDoxygen.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/FindPackageMessage.cmake" + }, + { + "path" : "cmake/UseDoxygen.cmake" + }, + { + "path" : "docs/Doxyfile.in" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CPack.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CPackComponent.cmake" + }, + { + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Templates/CPackConfig.cmake.in" + }, + { + "isExternal" : true, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Templates/CPackConfig.cmake.in" + }, + { + "path" : "src/CMakeLists.txt" + }, + { + "path" : "src/Common/CMakeLists.txt" + }, + { + "path" : "src/PythonModule/CMakeLists.txt" + }, + { + "path" : "src/SARibbonBar/CMakeLists.txt" + }, + { + "path" : "src/SARibbonBar/resource.qrc" + }, + { + "path" : "src/Settings/CMakeLists.txt" + }, + { + "path" : "src/DataProperty/CMakeLists.txt" + }, + { + "path" : "src/MeshData/CMakeLists.txt" + }, + { + "path" : "src/SelfDefObject/CMakeLists.txt" + }, + { + "path" : "src/qrc/qianfan.qrc" + }, + { + "path" : "src/qrc/translations.qrc" + }, + { + "path" : "src/Material/CMakeLists.txt" + }, + { + "path" : "src/qrc/qianfan.qrc" + }, + { + "path" : "src/Geometry/CMakeLists.txt" + }, + { + "path" : "src/BCBase/CMakeLists.txt" + }, + { + "path" : "src/ConfigOptions/CMakeLists.txt" + }, + { + "path" : "src/ParaClassFactory/CMakeLists.txt" + }, + { + "path" : "src/ModelData/CMakeLists.txt" + }, + { + "path" : "src/ModuleBase/CMakeLists.txt" + }, + { + "path" : "src/qrc/qianfan.qrc" + }, + { + "path" : "src/qrc/translations.qrc" + }, + { + "path" : "src/PostAlgorithm/CMakeLists.txt" + }, + { + "path" : "src/PostRenderData/CMakeLists.txt" + }, + { + "path" : "src/PostInterface/CMakeLists.txt" + }, + { + "path" : "src/qrc/qianfan.qrc" + }, + { + "path" : "src/qrc/translations.qrc" + }, + { + "path" : "src/PostCurveDataManager/CMakeLists.txt" + }, + { + "path" : "src/PostPlotWidget/CMakeLists.txt" + }, + { + "path" : "src/PostWidgets/CMakeLists.txt" + }, + { + "path" : "src/qrc/qianfan.qrc" + }, + { + "path" : "src/qrc/translations.qrc" + }, + { + "path" : "src/GeometryDataExchange/CMakeLists.txt" + }, + { + "path" : "src/ProjectTree/CMakeLists.txt" + }, + { + "path" : "src/qrc/qianfan.qrc" + }, + { + "path" : "src/qrc/translations.qrc" + }, + { + "path" : "src/ProjectTreeExtend/CMakeLists.txt" + }, + { + "path" : "src/qrc/qianfan.qrc" + }, + { + "path" : "src/qrc/translations.qrc" + }, + { + "path" : "src/GeometryCommand/CMakeLists.txt" + }, + { + "path" : "src/qrc/qianfan.qrc" + }, + { + "path" : "src/qrc/translations.qrc" + }, + { + "path" : "src/GeometryWidgets/CMakeLists.txt" + }, + { + "path" : "src/qrc/qianfan.qrc" + }, + { + "path" : "src/qrc/translations.qrc" + }, + { + "path" : "src/PluginManager/CMakeLists.txt" + }, + { + "path" : "src/GmshModule/CMakeLists.txt" + }, + { + "path" : "src/qrc/qianfan.qrc" + }, + { + "path" : "src/qrc/translations.qrc" + }, + { + "path" : "src/IO/CMakeLists.txt" + }, + { + "path" : "src/SolverControl/CMakeLists.txt" + }, + { + "path" : "src/qrc/qianfan.qrc" + }, + { + "path" : "src/qrc/translations.qrc" + }, + { + "path" : "src/MainWidgets/CMakeLists.txt" + }, + { + "path" : "src/qrc/qianfan.qrc" + }, + { + "path" : "src/qrc/translations.qrc" + }, + { + "path" : "src/UserGuidence/CMakeLists.txt" + }, + { + "path" : "src/qrc/qianfan.qrc" + }, + { + "path" : "src/qrc/translations.qrc" + }, + { + "path" : "src/MainWindow/CMakeLists.txt" + }, + { + "path" : "src/qrc/qianfan.qrc" + }, + { + "path" : "src/qrc/translations.qrc" + }, + { + "path" : "src/LAMPCAE/CMakeLists.txt" + }, + { + "path" : "cmake/InitRuntime.cmake" + }, + { + "path" : "src/PluginCustomizer/CMakeLists.txt" + }, + { + "path" : "src/qrc/qianfan.qrc" + }, + { + "path" : "src/PluginCustomizer/resource/customizer.qrc" + }, + { + "path" : "src/PluginMeshDataExchange/CMakeLists.txt" + }, + { + "path" : "src/qrc/qianfan.qrc" + }, + { + "path" : "src/qrc/translations.qrc" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "D:/WBFZCPP/source/FastCAE/out/build", + "source" : "D:/WBFZCPP/source/FastCAE" + }, + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/out/build/.cmake/api/v1/reply/codemodel-v2-9e6acc76e9c260e6d44f.json b/out/build/.cmake/api/v1/reply/codemodel-v2-9e6acc76e9c260e6d44f.json new file mode 100644 index 0000000..f34d9a9 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/codemodel-v2-9e6acc76e9c260e6d44f.json @@ -0,0 +1,1589 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "childIndexes" : + [ + 1 + ], + "hasInstallRule" : true, + "jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "projectIndex" : 0, + "source" : ".", + "targetIndexes" : + [ + 12 + ] + }, + { + "build" : "src", + "childIndexes" : + [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36 + ], + "hasInstallRule" : true, + "jsonFile" : "directory-src-Debug-f4eac5f7c5c995a2fc37.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 0, + "projectIndex" : 0, + "source" : "src" + }, + { + "build" : "src/Common", + "jsonFile" : "directory-src.Common-Debug-555e2cf014f3c4041037.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/Common", + "targetIndexes" : + [ + 3, + 4, + 5 + ] + }, + { + "build" : "src/PythonModule", + "hasInstallRule" : true, + "jsonFile" : "directory-src.PythonModule-Debug-a63564c7b90f34c53d76.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/PythonModule", + "targetIndexes" : + [ + 88, + 89, + 90 + ] + }, + { + "build" : "src/SARibbonBar", + "jsonFile" : "directory-src.SARibbonBar-Debug-3c18d945d19d7e5f631e.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/SARibbonBar", + "targetIndexes" : + [ + 91, + 92, + 93 + ] + }, + { + "build" : "src/Settings", + "jsonFile" : "directory-src.Settings-Debug-1a0da85cc8cd9667558f.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/Settings", + "targetIndexes" : + [ + 97, + 98, + 99 + ] + }, + { + "build" : "src/DataProperty", + "jsonFile" : "directory-src.DataProperty-Debug-e62b5094254465b8eae0.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/DataProperty", + "targetIndexes" : + [ + 9, + 10, + 11 + ] + }, + { + "build" : "src/MeshData", + "jsonFile" : "directory-src.MeshData-Debug-5535fb953f5df19194dd.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/MeshData", + "targetIndexes" : + [ + 43, + 44, + 45 + ] + }, + { + "build" : "src/SelfDefObject", + "jsonFile" : "directory-src.SelfDefObject-Debug-3ea6c96be3c50bb4a22e.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/SelfDefObject", + "targetIndexes" : + [ + 94, + 95, + 96 + ] + }, + { + "build" : "src/Material", + "jsonFile" : "directory-src.Material-Debug-8403bf3d1dcab886c6f5.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/Material", + "targetIndexes" : + [ + 40, + 41, + 42 + ] + }, + { + "build" : "src/Geometry", + "jsonFile" : "directory-src.Geometry-Debug-47abd9c13e3c83a6a38d.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/Geometry", + "targetIndexes" : + [ + 13, + 23, + 24 + ] + }, + { + "build" : "src/BCBase", + "jsonFile" : "directory-src.BCBase-Debug-9e77281d0fa0abb8338d.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/BCBase", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + }, + { + "build" : "src/ConfigOptions", + "jsonFile" : "directory-src.ConfigOptions-Debug-b71c617a15753e1feef7.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/ConfigOptions", + "targetIndexes" : + [ + 6, + 7, + 8 + ] + }, + { + "build" : "src/ParaClassFactory", + "jsonFile" : "directory-src.ParaClassFactory-Debug-aa4d601bf85090c49228.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/ParaClassFactory", + "targetIndexes" : + [ + 52, + 53, + 54 + ] + }, + { + "build" : "src/ModelData", + "jsonFile" : "directory-src.ModelData-Debug-198cd6aedd7ee7546ca1.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/ModelData", + "targetIndexes" : + [ + 46, + 47, + 48 + ] + }, + { + "build" : "src/ModuleBase", + "jsonFile" : "directory-src.ModuleBase-Debug-9091614ce4dba507c4ca.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/ModuleBase", + "targetIndexes" : + [ + 49, + 50, + 51 + ] + }, + { + "build" : "src/PostAlgorithm", + "jsonFile" : "directory-src.PostAlgorithm-Debug-a68438d69bbbcbf3df12.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/PostAlgorithm", + "targetIndexes" : + [ + 64, + 65, + 66 + ] + }, + { + "build" : "src/PostRenderData", + "jsonFile" : "directory-src.PostRenderData-Debug-318d6865b7db010473b6.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/PostRenderData", + "targetIndexes" : + [ + 76, + 77, + 78 + ] + }, + { + "build" : "src/PostInterface", + "jsonFile" : "directory-src.PostInterface-Debug-75f006e7614e11057388.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/PostInterface", + "targetIndexes" : + [ + 70, + 71, + 72 + ] + }, + { + "build" : "src/PostCurveDataManager", + "jsonFile" : "directory-src.PostCurveDataManager-Debug-c74dde3dadceba73281b.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/PostCurveDataManager", + "targetIndexes" : + [ + 67, + 68, + 69 + ] + }, + { + "build" : "src/PostPlotWidget", + "jsonFile" : "directory-src.PostPlotWidget-Debug-f99e9e350f45afa9f71f.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/PostPlotWidget", + "targetIndexes" : + [ + 73, + 74, + 75 + ] + }, + { + "build" : "src/PostWidgets", + "jsonFile" : "directory-src.PostWidgets-Debug-0b40937599cd5da845cb.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/PostWidgets", + "targetIndexes" : + [ + 79, + 80, + 81 + ] + }, + { + "build" : "src/GeometryDataExchange", + "jsonFile" : "directory-src.GeometryDataExchange-Debug-16b712f9a4a5206a84d4.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/GeometryDataExchange", + "targetIndexes" : + [ + 17, + 18, + 19 + ] + }, + { + "build" : "src/ProjectTree", + "jsonFile" : "directory-src.ProjectTree-Debug-816dac64c9e8f726dac2.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/ProjectTree", + "targetIndexes" : + [ + 82, + 86, + 87 + ] + }, + { + "build" : "src/ProjectTreeExtend", + "jsonFile" : "directory-src.ProjectTreeExtend-Debug-b5fcdcc747efd1df86d8.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/ProjectTreeExtend", + "targetIndexes" : + [ + 83, + 84, + 85 + ] + }, + { + "build" : "src/GeometryCommand", + "jsonFile" : "directory-src.GeometryCommand-Debug-b092980e631bf26eb184.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/GeometryCommand", + "targetIndexes" : + [ + 14, + 15, + 16 + ] + }, + { + "build" : "src/GeometryWidgets", + "jsonFile" : "directory-src.GeometryWidgets-Debug-922ebaeb3b27204f3e4a.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/GeometryWidgets", + "targetIndexes" : + [ + 20, + 21, + 22 + ] + }, + { + "build" : "src/PluginManager", + "jsonFile" : "directory-src.PluginManager-Debug-f052b377cd9a513b9f97.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/PluginManager", + "targetIndexes" : + [ + 58, + 59, + 60 + ] + }, + { + "build" : "src/GmshModule", + "hasInstallRule" : true, + "jsonFile" : "directory-src.GmshModule-Debug-71bc511684637510f759.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/GmshModule", + "targetIndexes" : + [ + 25, + 26, + 27 + ] + }, + { + "build" : "src/IO", + "jsonFile" : "directory-src.IO-Debug-876fd3c12fc7fb021ca1.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/IO", + "targetIndexes" : + [ + 28, + 29, + 30 + ] + }, + { + "build" : "src/SolverControl", + "jsonFile" : "directory-src.SolverControl-Debug-b56b6244051353fee572.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/SolverControl", + "targetIndexes" : + [ + 100, + 101, + 102 + ] + }, + { + "build" : "src/MainWidgets", + "jsonFile" : "directory-src.MainWidgets-Debug-5da52c7e437fcddc0ffe.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/MainWidgets", + "targetIndexes" : + [ + 34, + 35, + 36 + ] + }, + { + "build" : "src/UserGuidence", + "jsonFile" : "directory-src.UserGuidence-Debug-57335dbdcf929945098b.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/UserGuidence", + "targetIndexes" : + [ + 103, + 104, + 105 + ] + }, + { + "build" : "src/MainWindow", + "jsonFile" : "directory-src.MainWindow-Debug-25a31dc44f25cea869e8.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/MainWindow", + "targetIndexes" : + [ + 37, + 38, + 39 + ] + }, + { + "build" : "src/LAMPCAE", + "hasInstallRule" : true, + "jsonFile" : "directory-src.LAMPCAE-Debug-d4b5f01aaa164ad1f37b.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/LAMPCAE", + "targetIndexes" : + [ + 31, + 32, + 33 + ] + }, + { + "build" : "src/PluginCustomizer", + "jsonFile" : "directory-src.PluginCustomizer-Debug-db1a160e57b0782567a9.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/PluginCustomizer", + "targetIndexes" : + [ + 55, + 56, + 57 + ] + }, + { + "build" : "src/PluginMeshDataExchange", + "jsonFile" : "directory-src.PluginMeshDataExchange-Debug-be0db16a6f3c69ccc587.json", + "minimumCMakeVersion" : + { + "string" : "3.21" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "src/PluginMeshDataExchange", + "targetIndexes" : + [ + 61, + 62, + 63 + ] + } + ], + "name" : "Debug", + "projects" : + [ + { + "directoryIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36 + ], + "name" : "LAMPCAE", + "targetIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105 + ] + } + ], + "targets" : + [ + { + "directoryIndex" : 11, + "id" : "BCBase::@baf13bdd6bef809f2182", + "jsonFile" : "target-BCBase-Debug-144852a9834429374bb4.json", + "name" : "BCBase", + "projectIndex" : 0 + }, + { + "directoryIndex" : 11, + "id" : "BCBase_autogen::@baf13bdd6bef809f2182", + "jsonFile" : "target-BCBase_autogen-Debug-f649e1b27d49b1d9297d.json", + "name" : "BCBase_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 11, + "id" : "BCBase_autogen_timestamp_deps::@baf13bdd6bef809f2182", + "jsonFile" : "target-BCBase_autogen_timestamp_deps-Debug-9e43c69b5fb9d56c4fea.json", + "name" : "BCBase_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 2, + "id" : "Common::@29aabc9fbfb9b5406d55", + "jsonFile" : "target-Common-Debug-2ad5fb95abe7e90e9794.json", + "name" : "Common", + "projectIndex" : 0 + }, + { + "directoryIndex" : 2, + "id" : "Common_autogen::@29aabc9fbfb9b5406d55", + "jsonFile" : "target-Common_autogen-Debug-7a9c97fb94c1a75c4478.json", + "name" : "Common_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 2, + "id" : "Common_autogen_timestamp_deps::@29aabc9fbfb9b5406d55", + "jsonFile" : "target-Common_autogen_timestamp_deps-Debug-c800ba80b03ae3ff837c.json", + "name" : "Common_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 12, + "id" : "ConfigOptions::@1c9d458e4038aca43955", + "jsonFile" : "target-ConfigOptions-Debug-ff8a87d6a0b432232f7b.json", + "name" : "ConfigOptions", + "projectIndex" : 0 + }, + { + "directoryIndex" : 12, + "id" : "ConfigOptions_autogen::@1c9d458e4038aca43955", + "jsonFile" : "target-ConfigOptions_autogen-Debug-0f028f409eab5bd73a58.json", + "name" : "ConfigOptions_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 12, + "id" : "ConfigOptions_autogen_timestamp_deps::@1c9d458e4038aca43955", + "jsonFile" : "target-ConfigOptions_autogen_timestamp_deps-Debug-53ed4ccb992a5e4cbc43.json", + "name" : "ConfigOptions_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 6, + "id" : "DataProperty::@ec84555ffa827036bc26", + "jsonFile" : "target-DataProperty-Debug-190bd1cfd1a97cd01ae2.json", + "name" : "DataProperty", + "projectIndex" : 0 + }, + { + "directoryIndex" : 6, + "id" : "DataProperty_autogen::@ec84555ffa827036bc26", + "jsonFile" : "target-DataProperty_autogen-Debug-4638356d3a0e008ba910.json", + "name" : "DataProperty_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 6, + "id" : "DataProperty_autogen_timestamp_deps::@ec84555ffa827036bc26", + "jsonFile" : "target-DataProperty_autogen_timestamp_deps-Debug-132f8d8c02350e7e52e1.json", + "name" : "DataProperty_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "Doxygen::@6890427a1f51a3e7e1df", + "jsonFile" : "target-Doxygen-Debug-7c3db3ebfd982f23d512.json", + "name" : "Doxygen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 10, + "id" : "Geometry::@b7b2e4191bc961e9afba", + "jsonFile" : "target-Geometry-Debug-db1a1175d1a0b7a8f351.json", + "name" : "Geometry", + "projectIndex" : 0 + }, + { + "directoryIndex" : 25, + "id" : "GeometryCommand::@d82e5b79e04a3b196df4", + "jsonFile" : "target-GeometryCommand-Debug-e7665f9611eab3eb73e1.json", + "name" : "GeometryCommand", + "projectIndex" : 0 + }, + { + "directoryIndex" : 25, + "id" : "GeometryCommand_autogen::@d82e5b79e04a3b196df4", + "jsonFile" : "target-GeometryCommand_autogen-Debug-56d273cbf7900b09f3d3.json", + "name" : "GeometryCommand_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 25, + "id" : "GeometryCommand_autogen_timestamp_deps::@d82e5b79e04a3b196df4", + "jsonFile" : "target-GeometryCommand_autogen_timestamp_deps-Debug-e53ab7fdc37f75042932.json", + "name" : "GeometryCommand_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 22, + "id" : "GeometryDataExchange::@d0ecc93579f777564da6", + "jsonFile" : "target-GeometryDataExchange-Debug-5d6ea264b5937e2f23f0.json", + "name" : "GeometryDataExchange", + "projectIndex" : 0 + }, + { + "directoryIndex" : 22, + "id" : "GeometryDataExchange_autogen::@d0ecc93579f777564da6", + "jsonFile" : "target-GeometryDataExchange_autogen-Debug-6c7fe286560717d76526.json", + "name" : "GeometryDataExchange_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 22, + "id" : "GeometryDataExchange_autogen_timestamp_deps::@d0ecc93579f777564da6", + "jsonFile" : "target-GeometryDataExchange_autogen_timestamp_deps-Debug-855d220c825b8f9cfc35.json", + "name" : "GeometryDataExchange_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 26, + "id" : "GeometryWidgets::@1fb7ae1802a587d65603", + "jsonFile" : "target-GeometryWidgets-Debug-6c94b9a64d9f27143666.json", + "name" : "GeometryWidgets", + "projectIndex" : 0 + }, + { + "directoryIndex" : 26, + "id" : "GeometryWidgets_autogen::@1fb7ae1802a587d65603", + "jsonFile" : "target-GeometryWidgets_autogen-Debug-393a3fe609df268019d7.json", + "name" : "GeometryWidgets_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 26, + "id" : "GeometryWidgets_autogen_timestamp_deps::@1fb7ae1802a587d65603", + "jsonFile" : "target-GeometryWidgets_autogen_timestamp_deps-Debug-241de3747242e8545ef0.json", + "name" : "GeometryWidgets_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 10, + "id" : "Geometry_autogen::@b7b2e4191bc961e9afba", + "jsonFile" : "target-Geometry_autogen-Debug-9c4188e39387e0abef81.json", + "name" : "Geometry_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 10, + "id" : "Geometry_autogen_timestamp_deps::@b7b2e4191bc961e9afba", + "jsonFile" : "target-Geometry_autogen_timestamp_deps-Debug-99c4d4fa63338ef30171.json", + "name" : "Geometry_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 28, + "id" : "GmshModule::@044d5c74ec3efe84c474", + "jsonFile" : "target-GmshModule-Debug-5e78905b6525182a5524.json", + "name" : "GmshModule", + "projectIndex" : 0 + }, + { + "directoryIndex" : 28, + "id" : "GmshModule_autogen::@044d5c74ec3efe84c474", + "jsonFile" : "target-GmshModule_autogen-Debug-509ee9ef7a5ae4da2083.json", + "name" : "GmshModule_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 28, + "id" : "GmshModule_autogen_timestamp_deps::@044d5c74ec3efe84c474", + "jsonFile" : "target-GmshModule_autogen_timestamp_deps-Debug-6afa7032252f83243033.json", + "name" : "GmshModule_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 29, + "id" : "IO::@484b42e69e32e953bc79", + "jsonFile" : "target-IO-Debug-f80106a685279877c218.json", + "name" : "IO", + "projectIndex" : 0 + }, + { + "directoryIndex" : 29, + "id" : "IO_autogen::@484b42e69e32e953bc79", + "jsonFile" : "target-IO_autogen-Debug-22c115c696c207a789e7.json", + "name" : "IO_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 29, + "id" : "IO_autogen_timestamp_deps::@484b42e69e32e953bc79", + "jsonFile" : "target-IO_autogen_timestamp_deps-Debug-d6711c1a2e45884b1c54.json", + "name" : "IO_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 34, + "id" : "LAMPCAE::@1d4d21e91c20b8980f28", + "jsonFile" : "target-LAMPCAE-Debug-928c22974a3b8f666c79.json", + "name" : "LAMPCAE", + "projectIndex" : 0 + }, + { + "directoryIndex" : 34, + "id" : "LAMPCAE_autogen::@1d4d21e91c20b8980f28", + "jsonFile" : "target-LAMPCAE_autogen-Debug-0d0b1d60871bafd8bc8e.json", + "name" : "LAMPCAE_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 34, + "id" : "LAMPCAE_autogen_timestamp_deps::@1d4d21e91c20b8980f28", + "jsonFile" : "target-LAMPCAE_autogen_timestamp_deps-Debug-dfa2f593c461c633ffef.json", + "name" : "LAMPCAE_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 31, + "id" : "MainWidgets::@d0895ea365458bd7f948", + "jsonFile" : "target-MainWidgets-Debug-f8e8121f47f37f333d97.json", + "name" : "MainWidgets", + "projectIndex" : 0 + }, + { + "directoryIndex" : 31, + "id" : "MainWidgets_autogen::@d0895ea365458bd7f948", + "jsonFile" : "target-MainWidgets_autogen-Debug-592aaa8f401193823229.json", + "name" : "MainWidgets_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 31, + "id" : "MainWidgets_autogen_timestamp_deps::@d0895ea365458bd7f948", + "jsonFile" : "target-MainWidgets_autogen_timestamp_deps-Debug-e7abf9d8f80a28535921.json", + "name" : "MainWidgets_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 33, + "id" : "MainWindow::@c380e645ecc921453605", + "jsonFile" : "target-MainWindow-Debug-44755f896a47b1dbc6f9.json", + "name" : "MainWindow", + "projectIndex" : 0 + }, + { + "directoryIndex" : 33, + "id" : "MainWindow_autogen::@c380e645ecc921453605", + "jsonFile" : "target-MainWindow_autogen-Debug-d639ea465a87551a348e.json", + "name" : "MainWindow_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 33, + "id" : "MainWindow_autogen_timestamp_deps::@c380e645ecc921453605", + "jsonFile" : "target-MainWindow_autogen_timestamp_deps-Debug-c0405d9ecaf5d33d7de1.json", + "name" : "MainWindow_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 9, + "id" : "Material::@05d68cd248c3246409d7", + "jsonFile" : "target-Material-Debug-5eb547a9a882c93cd5b5.json", + "name" : "Material", + "projectIndex" : 0 + }, + { + "directoryIndex" : 9, + "id" : "Material_autogen::@05d68cd248c3246409d7", + "jsonFile" : "target-Material_autogen-Debug-3a16fd19d6edcf795fc2.json", + "name" : "Material_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 9, + "id" : "Material_autogen_timestamp_deps::@05d68cd248c3246409d7", + "jsonFile" : "target-Material_autogen_timestamp_deps-Debug-0a3c394b1d68fcc91773.json", + "name" : "Material_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 7, + "id" : "MeshData::@2f0f676dafab302b2d20", + "jsonFile" : "target-MeshData-Debug-88542b4f910e26b63a07.json", + "name" : "MeshData", + "projectIndex" : 0 + }, + { + "directoryIndex" : 7, + "id" : "MeshData_autogen::@2f0f676dafab302b2d20", + "jsonFile" : "target-MeshData_autogen-Debug-22ffdb3b77f8b12d1947.json", + "name" : "MeshData_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 7, + "id" : "MeshData_autogen_timestamp_deps::@2f0f676dafab302b2d20", + "jsonFile" : "target-MeshData_autogen_timestamp_deps-Debug-ad6eb797f824e0a838c7.json", + "name" : "MeshData_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 14, + "id" : "ModelData::@8a6b2d9535e8b6cb6800", + "jsonFile" : "target-ModelData-Debug-b7303bcf30f6288fb65c.json", + "name" : "ModelData", + "projectIndex" : 0 + }, + { + "directoryIndex" : 14, + "id" : "ModelData_autogen::@8a6b2d9535e8b6cb6800", + "jsonFile" : "target-ModelData_autogen-Debug-ca819f71b5a06fcc789a.json", + "name" : "ModelData_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 14, + "id" : "ModelData_autogen_timestamp_deps::@8a6b2d9535e8b6cb6800", + "jsonFile" : "target-ModelData_autogen_timestamp_deps-Debug-8dd7d80923bbd845d8b2.json", + "name" : "ModelData_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 15, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de", + "jsonFile" : "target-ModuleBase-Debug-7833b55ca88869f4c47f.json", + "name" : "ModuleBase", + "projectIndex" : 0 + }, + { + "directoryIndex" : 15, + "id" : "ModuleBase_autogen::@53e1b14bc3636b2ea9de", + "jsonFile" : "target-ModuleBase_autogen-Debug-8042b02a7063075a047f.json", + "name" : "ModuleBase_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 15, + "id" : "ModuleBase_autogen_timestamp_deps::@53e1b14bc3636b2ea9de", + "jsonFile" : "target-ModuleBase_autogen_timestamp_deps-Debug-4a476fbc7e9396f79643.json", + "name" : "ModuleBase_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 13, + "id" : "ParaClassFactory::@d0ebb167002da5b45d84", + "jsonFile" : "target-ParaClassFactory-Debug-dfe56ff80bdc85aeee0c.json", + "name" : "ParaClassFactory", + "projectIndex" : 0 + }, + { + "directoryIndex" : 13, + "id" : "ParaClassFactory_autogen::@d0ebb167002da5b45d84", + "jsonFile" : "target-ParaClassFactory_autogen-Debug-69b7aca5849f82b0b0aa.json", + "name" : "ParaClassFactory_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 13, + "id" : "ParaClassFactory_autogen_timestamp_deps::@d0ebb167002da5b45d84", + "jsonFile" : "target-ParaClassFactory_autogen_timestamp_deps-Debug-46030b22a5aa0b5a1381.json", + "name" : "ParaClassFactory_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 35, + "id" : "PluginCustomizer::@5fa4d6e31c64d49d269b", + "jsonFile" : "target-PluginCustomizer-Debug-0f948f4908d1c9eab8b8.json", + "name" : "PluginCustomizer", + "projectIndex" : 0 + }, + { + "directoryIndex" : 35, + "id" : "PluginCustomizer_autogen::@5fa4d6e31c64d49d269b", + "jsonFile" : "target-PluginCustomizer_autogen-Debug-2812c6c3f3d05883a603.json", + "name" : "PluginCustomizer_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 35, + "id" : "PluginCustomizer_autogen_timestamp_deps::@5fa4d6e31c64d49d269b", + "jsonFile" : "target-PluginCustomizer_autogen_timestamp_deps-Debug-60973f2e3d995049838b.json", + "name" : "PluginCustomizer_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 27, + "id" : "PluginManager::@d6a357cdda12b0c888b1", + "jsonFile" : "target-PluginManager-Debug-755ce2dd42422dcee2f8.json", + "name" : "PluginManager", + "projectIndex" : 0 + }, + { + "directoryIndex" : 27, + "id" : "PluginManager_autogen::@d6a357cdda12b0c888b1", + "jsonFile" : "target-PluginManager_autogen-Debug-ee1b7178c11752bbf1c0.json", + "name" : "PluginManager_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 27, + "id" : "PluginManager_autogen_timestamp_deps::@d6a357cdda12b0c888b1", + "jsonFile" : "target-PluginManager_autogen_timestamp_deps-Debug-d0381371d1aa76811c59.json", + "name" : "PluginManager_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 36, + "id" : "PluginMeshDataExchange::@b3cc41d3de9d0b479d36", + "jsonFile" : "target-PluginMeshDataExchange-Debug-0c4480496742435080da.json", + "name" : "PluginMeshDataExchange", + "projectIndex" : 0 + }, + { + "directoryIndex" : 36, + "id" : "PluginMeshDataExchange_autogen::@b3cc41d3de9d0b479d36", + "jsonFile" : "target-PluginMeshDataExchange_autogen-Debug-3ccfe21a7a9c5c090bf0.json", + "name" : "PluginMeshDataExchange_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 36, + "id" : "PluginMeshDataExchange_autogen_timestamp_deps::@b3cc41d3de9d0b479d36", + "jsonFile" : "target-PluginMeshDataExchange_autogen_timestamp_deps-Debug-d5be7669b02c7bdfa374.json", + "name" : "PluginMeshDataExchange_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 16, + "id" : "PostAlgorithm::@d527967401306b818905", + "jsonFile" : "target-PostAlgorithm-Debug-ec3da06ebd5001e51f61.json", + "name" : "PostAlgorithm", + "projectIndex" : 0 + }, + { + "directoryIndex" : 16, + "id" : "PostAlgorithm_autogen::@d527967401306b818905", + "jsonFile" : "target-PostAlgorithm_autogen-Debug-0861aa8a82e0acf36e01.json", + "name" : "PostAlgorithm_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 16, + "id" : "PostAlgorithm_autogen_timestamp_deps::@d527967401306b818905", + "jsonFile" : "target-PostAlgorithm_autogen_timestamp_deps-Debug-6945a732d8452980c390.json", + "name" : "PostAlgorithm_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 19, + "id" : "PostCurveDataManager::@1562c6ae2d37fb33544b", + "jsonFile" : "target-PostCurveDataManager-Debug-b7ed0d2c648b1281cac4.json", + "name" : "PostCurveDataManager", + "projectIndex" : 0 + }, + { + "directoryIndex" : 19, + "id" : "PostCurveDataManager_autogen::@1562c6ae2d37fb33544b", + "jsonFile" : "target-PostCurveDataManager_autogen-Debug-727985a535e65b59ad2e.json", + "name" : "PostCurveDataManager_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 19, + "id" : "PostCurveDataManager_autogen_timestamp_deps::@1562c6ae2d37fb33544b", + "jsonFile" : "target-PostCurveDataManager_autogen_timestamp_deps-Debug-8d9d8030c97419083413.json", + "name" : "PostCurveDataManager_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 18, + "id" : "PostInterface::@38fb729d68510c1489c9", + "jsonFile" : "target-PostInterface-Debug-322491428ba469c003e2.json", + "name" : "PostInterface", + "projectIndex" : 0 + }, + { + "directoryIndex" : 18, + "id" : "PostInterface_autogen::@38fb729d68510c1489c9", + "jsonFile" : "target-PostInterface_autogen-Debug-1d65f102a2d63a3c451a.json", + "name" : "PostInterface_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 18, + "id" : "PostInterface_autogen_timestamp_deps::@38fb729d68510c1489c9", + "jsonFile" : "target-PostInterface_autogen_timestamp_deps-Debug-4fe15b4d2497d788318d.json", + "name" : "PostInterface_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 20, + "id" : "PostPlotWidget::@d1bc8a76442dff50f241", + "jsonFile" : "target-PostPlotWidget-Debug-48dff7a72d1b23e5c9d9.json", + "name" : "PostPlotWidget", + "projectIndex" : 0 + }, + { + "directoryIndex" : 20, + "id" : "PostPlotWidget_autogen::@d1bc8a76442dff50f241", + "jsonFile" : "target-PostPlotWidget_autogen-Debug-647111ef80ab4cde3314.json", + "name" : "PostPlotWidget_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 20, + "id" : "PostPlotWidget_autogen_timestamp_deps::@d1bc8a76442dff50f241", + "jsonFile" : "target-PostPlotWidget_autogen_timestamp_deps-Debug-02e10c43fac702728a9a.json", + "name" : "PostPlotWidget_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 17, + "id" : "PostRenderData::@ce9c2f9a6cca9038fdeb", + "jsonFile" : "target-PostRenderData-Debug-9bc3e88ef91e18f61eca.json", + "name" : "PostRenderData", + "projectIndex" : 0 + }, + { + "directoryIndex" : 17, + "id" : "PostRenderData_autogen::@ce9c2f9a6cca9038fdeb", + "jsonFile" : "target-PostRenderData_autogen-Debug-5667dc414f67aff32c20.json", + "name" : "PostRenderData_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 17, + "id" : "PostRenderData_autogen_timestamp_deps::@ce9c2f9a6cca9038fdeb", + "jsonFile" : "target-PostRenderData_autogen_timestamp_deps-Debug-9674524f44927d617d04.json", + "name" : "PostRenderData_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 21, + "id" : "PostWidgets::@93a5592897f957e6fa57", + "jsonFile" : "target-PostWidgets-Debug-06d84294f779838e50f9.json", + "name" : "PostWidgets", + "projectIndex" : 0 + }, + { + "directoryIndex" : 21, + "id" : "PostWidgets_autogen::@93a5592897f957e6fa57", + "jsonFile" : "target-PostWidgets_autogen-Debug-df90bd2e74782b99833d.json", + "name" : "PostWidgets_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 21, + "id" : "PostWidgets_autogen_timestamp_deps::@93a5592897f957e6fa57", + "jsonFile" : "target-PostWidgets_autogen_timestamp_deps-Debug-fae109ac3554477c847b.json", + "name" : "PostWidgets_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 23, + "id" : "ProjectTree::@43c6c7ebae2b88a99cdb", + "jsonFile" : "target-ProjectTree-Debug-ae655f9358b07b0db3a5.json", + "name" : "ProjectTree", + "projectIndex" : 0 + }, + { + "directoryIndex" : 24, + "id" : "ProjectTreeExtend::@f2791e4784919f40d89d", + "jsonFile" : "target-ProjectTreeExtend-Debug-c97d2c16aa8719582815.json", + "name" : "ProjectTreeExtend", + "projectIndex" : 0 + }, + { + "directoryIndex" : 24, + "id" : "ProjectTreeExtend_autogen::@f2791e4784919f40d89d", + "jsonFile" : "target-ProjectTreeExtend_autogen-Debug-1f90c671bc251ce5a28b.json", + "name" : "ProjectTreeExtend_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 24, + "id" : "ProjectTreeExtend_autogen_timestamp_deps::@f2791e4784919f40d89d", + "jsonFile" : "target-ProjectTreeExtend_autogen_timestamp_deps-Debug-9cf59e40cdacd18dfb49.json", + "name" : "ProjectTreeExtend_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 23, + "id" : "ProjectTree_autogen::@43c6c7ebae2b88a99cdb", + "jsonFile" : "target-ProjectTree_autogen-Debug-aacc1fa8f685d0a8a59c.json", + "name" : "ProjectTree_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 23, + "id" : "ProjectTree_autogen_timestamp_deps::@43c6c7ebae2b88a99cdb", + "jsonFile" : "target-ProjectTree_autogen_timestamp_deps-Debug-90b72032cac148ad9743.json", + "name" : "ProjectTree_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff", + "jsonFile" : "target-PythonModule-Debug-fd698a7d66a6c747bf3a.json", + "name" : "PythonModule", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "PythonModule_autogen::@c600c49a22fbbbfcb8ff", + "jsonFile" : "target-PythonModule_autogen-Debug-eea898c2e7cd943098a2.json", + "name" : "PythonModule_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "PythonModule_autogen_timestamp_deps::@c600c49a22fbbbfcb8ff", + "jsonFile" : "target-PythonModule_autogen_timestamp_deps-Debug-962356fa62c85c36765e.json", + "name" : "PythonModule_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "SARibbonBar::@f61b241723ced025d0ef", + "jsonFile" : "target-SARibbonBar-Debug-c665fea387b990826aed.json", + "name" : "SARibbonBar", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "SARibbonBar_autogen::@f61b241723ced025d0ef", + "jsonFile" : "target-SARibbonBar_autogen-Debug-814fabc12a6d548fd856.json", + "name" : "SARibbonBar_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 4, + "id" : "SARibbonBar_autogen_timestamp_deps::@f61b241723ced025d0ef", + "jsonFile" : "target-SARibbonBar_autogen_timestamp_deps-Debug-844ac52f6fa9689c11e1.json", + "name" : "SARibbonBar_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 8, + "id" : "SelfDefObject::@17d93127ede5f3b478ed", + "jsonFile" : "target-SelfDefObject-Debug-0a0a430956354cae4d00.json", + "name" : "SelfDefObject", + "projectIndex" : 0 + }, + { + "directoryIndex" : 8, + "id" : "SelfDefObject_autogen::@17d93127ede5f3b478ed", + "jsonFile" : "target-SelfDefObject_autogen-Debug-136452b2a8a8b2d57369.json", + "name" : "SelfDefObject_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 8, + "id" : "SelfDefObject_autogen_timestamp_deps::@17d93127ede5f3b478ed", + "jsonFile" : "target-SelfDefObject_autogen_timestamp_deps-Debug-0f063a5e80f0f7312065.json", + "name" : "SelfDefObject_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 5, + "id" : "Settings::@733e6871ef4a824e534d", + "jsonFile" : "target-Settings-Debug-679ee3a5d5a360adc2ed.json", + "name" : "Settings", + "projectIndex" : 0 + }, + { + "directoryIndex" : 5, + "id" : "Settings_autogen::@733e6871ef4a824e534d", + "jsonFile" : "target-Settings_autogen-Debug-82a028e5e8bab467dc02.json", + "name" : "Settings_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 5, + "id" : "Settings_autogen_timestamp_deps::@733e6871ef4a824e534d", + "jsonFile" : "target-Settings_autogen_timestamp_deps-Debug-10760dfb04a7ccf0a99b.json", + "name" : "Settings_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 30, + "id" : "SolverControl::@4a18b637ce8bf6991ec0", + "jsonFile" : "target-SolverControl-Debug-0a504d50d19bbd8d63a5.json", + "name" : "SolverControl", + "projectIndex" : 0 + }, + { + "directoryIndex" : 30, + "id" : "SolverControl_autogen::@4a18b637ce8bf6991ec0", + "jsonFile" : "target-SolverControl_autogen-Debug-fd4fed30b702707b5aa3.json", + "name" : "SolverControl_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 30, + "id" : "SolverControl_autogen_timestamp_deps::@4a18b637ce8bf6991ec0", + "jsonFile" : "target-SolverControl_autogen_timestamp_deps-Debug-9f9b8da9be97a5cf17ab.json", + "name" : "SolverControl_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 32, + "id" : "UserGuidence::@40175f0e8ac13e21fe7c", + "jsonFile" : "target-UserGuidence-Debug-b2ad728d7cda2c217487.json", + "name" : "UserGuidence", + "projectIndex" : 0 + }, + { + "directoryIndex" : 32, + "id" : "UserGuidence_autogen::@40175f0e8ac13e21fe7c", + "jsonFile" : "target-UserGuidence_autogen-Debug-f95f6abacacf44ef7ec9.json", + "name" : "UserGuidence_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 32, + "id" : "UserGuidence_autogen_timestamp_deps::@40175f0e8ac13e21fe7c", + "jsonFile" : "target-UserGuidence_autogen_timestamp_deps-Debug-6bd0d217bb37b698b434.json", + "name" : "UserGuidence_autogen_timestamp_deps", + "projectIndex" : 0 + } + ] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "D:/WBFZCPP/source/FastCAE/out/build", + "source" : "D:/WBFZCPP/source/FastCAE" + }, + "version" : + { + "major" : 2, + "minor" : 6 + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json b/out/build/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json new file mode 100644 index 0000000..3a67af9 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src-Debug-f4eac5f7c5c995a2fc37.json b/out/build/.cmake/api/v1/reply/directory-src-Debug-f4eac5f7c5c995a2fc37.json new file mode 100644 index 0000000..870642d --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src-Debug-f4eac5f7c5c995a2fc37.json @@ -0,0 +1,1173 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "src/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 58, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 78, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 87, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/Common.dll" + ], + "targetId" : "Common::@29aabc9fbfb9b5406d55", + "targetIndex" : 3, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/PythonModule.dll" + ], + "targetId" : "PythonModule::@c600c49a22fbbbfcb8ff", + "targetIndex" : 88, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/SARibbonBar.dll" + ], + "targetId" : "SARibbonBar::@f61b241723ced025d0ef", + "targetIndex" : 91, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/Settings.dll" + ], + "targetId" : "Settings::@733e6871ef4a824e534d", + "targetIndex" : 97, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/DataProperty.dll" + ], + "targetId" : "DataProperty::@ec84555ffa827036bc26", + "targetIndex" : 9, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/MeshData.dll" + ], + "targetId" : "MeshData::@2f0f676dafab302b2d20", + "targetIndex" : 43, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/SelfDefObject.dll" + ], + "targetId" : "SelfDefObject::@17d93127ede5f3b478ed", + "targetIndex" : 94, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/Material.dll" + ], + "targetId" : "Material::@05d68cd248c3246409d7", + "targetIndex" : 40, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/Geometry.dll" + ], + "targetId" : "Geometry::@b7b2e4191bc961e9afba", + "targetIndex" : 13, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/BCBase.dll" + ], + "targetId" : "BCBase::@baf13bdd6bef809f2182", + "targetIndex" : 0, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/ConfigOptions.dll" + ], + "targetId" : "ConfigOptions::@1c9d458e4038aca43955", + "targetIndex" : 6, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/ParaClassFactory.dll" + ], + "targetId" : "ParaClassFactory::@d0ebb167002da5b45d84", + "targetIndex" : 52, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/ModelData.dll" + ], + "targetId" : "ModelData::@8a6b2d9535e8b6cb6800", + "targetIndex" : 46, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/ModuleBase.dll" + ], + "targetId" : "ModuleBase::@53e1b14bc3636b2ea9de", + "targetIndex" : 49, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/PostAlgorithm.dll" + ], + "targetId" : "PostAlgorithm::@d527967401306b818905", + "targetIndex" : 64, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/PostRenderData.dll" + ], + "targetId" : "PostRenderData::@ce9c2f9a6cca9038fdeb", + "targetIndex" : 76, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/PostInterface.dll" + ], + "targetId" : "PostInterface::@38fb729d68510c1489c9", + "targetIndex" : 70, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/PostCurveDataManager.dll" + ], + "targetId" : "PostCurveDataManager::@1562c6ae2d37fb33544b", + "targetIndex" : 67, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/PostPlotWidget.dll" + ], + "targetId" : "PostPlotWidget::@d1bc8a76442dff50f241", + "targetIndex" : 73, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/PostWidgets.dll" + ], + "targetId" : "PostWidgets::@93a5592897f957e6fa57", + "targetIndex" : 79, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/GeometryDataExchange.dll" + ], + "targetId" : "GeometryDataExchange::@d0ecc93579f777564da6", + "targetIndex" : 17, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/ProjectTree.dll" + ], + "targetId" : "ProjectTree::@43c6c7ebae2b88a99cdb", + "targetIndex" : 82, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/ProjectTreeExtend.dll" + ], + "targetId" : "ProjectTreeExtend::@f2791e4784919f40d89d", + "targetIndex" : 83, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/GeometryCommand.dll" + ], + "targetId" : "GeometryCommand::@d82e5b79e04a3b196df4", + "targetIndex" : 14, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/GeometryWidgets.dll" + ], + "targetId" : "GeometryWidgets::@1fb7ae1802a587d65603", + "targetIndex" : 20, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/PluginManager.dll" + ], + "targetId" : "PluginManager::@d6a357cdda12b0c888b1", + "targetIndex" : 58, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/GmshModule.dll" + ], + "targetId" : "GmshModule::@044d5c74ec3efe84c474", + "targetIndex" : 25, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/IO.dll" + ], + "targetId" : "IO::@484b42e69e32e953bc79", + "targetIndex" : 28, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/SolverControl.dll" + ], + "targetId" : "SolverControl::@4a18b637ce8bf6991ec0", + "targetIndex" : 100, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/MainWidgets.dll" + ], + "targetId" : "MainWidgets::@d0895ea365458bd7f948", + "targetIndex" : 34, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/UserGuidence.dll" + ], + "targetId" : "UserGuidence::@40175f0e8ac13e21fe7c", + "targetIndex" : 103, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/MainWindow.dll" + ], + "targetId" : "MainWindow::@c380e645ecc921453605", + "targetIndex" : 37, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/LAMPCAE.exe" + ], + "targetId" : "LAMPCAE::@1d4d21e91c20b8980f28", + "targetIndex" : 31, + "type" : "target" + }, + { + "backtrace" : 1, + "component" : "bin", + "destination" : "bin", + "paths" : + [ + "Debug/LAMPCAE.exe" + ], + "targetId" : "LAMPCAE::@1d4d21e91c20b8980f28", + "targetIndex" : 31, + "type" : "target" + }, + { + "backtrace" : 2, + "component" : "Unspecified", + "destination" : "bin/plugins", + "paths" : + [ + "Debug/plugins/PluginCustomizer.dll" + ], + "targetId" : "PluginCustomizer::@5fa4d6e31c64d49d269b", + "targetIndex" : 55, + "type" : "target" + }, + { + "backtrace" : 2, + "component" : "Unspecified", + "destination" : "bin/plugins", + "paths" : + [ + "Debug/plugins/PluginMeshDataExchange.dll" + ], + "targetId" : "PluginMeshDataExchange::@b3cc41d3de9d0b479d36", + "targetIndex" : 61, + "type" : "target" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + }, + { + "backtrace" : 3, + "component" : "lib", + "destination" : "bin", + "type" : "importedRuntimeArtifacts" + } + ], + "paths" : + { + "build" : "src", + "source" : "src" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.BCBase-Debug-9e77281d0fa0abb8338d.json b/out/build/.cmake/api/v1/reply/directory-src.BCBase-Debug-9e77281d0fa0abb8338d.json new file mode 100644 index 0000000..29cef9d --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.BCBase-Debug-9e77281d0fa0abb8338d.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/BCBase", + "source" : "src/BCBase" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.Common-Debug-555e2cf014f3c4041037.json b/out/build/.cmake/api/v1/reply/directory-src.Common-Debug-555e2cf014f3c4041037.json new file mode 100644 index 0000000..e208cbc --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.Common-Debug-555e2cf014f3c4041037.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/Common", + "source" : "src/Common" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.ConfigOptions-Debug-b71c617a15753e1feef7.json b/out/build/.cmake/api/v1/reply/directory-src.ConfigOptions-Debug-b71c617a15753e1feef7.json new file mode 100644 index 0000000..3276820 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.ConfigOptions-Debug-b71c617a15753e1feef7.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/ConfigOptions", + "source" : "src/ConfigOptions" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.DataProperty-Debug-e62b5094254465b8eae0.json b/out/build/.cmake/api/v1/reply/directory-src.DataProperty-Debug-e62b5094254465b8eae0.json new file mode 100644 index 0000000..5878691 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.DataProperty-Debug-e62b5094254465b8eae0.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/DataProperty", + "source" : "src/DataProperty" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.Geometry-Debug-47abd9c13e3c83a6a38d.json b/out/build/.cmake/api/v1/reply/directory-src.Geometry-Debug-47abd9c13e3c83a6a38d.json new file mode 100644 index 0000000..6a18335 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.Geometry-Debug-47abd9c13e3c83a6a38d.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/Geometry", + "source" : "src/Geometry" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.GeometryCommand-Debug-b092980e631bf26eb184.json b/out/build/.cmake/api/v1/reply/directory-src.GeometryCommand-Debug-b092980e631bf26eb184.json new file mode 100644 index 0000000..7693157 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.GeometryCommand-Debug-b092980e631bf26eb184.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/GeometryCommand", + "source" : "src/GeometryCommand" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.GeometryDataExchange-Debug-16b712f9a4a5206a84d4.json b/out/build/.cmake/api/v1/reply/directory-src.GeometryDataExchange-Debug-16b712f9a4a5206a84d4.json new file mode 100644 index 0000000..dff0c5d --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.GeometryDataExchange-Debug-16b712f9a4a5206a84d4.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/GeometryDataExchange", + "source" : "src/GeometryDataExchange" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.GeometryWidgets-Debug-922ebaeb3b27204f3e4a.json b/out/build/.cmake/api/v1/reply/directory-src.GeometryWidgets-Debug-922ebaeb3b27204f3e4a.json new file mode 100644 index 0000000..5494f3b --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.GeometryWidgets-Debug-922ebaeb3b27204f3e4a.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/GeometryWidgets", + "source" : "src/GeometryWidgets" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.GmshModule-Debug-71bc511684637510f759.json b/out/build/.cmake/api/v1/reply/directory-src.GmshModule-Debug-71bc511684637510f759.json new file mode 100644 index 0000000..3b92fa0 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.GmshModule-Debug-71bc511684637510f759.json @@ -0,0 +1,43 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "src/GmshModule/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 67, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "bin", + "paths" : + [ + "extlib/Gmsh/gmsh.exe" + ], + "type" : "file" + } + ], + "paths" : + { + "build" : "src/GmshModule", + "source" : "src/GmshModule" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.IO-Debug-876fd3c12fc7fb021ca1.json b/out/build/.cmake/api/v1/reply/directory-src.IO-Debug-876fd3c12fc7fb021ca1.json new file mode 100644 index 0000000..2b1520f --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.IO-Debug-876fd3c12fc7fb021ca1.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/IO", + "source" : "src/IO" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.LAMPCAE-Debug-d4b5f01aaa164ad1f37b.json b/out/build/.cmake/api/v1/reply/directory-src.LAMPCAE-Debug-d4b5f01aaa164ad1f37b.json new file mode 100644 index 0000000..ad63bb8 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.LAMPCAE-Debug-d4b5f01aaa164ad1f37b.json @@ -0,0 +1,44 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "src/LAMPCAE/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 136, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "bin", + "paths" : + [ + "C:/Qt/5.15.2/msvc2019_64/bin/../plugins/imageformats", + "C:/Qt/5.15.2/msvc2019_64/bin/../plugins/platforms" + ], + "type" : "directory" + } + ], + "paths" : + { + "build" : "src/LAMPCAE", + "source" : "src/LAMPCAE" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.MainWidgets-Debug-5da52c7e437fcddc0ffe.json b/out/build/.cmake/api/v1/reply/directory-src.MainWidgets-Debug-5da52c7e437fcddc0ffe.json new file mode 100644 index 0000000..07fba40 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.MainWidgets-Debug-5da52c7e437fcddc0ffe.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/MainWidgets", + "source" : "src/MainWidgets" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.MainWindow-Debug-25a31dc44f25cea869e8.json b/out/build/.cmake/api/v1/reply/directory-src.MainWindow-Debug-25a31dc44f25cea869e8.json new file mode 100644 index 0000000..9496df8 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.MainWindow-Debug-25a31dc44f25cea869e8.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/MainWindow", + "source" : "src/MainWindow" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.Material-Debug-8403bf3d1dcab886c6f5.json b/out/build/.cmake/api/v1/reply/directory-src.Material-Debug-8403bf3d1dcab886c6f5.json new file mode 100644 index 0000000..50c0bab --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.Material-Debug-8403bf3d1dcab886c6f5.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/Material", + "source" : "src/Material" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.MeshData-Debug-5535fb953f5df19194dd.json b/out/build/.cmake/api/v1/reply/directory-src.MeshData-Debug-5535fb953f5df19194dd.json new file mode 100644 index 0000000..43e80d5 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.MeshData-Debug-5535fb953f5df19194dd.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/MeshData", + "source" : "src/MeshData" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.ModelData-Debug-198cd6aedd7ee7546ca1.json b/out/build/.cmake/api/v1/reply/directory-src.ModelData-Debug-198cd6aedd7ee7546ca1.json new file mode 100644 index 0000000..9f59222 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.ModelData-Debug-198cd6aedd7ee7546ca1.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/ModelData", + "source" : "src/ModelData" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.ModuleBase-Debug-9091614ce4dba507c4ca.json b/out/build/.cmake/api/v1/reply/directory-src.ModuleBase-Debug-9091614ce4dba507c4ca.json new file mode 100644 index 0000000..2e2325f --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.ModuleBase-Debug-9091614ce4dba507c4ca.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/ModuleBase", + "source" : "src/ModuleBase" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.ParaClassFactory-Debug-aa4d601bf85090c49228.json b/out/build/.cmake/api/v1/reply/directory-src.ParaClassFactory-Debug-aa4d601bf85090c49228.json new file mode 100644 index 0000000..5f06a7d --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.ParaClassFactory-Debug-aa4d601bf85090c49228.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/ParaClassFactory", + "source" : "src/ParaClassFactory" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.PluginCustomizer-Debug-db1a160e57b0782567a9.json b/out/build/.cmake/api/v1/reply/directory-src.PluginCustomizer-Debug-db1a160e57b0782567a9.json new file mode 100644 index 0000000..640880b --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.PluginCustomizer-Debug-db1a160e57b0782567a9.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/PluginCustomizer", + "source" : "src/PluginCustomizer" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.PluginManager-Debug-f052b377cd9a513b9f97.json b/out/build/.cmake/api/v1/reply/directory-src.PluginManager-Debug-f052b377cd9a513b9f97.json new file mode 100644 index 0000000..3fbf81a --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.PluginManager-Debug-f052b377cd9a513b9f97.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/PluginManager", + "source" : "src/PluginManager" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.PluginMeshDataExchange-Debug-be0db16a6f3c69ccc587.json b/out/build/.cmake/api/v1/reply/directory-src.PluginMeshDataExchange-Debug-be0db16a6f3c69ccc587.json new file mode 100644 index 0000000..a0e0b0e --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.PluginMeshDataExchange-Debug-be0db16a6f3c69ccc587.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/PluginMeshDataExchange", + "source" : "src/PluginMeshDataExchange" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.PostAlgorithm-Debug-a68438d69bbbcbf3df12.json b/out/build/.cmake/api/v1/reply/directory-src.PostAlgorithm-Debug-a68438d69bbbcbf3df12.json new file mode 100644 index 0000000..6db000e --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.PostAlgorithm-Debug-a68438d69bbbcbf3df12.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/PostAlgorithm", + "source" : "src/PostAlgorithm" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.PostCurveDataManager-Debug-c74dde3dadceba73281b.json b/out/build/.cmake/api/v1/reply/directory-src.PostCurveDataManager-Debug-c74dde3dadceba73281b.json new file mode 100644 index 0000000..2843d28 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.PostCurveDataManager-Debug-c74dde3dadceba73281b.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/PostCurveDataManager", + "source" : "src/PostCurveDataManager" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.PostInterface-Debug-75f006e7614e11057388.json b/out/build/.cmake/api/v1/reply/directory-src.PostInterface-Debug-75f006e7614e11057388.json new file mode 100644 index 0000000..83cd792 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.PostInterface-Debug-75f006e7614e11057388.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/PostInterface", + "source" : "src/PostInterface" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.PostPlotWidget-Debug-f99e9e350f45afa9f71f.json b/out/build/.cmake/api/v1/reply/directory-src.PostPlotWidget-Debug-f99e9e350f45afa9f71f.json new file mode 100644 index 0000000..476ae17 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.PostPlotWidget-Debug-f99e9e350f45afa9f71f.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/PostPlotWidget", + "source" : "src/PostPlotWidget" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.PostRenderData-Debug-318d6865b7db010473b6.json b/out/build/.cmake/api/v1/reply/directory-src.PostRenderData-Debug-318d6865b7db010473b6.json new file mode 100644 index 0000000..85b4344 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.PostRenderData-Debug-318d6865b7db010473b6.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/PostRenderData", + "source" : "src/PostRenderData" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.PostWidgets-Debug-0b40937599cd5da845cb.json b/out/build/.cmake/api/v1/reply/directory-src.PostWidgets-Debug-0b40937599cd5da845cb.json new file mode 100644 index 0000000..6a69133 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.PostWidgets-Debug-0b40937599cd5da845cb.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/PostWidgets", + "source" : "src/PostWidgets" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.ProjectTree-Debug-816dac64c9e8f726dac2.json b/out/build/.cmake/api/v1/reply/directory-src.ProjectTree-Debug-816dac64c9e8f726dac2.json new file mode 100644 index 0000000..49e5022 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.ProjectTree-Debug-816dac64c9e8f726dac2.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/ProjectTree", + "source" : "src/ProjectTree" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.ProjectTreeExtend-Debug-b5fcdcc747efd1df86d8.json b/out/build/.cmake/api/v1/reply/directory-src.ProjectTreeExtend-Debug-b5fcdcc747efd1df86d8.json new file mode 100644 index 0000000..17e69a1 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.ProjectTreeExtend-Debug-b5fcdcc747efd1df86d8.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/ProjectTreeExtend", + "source" : "src/ProjectTreeExtend" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.PythonModule-Debug-a63564c7b90f34c53d76.json b/out/build/.cmake/api/v1/reply/directory-src.PythonModule-Debug-a63564c7b90f34c53d76.json new file mode 100644 index 0000000..110d2b3 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.PythonModule-Debug-a63564c7b90f34c53d76.json @@ -0,0 +1,85 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "src/PythonModule/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 60, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 65, + "parent" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 78, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "bin", + "paths" : + [ + "extlib/Python/Lib" + ], + "type" : "directory" + }, + { + "backtrace" : 2, + "component" : "Unspecified", + "destination" : "bin", + "paths" : + [ + "extlib/Python/DLLs" + ], + "type" : "directory" + }, + { + "backtrace" : 3, + "component" : "Unspecified", + "destination" : "bin", + "paths" : + [ + "src/PythonModule/py/LAMPCAE.ini", + "src/PythonModule/py/CAD.py", + "src/PythonModule/py/Case.py", + "src/PythonModule/py/ControlPanel.py", + "src/PythonModule/py/Geometry.py", + "src/PythonModule/py/MainWindow.py", + "src/PythonModule/py/Material.py", + "src/PythonModule/py/Mesh.py", + "src/PythonModule/py/Mesher.py", + "src/PythonModule/py/Post.py", + "src/PythonModule/py/PostProcess.py" + ], + "type" : "file" + } + ], + "paths" : + { + "build" : "src/PythonModule", + "source" : "src/PythonModule" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.SARibbonBar-Debug-3c18d945d19d7e5f631e.json b/out/build/.cmake/api/v1/reply/directory-src.SARibbonBar-Debug-3c18d945d19d7e5f631e.json new file mode 100644 index 0000000..6b19dd6 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.SARibbonBar-Debug-3c18d945d19d7e5f631e.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/SARibbonBar", + "source" : "src/SARibbonBar" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.SelfDefObject-Debug-3ea6c96be3c50bb4a22e.json b/out/build/.cmake/api/v1/reply/directory-src.SelfDefObject-Debug-3ea6c96be3c50bb4a22e.json new file mode 100644 index 0000000..ba31dac --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.SelfDefObject-Debug-3ea6c96be3c50bb4a22e.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/SelfDefObject", + "source" : "src/SelfDefObject" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.Settings-Debug-1a0da85cc8cd9667558f.json b/out/build/.cmake/api/v1/reply/directory-src.Settings-Debug-1a0da85cc8cd9667558f.json new file mode 100644 index 0000000..2fd4413 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.Settings-Debug-1a0da85cc8cd9667558f.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/Settings", + "source" : "src/Settings" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.SolverControl-Debug-b56b6244051353fee572.json b/out/build/.cmake/api/v1/reply/directory-src.SolverControl-Debug-b56b6244051353fee572.json new file mode 100644 index 0000000..8c7ff95 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.SolverControl-Debug-b56b6244051353fee572.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/SolverControl", + "source" : "src/SolverControl" + } +} diff --git a/out/build/.cmake/api/v1/reply/directory-src.UserGuidence-Debug-57335dbdcf929945098b.json b/out/build/.cmake/api/v1/reply/directory-src.UserGuidence-Debug-57335dbdcf929945098b.json new file mode 100644 index 0000000..62fe1d3 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/directory-src.UserGuidence-Debug-57335dbdcf929945098b.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "src/UserGuidence", + "source" : "src/UserGuidence" + } +} diff --git a/out/build/.cmake/api/v1/reply/index-2024-03-20T07-28-18-0317.json b/out/build/.cmake/api/v1/reply/index-2024-03-20T07-28-18-0317.json new file mode 100644 index 0000000..6f9928a --- /dev/null +++ b/out/build/.cmake/api/v1/reply/index-2024-03-20T07-28-18-0317.json @@ -0,0 +1,132 @@ +{ + "cmake" : + { + "generator" : + { + "multiConfig" : false, + "name" : "Ninja" + }, + "paths" : + { + "cmake" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/bin/cmake.exe", + "cpack" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/bin/cpack.exe", + "ctest" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/bin/ctest.exe", + "root" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28" + }, + "version" : + { + "isDirty" : false, + "major" : 3, + "minor" : 28, + "patch" : 0, + "string" : "3.28.0-msvc1", + "suffix" : "msvc1" + } + }, + "objects" : + [ + { + "jsonFile" : "codemodel-v2-9e6acc76e9c260e6d44f.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 6 + } + }, + { + "jsonFile" : "cache-v2-261c2d679b8e4328aa57.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-bc0bc38fca065813c476.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + { + "jsonFile" : "toolchains-v1-2d3eac1e199c73b65707.json", + "kind" : "toolchains", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ], + "reply" : + { + "client-MicrosoftVS" : + { + "query.json" : + { + "requests" : + [ + { + "kind" : "cache", + "version" : 2 + }, + { + "kind" : "cmakeFiles", + "version" : 1 + }, + { + "kind" : "codemodel", + "version" : 2 + }, + { + "kind" : "toolchains", + "version" : 1 + } + ], + "responses" : + [ + { + "jsonFile" : "cache-v2-261c2d679b8e4328aa57.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-bc0bc38fca065813c476.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + { + "jsonFile" : "codemodel-v2-9e6acc76e9c260e6d44f.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 6 + } + }, + { + "jsonFile" : "toolchains-v1-2d3eac1e199c73b65707.json", + "kind" : "toolchains", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ] + } + } + } +} diff --git a/out/build/.cmake/api/v1/reply/target-BCBase-Debug-144852a9834429374bb4.json b/out/build/.cmake/api/v1/reply/target-BCBase-Debug-144852a9834429374bb4.json new file mode 100644 index 0000000..e275ae5 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-BCBase-Debug-144852a9834429374bb4.json @@ -0,0 +1,559 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/BCBase.dll" + }, + { + "path" : "Debug/BCBase.lib" + }, + { + "path" : "Debug/BCBase.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "set_property", + "_populate_Widgets_target_properties", + "find_package", + "_populate_Xml_target_properties", + "add_dependencies", + "add_compile_options", + "target_compile_definitions", + "add_definitions", + "include_directories" + ], + "files" : + [ + "src/BCBase/CMakeLists.txt", + "src/CMakeLists.txt", + "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake", + "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5/Qt5Config.cmake", + "CMakeLists.txt", + "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Xml/Qt5XmlConfig.cmake" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 20, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "file" : 4 + }, + { + "command" : 5, + "file" : 4, + "line" : 142, + "parent" : 5 + }, + { + "file" : 3, + "parent" : 6 + }, + { + "command" : 5, + "file" : 3, + "line" : 28, + "parent" : 7 + }, + { + "file" : 2, + "parent" : 8 + }, + { + "command" : 4, + "file" : 2, + "line" : 207, + "parent" : 9 + }, + { + "command" : 3, + "file" : 2, + "line" : 44, + "parent" : 10 + }, + { + "command" : 5, + "file" : 3, + "line" : 28, + "parent" : 7 + }, + { + "file" : 5, + "parent" : 12 + }, + { + "command" : 6, + "file" : 5, + "line" : 207, + "parent" : 13 + }, + { + "command" : 3, + "file" : 5, + "line" : 44, + "parent" : 14 + }, + { + "command" : 7, + "file" : 0, + "line" : 52, + "parent" : 0 + }, + { + "command" : 8, + "file" : 4, + "line" : 85, + "parent" : 5 + }, + { + "command" : 8, + "file" : 4, + "line" : 86, + "parent" : 5 + }, + { + "command" : 9, + "file" : 0, + "line" : 28, + "parent" : 0 + }, + { + "command" : 10, + "file" : 4, + "line" : 118, + "parent" : 5 + }, + { + "command" : 10, + "file" : 4, + "line" : 83, + "parent" : 5 + }, + { + "command" : 11, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 17, + "fragment" : "/utf-8" + }, + { + "backtrace" : 18, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 19, + "define" : "BCBASE_API" + }, + { + "define" : "BCBase_EXPORTS" + }, + { + "backtrace" : 20, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_XML_LIB" + }, + { + "backtrace" : 21, + "define" : "UNICODE" + }, + { + "backtrace" : 21, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/BCBase" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/BCBase" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/BCBase/BCBase_autogen/include" + }, + { + "backtrace" : 22, + "path" : "D:/WBFZCPP/source/FastCAE/src/BCBase/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtXml" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 16, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 16, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 16, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 0, + "id" : "BCBase_autogen::@baf13bdd6bef809f2182" + }, + { + "id" : "BCBase_autogen_timestamp_deps::@baf13bdd6bef809f2182" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "BCBase::@baf13bdd6bef809f2182", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\MeshData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Geometry.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Xmld.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 11, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 15, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "BCBase", + "nameOnDisk" : "BCBase.dll", + "paths" : + { + "build" : "src/BCBase", + "source" : "src/BCBase" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 18 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 19 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/BCBase/BCBase_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "src/BCBase/BCBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/BCBase/BCBaseAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/BCBase/BCDisplacement.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/BCBase/BCPressure.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/BCBase/BCScalarBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/BCBase/BCTemperature.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/BCBase/BCType.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/BCBase/BCUserDef.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/BCBase/BCVectorBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/BCBase/BCBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/BCBase/BCDisplacement.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/BCBase/BCPressure.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/BCBase/BCScalarBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/BCBase/BCTemperature.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/BCBase/BCType.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/BCBase/BCUserDef.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/BCBase/BCVectorBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/BCBase/BCBase_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/BCBase/BCBase_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-BCBase_autogen-Debug-f649e1b27d49b1d9297d.json b/out/build/.cmake/api/v1/reply/target-BCBase_autogen-Debug-f649e1b27d49b1d9297d.json new file mode 100644 index 0000000..9287736 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-BCBase_autogen-Debug-f649e1b27d49b1d9297d.json @@ -0,0 +1,87 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/BCBase/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 0, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "id" : "BCBase_autogen_timestamp_deps::@baf13bdd6bef809f2182" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "BCBase_autogen::@baf13bdd6bef809f2182", + "isGeneratorProvided" : true, + "name" : "BCBase_autogen", + "paths" : + { + "build" : "src/BCBase", + "source" : "src/BCBase" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/BCBase/CMakeFiles/BCBase_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/BCBase/CMakeFiles/BCBase_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/BCBase/BCBase_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-BCBase_autogen_timestamp_deps-Debug-9e43c69b5fb9d56c4fea.json b/out/build/.cmake/api/v1/reply/target-BCBase_autogen_timestamp_deps-Debug-9e43c69b5fb9d56c4fea.json new file mode 100644 index 0000000..7cb434d --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-BCBase_autogen_timestamp_deps-Debug-9e43c69b5fb9d56c4fea.json @@ -0,0 +1,74 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/BCBase/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "id" : "Geometry::@b7b2e4191bc961e9afba" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "BCBase_autogen_timestamp_deps::@baf13bdd6bef809f2182", + "isGeneratorProvided" : true, + "name" : "BCBase_autogen_timestamp_deps", + "paths" : + { + "build" : "src/BCBase", + "source" : "src/BCBase" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/BCBase/CMakeFiles/BCBase_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/BCBase/CMakeFiles/BCBase_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-Common-Debug-2ad5fb95abe7e90e9794.json b/out/build/.cmake/api/v1/reply/target-Common-Debug-2ad5fb95abe7e90e9794.json new file mode 100644 index 0000000..d5af4a3 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-Common-Debug-2ad5fb95abe7e90e9794.json @@ -0,0 +1,334 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/Common.dll" + }, + { + "path" : "Debug/Common.lib" + }, + { + "path" : "Debug/Common.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_compile_options", + "target_compile_definitions", + "add_definitions" + ], + "files" : + [ + "src/Common/CMakeLists.txt", + "src/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 15, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 32, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 85, + "parent" : 5 + }, + { + "command" : 3, + "file" : 2, + "line" : 86, + "parent" : 5 + }, + { + "command" : 4, + "file" : 0, + "line" : 23, + "parent" : 0 + }, + { + "command" : 5, + "file" : 2, + "line" : 118, + "parent" : 5 + }, + { + "command" : 5, + "file" : 2, + "line" : 83, + "parent" : 5 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 6, + "fragment" : "/utf-8" + }, + { + "backtrace" : 7, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "COMMON_API" + }, + { + "define" : "Common_EXPORTS" + }, + { + "backtrace" : 9, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "UNICODE" + }, + { + "backtrace" : 10, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/Common" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/Common" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/Common/Common_autogen/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 6, + 7 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "Common_autogen::@29aabc9fbfb9b5406d55" + }, + { + "id" : "Common_autogen_timestamp_deps::@29aabc9fbfb9b5406d55" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "Common::@29aabc9fbfb9b5406d55", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "Common", + "nameOnDisk" : "Common.dll", + "paths" : + { + "build" : "src/Common", + "source" : "src/Common" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 6, + 7 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 8 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 9 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/Common/Common_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "src/Common/CommonAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Common/DebugLogger.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Common/FakeClass.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Common/Singleton.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Common/Types.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Common/DebugLogger.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Common/FakeClass.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Common/Common_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Common/Common_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-Common_autogen-Debug-7a9c97fb94c1a75c4478.json b/out/build/.cmake/api/v1/reply/target-Common_autogen-Debug-7a9c97fb94c1a75c4478.json new file mode 100644 index 0000000..82dad3d --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-Common_autogen-Debug-7a9c97fb94c1a75c4478.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/Common/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "Common_autogen_timestamp_deps::@29aabc9fbfb9b5406d55" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "Common_autogen::@29aabc9fbfb9b5406d55", + "isGeneratorProvided" : true, + "name" : "Common_autogen", + "paths" : + { + "build" : "src/Common", + "source" : "src/Common" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Common/CMakeFiles/Common_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Common/CMakeFiles/Common_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Common/Common_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-Common_autogen_timestamp_deps-Debug-c800ba80b03ae3ff837c.json b/out/build/.cmake/api/v1/reply/target-Common_autogen_timestamp_deps-Debug-c800ba80b03ae3ff837c.json new file mode 100644 index 0000000..67ab909 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-Common_autogen_timestamp_deps-Debug-c800ba80b03ae3ff837c.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/Common/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "Modules" + }, + "id" : "Common_autogen_timestamp_deps::@29aabc9fbfb9b5406d55", + "isGeneratorProvided" : true, + "name" : "Common_autogen_timestamp_deps", + "paths" : + { + "build" : "src/Common", + "source" : "src/Common" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Common/CMakeFiles/Common_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Common/CMakeFiles/Common_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-ConfigOptions-Debug-ff8a87d6a0b432232f7b.json b/out/build/.cmake/api/v1/reply/target-ConfigOptions-Debug-ff8a87d6a0b432232f7b.json new file mode 100644 index 0000000..f8372a3 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-ConfigOptions-Debug-ff8a87d6a0b432232f7b.json @@ -0,0 +1,834 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/ConfigOptions.dll" + }, + { + "path" : "Debug/ConfigOptions.lib" + }, + { + "path" : "Debug/ConfigOptions.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "set_property", + "_populate_Widgets_target_properties", + "find_package", + "add_dependencies", + "add_compile_options", + "target_compile_definitions", + "add_definitions", + "include_directories" + ], + "files" : + [ + "src/ConfigOptions/CMakeLists.txt", + "src/CMakeLists.txt", + "src/PythonModule/CMakeLists.txt", + "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake", + "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5/Qt5Config.cmake", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 20, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 2, + "file" : 2, + "line" : 44, + "parent" : 5 + }, + { + "file" : 5 + }, + { + "command" : 5, + "file" : 5, + "line" : 142, + "parent" : 7 + }, + { + "file" : 4, + "parent" : 8 + }, + { + "command" : 5, + "file" : 4, + "line" : 28, + "parent" : 9 + }, + { + "file" : 3, + "parent" : 10 + }, + { + "command" : 4, + "file" : 3, + "line" : 207, + "parent" : 11 + }, + { + "command" : 3, + "file" : 3, + "line" : 44, + "parent" : 12 + }, + { + "command" : 6, + "file" : 0, + "line" : 47, + "parent" : 0 + }, + { + "command" : 7, + "file" : 5, + "line" : 85, + "parent" : 7 + }, + { + "command" : 7, + "file" : 5, + "line" : 86, + "parent" : 7 + }, + { + "command" : 8, + "file" : 0, + "line" : 28, + "parent" : 0 + }, + { + "command" : 9, + "file" : 5, + "line" : 118, + "parent" : 7 + }, + { + "command" : 9, + "file" : 5, + "line" : 83, + "parent" : 7 + }, + { + "command" : 10, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 15, + "fragment" : "/utf-8" + }, + { + "backtrace" : 16, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 17, + "define" : "CONFIGOPTIONS_API" + }, + { + "define" : "ConfigOptions_EXPORTS" + }, + { + "backtrace" : 18, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_XML_LIB" + }, + { + "backtrace" : 19, + "define" : "UNICODE" + }, + { + "backtrace" : 19, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/ConfigOptions" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/ConfigOptions" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/ConfigOptions/ConfigOptions_autogen/include" + }, + { + "backtrace" : 20, + "path" : "D:/WBFZCPP/source/FastCAE/src/ConfigOptions/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtXml" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 14, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 14, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 14, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 14, + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "backtrace" : 14, + "id" : "BCBase::@baf13bdd6bef809f2182" + }, + { + "backtrace" : 0, + "id" : "ConfigOptions_autogen::@1c9d458e4038aca43955" + }, + { + "id" : "ConfigOptions_autogen_timestamp_deps::@1c9d458e4038aca43955" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "ConfigOptions::@1c9d458e4038aca43955", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Material.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\BCBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Settings.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Xmld.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PythonModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\Python\\libs\\python37.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 13, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "ConfigOptions", + "nameOnDisk" : "ConfigOptions.dll", + "paths" : + { + "build" : "src/ConfigOptions", + "source" : "src/ConfigOptions" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 54 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 55 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/ConfigOptions/ConfigOptions_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/BCConfig.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/BCConfigReader.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/ConfigDataBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/ConfigDataReader.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/ConfigOptions.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/ConfigOptionsAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/DataConfig.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/DataConfigReader.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/GeometryConfig.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/GlobalConfig.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/GlobalConfigReader.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/MaterialConfig.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/MeshConfig.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/MesherInfo.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/MesherPy.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/ObserverConfig.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/ObserverConfigReader.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/ParameterObserver.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/PostConfig.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/PostConfigInfo.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/PostCurve.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/ProjectTreeConfig.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/ProjectTreeInfo.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/SolverConfig.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/SolverInfo.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/TreeConfigReader.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ConfigOptions/TreeItemData.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/BCConfig.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/BCConfigReader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/ConfigDataBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/ConfigDataReader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/ConfigOptions.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/DataConfig.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/DataConfigReader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/GeometryConfig.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/GlobalConfig.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/GlobalConfigReader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/MaterialConfig.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/MeshConfig.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/MesherInfo.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/MesherPy.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/ObserverConfig.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/ObserverConfigReader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/ParameterObserver.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/PostConfig.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/PostConfigInfo.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/PostCurve.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/ProjectTreeConfig.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/ProjectTreeInfo.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/SolverConfig.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/SolverInfo.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/TreeConfigReader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ConfigOptions/TreeItemData.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ConfigOptions/ConfigOptions_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ConfigOptions/ConfigOptions_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-ConfigOptions_autogen-Debug-0f028f409eab5bd73a58.json b/out/build/.cmake/api/v1/reply/target-ConfigOptions_autogen-Debug-0f028f409eab5bd73a58.json new file mode 100644 index 0000000..798a9e8 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-ConfigOptions_autogen-Debug-0f028f409eab5bd73a58.json @@ -0,0 +1,95 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/ConfigOptions/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 0, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "backtrace" : 0, + "id" : "BCBase::@baf13bdd6bef809f2182" + }, + { + "id" : "ConfigOptions_autogen_timestamp_deps::@1c9d458e4038aca43955" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "ConfigOptions_autogen::@1c9d458e4038aca43955", + "isGeneratorProvided" : true, + "name" : "ConfigOptions_autogen", + "paths" : + { + "build" : "src/ConfigOptions", + "source" : "src/ConfigOptions" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ConfigOptions/CMakeFiles/ConfigOptions_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ConfigOptions/CMakeFiles/ConfigOptions_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ConfigOptions/ConfigOptions_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-ConfigOptions_autogen_timestamp_deps-Debug-53ed4ccb992a5e4cbc43.json b/out/build/.cmake/api/v1/reply/target-ConfigOptions_autogen_timestamp_deps-Debug-53ed4ccb992a5e4cbc43.json new file mode 100644 index 0000000..07631a6 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-ConfigOptions_autogen_timestamp_deps-Debug-53ed4ccb992a5e4cbc43.json @@ -0,0 +1,80 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/ConfigOptions/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "id" : "BCBase::@baf13bdd6bef809f2182" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "ConfigOptions_autogen_timestamp_deps::@1c9d458e4038aca43955", + "isGeneratorProvided" : true, + "name" : "ConfigOptions_autogen_timestamp_deps", + "paths" : + { + "build" : "src/ConfigOptions", + "source" : "src/ConfigOptions" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ConfigOptions/CMakeFiles/ConfigOptions_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ConfigOptions/CMakeFiles/ConfigOptions_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-DataProperty-Debug-190bd1cfd1a97cd01ae2.json b/out/build/.cmake/api/v1/reply/target-DataProperty-Debug-190bd1cfd1a97cd01ae2.json new file mode 100644 index 0000000..ac4c310 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-DataProperty-Debug-190bd1cfd1a97cd01ae2.json @@ -0,0 +1,719 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/DataProperty.dll" + }, + { + "path" : "Debug/DataProperty.lib" + }, + { + "path" : "Debug/DataProperty.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_dependencies", + "add_compile_options", + "target_compile_definitions", + "add_definitions", + "include_directories" + ], + "files" : + [ + "src/DataProperty/CMakeLists.txt", + "src/CMakeLists.txt", + "src/PythonModule/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 20, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 37, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 2, + "file" : 2, + "line" : 44, + "parent" : 5 + }, + { + "command" : 3, + "file" : 0, + "line" : 46, + "parent" : 0 + }, + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 85, + "parent" : 8 + }, + { + "command" : 4, + "file" : 3, + "line" : 86, + "parent" : 8 + }, + { + "command" : 5, + "file" : 0, + "line" : 28, + "parent" : 0 + }, + { + "command" : 6, + "file" : 3, + "line" : 118, + "parent" : 8 + }, + { + "command" : 6, + "file" : 3, + "line" : 83, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 9, + "fragment" : "/utf-8" + }, + { + "backtrace" : 10, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 11, + "define" : "DATAPROPERTY_API" + }, + { + "define" : "DataProperty_EXPORTS" + }, + { + "backtrace" : 12, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_XML_LIB" + }, + { + "backtrace" : 13, + "define" : "UNICODE" + }, + { + "backtrace" : 13, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/DataProperty" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/DataProperty" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/DataProperty/DataProperty_autogen/include" + }, + { + "backtrace" : 14, + "path" : "D:/WBFZCPP/source/FastCAE/src/DataProperty/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtXml" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 7, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "DataProperty_autogen_timestamp_deps::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "DataProperty_autogen::@ec84555ffa827036bc26" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "DataProperty::@ec84555ffa827036bc26", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Xmld.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PythonModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\Python\\libs\\python37.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "DataProperty", + "nameOnDisk" : "DataProperty.dll", + "paths" : + { + "build" : "src/DataProperty", + "source" : "src/DataProperty" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 48 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 49 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/DataProperty/DataProperty_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/ComponentBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/DataBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/DataPropertyAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/ParameterBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/ParameterBool.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/ParameterColor.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/ParameterDouble.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/ParameterGroup.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/ParameterInt.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/ParameterList.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/ParameterPath.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/ParameterSelectable.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/ParameterString.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/ParameterTable.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/PropertyBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/PropertyBool.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/PropertyColor.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/PropertyDouble.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/PropertyIDList.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/PropertyInt.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/PropertyList.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/PropertyPoint.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/PropertyString.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/DataProperty/modelTreeItemType.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/ComponentBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/DataBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/ParameterBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/ParameterBool.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/ParameterColor.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/ParameterDouble.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/ParameterGroup.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/ParameterInt.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/ParameterList.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/ParameterPath.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/ParameterSelectable.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/ParameterString.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/ParameterTable.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/PropertyBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/PropertyBool.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/PropertyColor.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/PropertyDouble.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/PropertyIDList.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/PropertyInt.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/PropertyList.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/PropertyPoint.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/PropertyString.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/DataProperty/modelTreeItemType.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/DataProperty/DataProperty_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/DataProperty/DataProperty_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-DataProperty_autogen-Debug-4638356d3a0e008ba910.json b/out/build/.cmake/api/v1/reply/target-DataProperty_autogen-Debug-4638356d3a0e008ba910.json new file mode 100644 index 0000000..c2cb2db --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-DataProperty_autogen-Debug-4638356d3a0e008ba910.json @@ -0,0 +1,79 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/DataProperty/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "DataProperty_autogen_timestamp_deps::@ec84555ffa827036bc26" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "DataProperty_autogen::@ec84555ffa827036bc26", + "isGeneratorProvided" : true, + "name" : "DataProperty_autogen", + "paths" : + { + "build" : "src/DataProperty", + "source" : "src/DataProperty" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/DataProperty/CMakeFiles/DataProperty_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/DataProperty/CMakeFiles/DataProperty_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/DataProperty/DataProperty_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-DataProperty_autogen_timestamp_deps-Debug-132f8d8c02350e7e52e1.json b/out/build/.cmake/api/v1/reply/target-DataProperty_autogen_timestamp_deps-Debug-132f8d8c02350e7e52e1.json new file mode 100644 index 0000000..92e75b9 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-DataProperty_autogen_timestamp_deps-Debug-132f8d8c02350e7e52e1.json @@ -0,0 +1,68 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/DataProperty/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "DataProperty_autogen_timestamp_deps::@ec84555ffa827036bc26", + "isGeneratorProvided" : true, + "name" : "DataProperty_autogen_timestamp_deps", + "paths" : + { + "build" : "src/DataProperty", + "source" : "src/DataProperty" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/DataProperty/CMakeFiles/DataProperty_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/DataProperty/CMakeFiles/DataProperty_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-Doxygen-Debug-7c3db3ebfd982f23d512.json b/out/build/.cmake/api/v1/reply/target-Doxygen-Debug-7c3db3ebfd982f23d512.json new file mode 100644 index 0000000..43eb238 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-Doxygen-Debug-7c3db3ebfd982f23d512.json @@ -0,0 +1,89 @@ +{ + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "buildDoxygenDoc", + "include" + ], + "files" : + [ + "cmake/UseDoxygen.cmake", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 291, + "parent" : 0 + }, + { + "file" : 0, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 29, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 15, + "parent" : 3 + } + ] + }, + "folder" : + { + "name" : "Documentation" + }, + "id" : "Doxygen::@6890427a1f51a3e7e1df", + "name" : "Doxygen", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 4, + "isGenerated" : true, + "path" : "out/build/CMakeFiles/Doxygen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/CMakeFiles/Doxygen.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-Geometry-Debug-db1a1175d1a0b7a8f351.json b/out/build/.cmake/api/v1/reply/target-Geometry-Debug-db1a1175d1a0b7a8f351.json new file mode 100644 index 0000000..328b45a --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-Geometry-Debug-db1a1175d1a0b7a8f351.json @@ -0,0 +1,1208 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/Geometry.dll" + }, + { + "path" : "Debug/Geometry.lib" + }, + { + "path" : "Debug/Geometry.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "set_property", + "_populate_Widgets_target_properties", + "find_package", + "add_dependencies", + "add_compile_options", + "target_compile_definitions", + "add_definitions", + "include_directories" + ], + "files" : + [ + "src/Geometry/CMakeLists.txt", + "src/CMakeLists.txt", + "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake", + "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5/Qt5Config.cmake", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 20, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 37, + "parent" : 0 + }, + { + "file" : 4 + }, + { + "command" : 5, + "file" : 4, + "line" : 142, + "parent" : 5 + }, + { + "file" : 3, + "parent" : 6 + }, + { + "command" : 5, + "file" : 3, + "line" : 28, + "parent" : 7 + }, + { + "file" : 2, + "parent" : 8 + }, + { + "command" : 4, + "file" : 2, + "line" : 207, + "parent" : 9 + }, + { + "command" : 3, + "file" : 2, + "line" : 44, + "parent" : 10 + }, + { + "command" : 6, + "file" : 0, + "line" : 50, + "parent" : 0 + }, + { + "command" : 7, + "file" : 4, + "line" : 85, + "parent" : 5 + }, + { + "command" : 7, + "file" : 4, + "line" : 86, + "parent" : 5 + }, + { + "command" : 8, + "file" : 0, + "line" : 28, + "parent" : 0 + }, + { + "command" : 9, + "file" : 4, + "line" : 118, + "parent" : 5 + }, + { + "command" : 9, + "file" : 4, + "line" : 83, + "parent" : 5 + }, + { + "command" : 10, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 13, + "fragment" : "/utf-8" + }, + { + "backtrace" : 14, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 15, + "define" : "GEOMETRY_API" + }, + { + "define" : "Geometry_EXPORTS" + }, + { + "backtrace" : 16, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_XML_LIB" + }, + { + "backtrace" : 17, + "define" : "UNICODE" + }, + { + "backtrace" : 17, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/Geometry" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/Geometry" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/Geometry/Geometry_autogen/include" + }, + { + "backtrace" : 18, + "path" : "D:/WBFZCPP/source/FastCAE/src/Geometry/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/OCCT/inc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtXml" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/VTK/include/vtk-9.3" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 12, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "Geometry_autogen_timestamp_deps::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 0, + "id" : "Geometry_autogen::@b7b2e4191bc961e9afba" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "Geometry::@b7b2e4191bc961e9afba", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "D:\\vcpkg\\installed\\x64-windows\\debug\\lib\\freetype.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKBO.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKBRep.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKBool.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKCAF.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKCDF.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKG2d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKG3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKGeomAlgo.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKGeomBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKHLR.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKIGES.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKLCAF.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKMath.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKMesh.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKPrim.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKSTEP.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKSTEP209.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKSTEPAttr.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKSTEPBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKService.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKShHealing.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKTopAlgo.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKV3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKVCAF.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKXCAF.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKXDEIGES.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKXSBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKernel.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonColor-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonComputationalGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonDataModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonExecutionModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMisc-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonSystem-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonTransforms-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersExtraction-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeneral-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersSources-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersStatistics-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOLegacy-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXML-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXMLParser-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingFourier-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkInteractionStyle-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelDIY-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingFreeType-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingOpenGL2-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingUI-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingVolume-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingVolumeOpenGL2-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkdoubleconversion-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkexpat-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkfreetype-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkglew-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklz4-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklzma-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtksys-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkzlib-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Xmld.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 11, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 11, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "Geometry", + "nameOnDisk" : "Geometry.dll", + "paths" : + { + "build" : "src/Geometry", + "source" : "src/Geometry" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 66 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 67 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/Geometry/Geometry_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/GeoCommon.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/GeoComponent.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/GeometryPy.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryData.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryDatum.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryExporter.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryModelParaBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaBoolOperation.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaBox.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaChamfer.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaCone.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaCylinder.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaExtrusion.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaFace.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaFillet.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaGeoSplitter.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaLine.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaLoft.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaMakeFillGap.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaMakeFillHole.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaMakeMatrix.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaMakeMirror.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaMakeMove.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaMakeRemoveSurface.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaPoint.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaRevol.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaRotateFeature.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaSphere.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaSweep.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometryParaVariableFillet.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometrySet.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Geometry/geometrySketch.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/GeoCommon.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/GeoComponent.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/GeometryPy.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryData.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryDatum.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryExporter.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryModelParaBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaBoolOperation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaBox.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaChamfer.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaCone.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaCylinder.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaExtrusion.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaFace.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaFillet.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaGeoSplitter.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaLine.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaLoft.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaMakeFillGap.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaMakeFillHole.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaMakeMatrix.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaMakeMirror.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaMakeMove.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaMakeRemoveSurface.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaPoint.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaRevol.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaRotateFeature.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaSphere.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaSweep.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometryParaVariableFillet.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometrySet.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Geometry/geometrySketch.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Geometry/Geometry_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Geometry/Geometry_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-GeometryCommand-Debug-e7665f9611eab3eb73e1.json b/out/build/.cmake/api/v1/reply/target-GeometryCommand-Debug-e7665f9611eab3eb73e1.json new file mode 100644 index 0000000..b75cb8e --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-GeometryCommand-Debug-e7665f9611eab3eb73e1.json @@ -0,0 +1,1337 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/GeometryCommand.dll" + }, + { + "path" : "Debug/GeometryCommand.lib" + }, + { + "path" : "Debug/GeometryCommand.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_dependencies", + "add_compile_options", + "target_compile_definitions", + "add_definitions", + "include_directories" + ], + "files" : + [ + "src/GeometryCommand/CMakeLists.txt", + "src/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 29, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 50, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 63, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 85, + "parent" : 6 + }, + { + "command" : 4, + "file" : 2, + "line" : 86, + "parent" : 6 + }, + { + "command" : 5, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "command" : 6, + "file" : 2, + "line" : 118, + "parent" : 6 + }, + { + "command" : 6, + "file" : 2, + "line" : 83, + "parent" : 6 + }, + { + "command" : 7, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 7, + "fragment" : "/utf-8" + }, + { + "backtrace" : 8, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 9, + "define" : "GEOMETRYCOMMAND_API" + }, + { + "define" : "GeometryCommand_EXPORTS" + }, + { + "backtrace" : 10, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 11, + "define" : "UNICODE" + }, + { + "backtrace" : 11, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/GeometryCommand" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/GeometryCommand" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/GeometryCommand/GeometryCommand_autogen/include" + }, + { + "backtrace" : 12, + "path" : "D:/WBFZCPP/source/FastCAE/src/GeometryCommand/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/OCCT/inc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/VTK/include/vtk-9.3" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 1, + 2, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 5, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 5, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 5, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 5, + "id" : "GeometryDataExchange::@d0ecc93579f777564da6" + }, + { + "id" : "GeometryCommand_autogen_timestamp_deps::@d82e5b79e04a3b196df4" + }, + { + "backtrace" : 0, + "id" : "GeometryCommand_autogen::@d82e5b79e04a3b196df4" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "GeometryCommand::@d82e5b79e04a3b196df4", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKFillet.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKIVtk.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKOffset.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingGL2PSOpenGL2-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\GeometryDataExchange.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModuleBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Geometry.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "D:\\vcpkg\\installed\\x64-windows\\debug\\lib\\freetype.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKBO.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKBRep.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKBool.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKG2d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKG3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKGeomAlgo.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKGeomBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKHLR.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKMath.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKMesh.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKPrim.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKService.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKShHealing.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKTopAlgo.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKV3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKernel.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonColor-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersSources-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkInteractionStyle-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingFreeType-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingOpenGL2-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingUI-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingVolume-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingVolumeOpenGL2-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkfreetype-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkglew-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonComputationalGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonDataModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonExecutionModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMisc-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonSystem-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonTransforms-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersExtraction-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeneral-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersStatistics-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOLegacy-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXML-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXMLParser-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingFourier-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelDIY-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkdoubleconversion-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkexpat-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklz4-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklzma-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtksys-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkzlib-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "GeometryCommand", + "nameOnDisk" : "GeometryCommand.dll", + "paths" : + { + "build" : "src/GeometryCommand", + "source" : "src/GeometryCommand" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 92, + 93, + 94 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 95 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryCommand/GeometryCommand_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryCommand/qrc_qianfan.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryCommand/qrc_translations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandBool.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandCommon.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandCreateBox.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandCreateBoxComplex.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandCreateChamfer.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandCreateComponent.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandCreateCone.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandCreateCylinder.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandCreateCylindricalComplex.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandCreateDatumplane.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandCreateFace.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandCreateFillet.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandCreateLine.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandCreatePoint.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandCreateSphere.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandCreateVariableFillet.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandFillGap.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandGeoSplitter.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandImport.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandList.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandMakeExtrusion.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandMakeFillHole.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandMakeLoft.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandMakeMatrix.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandMakeRemoveSurface.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandMakeRevol.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandMakeSweep.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandMirrorFeature.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandMoveFeature.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandPy.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandRemove.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandRemoveDatum.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandRotateFeature.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandSketchArc.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandSketchBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandSketchCircle.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandSketchComplete.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandSketchLine.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandSketchPolyline.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandSketchRect.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoCommandSketchSpline.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/GeoSketchCreater.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/ModelRefine.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryCommand/geometryCommandAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandBool.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandCommon.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandCreateBox.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandCreateBoxComplex.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandCreateChamfer.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandCreateComponent.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandCreateCone.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandCreateCylinder.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandCreateCylindricalComplex.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandCreateDatumplane.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandCreateFace.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandCreateFillet.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandCreateLine.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandCreatePoint.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandCreateSphere.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandCreateVariableFillet.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandFillGap.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandGeoSplitter.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandImport.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandList.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandMakeExtrusion.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandMakeFillHole.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandMakeLoft.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandMakeMatrix.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandMakeRemoveSurface.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandMakeRevol.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandMakeSweep.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandMirrorFeature.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandMoveFeature.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandPy.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandRemove.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandRemoveDatum.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandRotateFeature.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandSketchArc.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandSketchBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandSketchCircle.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandSketchComplete.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandSketchLine.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandSketchPolyline.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandSketchRect.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoCommandSketchSpline.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/GeoSketchCreater.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryCommand/ModelRefine.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryCommand/GeometryCommand_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/qianfan.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/translations.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryCommand/GeometryCommand_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-GeometryCommand_autogen-Debug-56d273cbf7900b09f3d3.json b/out/build/.cmake/api/v1/reply/target-GeometryCommand_autogen-Debug-56d273cbf7900b09f3d3.json new file mode 100644 index 0000000..4808ed0 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-GeometryCommand_autogen-Debug-56d273cbf7900b09f3d3.json @@ -0,0 +1,91 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/GeometryCommand/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 0, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 0, + "id" : "GeometryDataExchange::@d0ecc93579f777564da6" + }, + { + "id" : "GeometryCommand_autogen_timestamp_deps::@d82e5b79e04a3b196df4" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "GeometryCommand_autogen::@d82e5b79e04a3b196df4", + "isGeneratorProvided" : true, + "name" : "GeometryCommand_autogen", + "paths" : + { + "build" : "src/GeometryCommand", + "source" : "src/GeometryCommand" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryCommand/CMakeFiles/GeometryCommand_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryCommand/CMakeFiles/GeometryCommand_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryCommand/GeometryCommand_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-GeometryCommand_autogen_timestamp_deps-Debug-e53ab7fdc37f75042932.json b/out/build/.cmake/api/v1/reply/target-GeometryCommand_autogen_timestamp_deps-Debug-e53ab7fdc37f75042932.json new file mode 100644 index 0000000..4e11993 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-GeometryCommand_autogen_timestamp_deps-Debug-e53ab7fdc37f75042932.json @@ -0,0 +1,77 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/GeometryCommand/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "id" : "GeometryDataExchange::@d0ecc93579f777564da6" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "GeometryCommand_autogen_timestamp_deps::@d82e5b79e04a3b196df4", + "isGeneratorProvided" : true, + "name" : "GeometryCommand_autogen_timestamp_deps", + "paths" : + { + "build" : "src/GeometryCommand", + "source" : "src/GeometryCommand" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryCommand/CMakeFiles/GeometryCommand_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryCommand/CMakeFiles/GeometryCommand_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-GeometryDataExchange-Debug-5d6ea264b5937e2f23f0.json b/out/build/.cmake/api/v1/reply/target-GeometryDataExchange-Debug-5d6ea264b5937e2f23f0.json new file mode 100644 index 0000000..81a66e1 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-GeometryDataExchange-Debug-5d6ea264b5937e2f23f0.json @@ -0,0 +1,817 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/GeometryDataExchange.dll" + }, + { + "path" : "Debug/GeometryDataExchange.lib" + }, + { + "path" : "Debug/GeometryDataExchange.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "set_property", + "_populate_Widgets_target_properties", + "find_package", + "add_dependencies", + "add_compile_options", + "target_compile_definitions", + "add_definitions", + "include_directories" + ], + "files" : + [ + "src/GeometryDataExchange/CMakeLists.txt", + "src/CMakeLists.txt", + "src/PythonModule/CMakeLists.txt", + "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake", + "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5/Qt5Config.cmake", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 20, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 2, + "file" : 2, + "line" : 44, + "parent" : 5 + }, + { + "file" : 5 + }, + { + "command" : 5, + "file" : 5, + "line" : 142, + "parent" : 7 + }, + { + "file" : 4, + "parent" : 8 + }, + { + "command" : 5, + "file" : 4, + "line" : 28, + "parent" : 9 + }, + { + "file" : 3, + "parent" : 10 + }, + { + "command" : 4, + "file" : 3, + "line" : 207, + "parent" : 11 + }, + { + "command" : 3, + "file" : 3, + "line" : 44, + "parent" : 12 + }, + { + "command" : 6, + "file" : 0, + "line" : 47, + "parent" : 0 + }, + { + "command" : 7, + "file" : 5, + "line" : 85, + "parent" : 7 + }, + { + "command" : 7, + "file" : 5, + "line" : 86, + "parent" : 7 + }, + { + "command" : 8, + "file" : 0, + "line" : 28, + "parent" : 0 + }, + { + "command" : 9, + "file" : 5, + "line" : 118, + "parent" : 7 + }, + { + "command" : 9, + "file" : 5, + "line" : 83, + "parent" : 7 + }, + { + "command" : 10, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 15, + "fragment" : "/utf-8" + }, + { + "backtrace" : 16, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 17, + "define" : "GEOMETRYDATAEXCHANGE_API" + }, + { + "define" : "GeometryDataExchange_EXPORTS" + }, + { + "backtrace" : 18, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 19, + "define" : "UNICODE" + }, + { + "backtrace" : 19, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/GeometryDataExchange" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/GeometryDataExchange" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/GeometryDataExchange/GeometryDataExchange_autogen/include" + }, + { + "backtrace" : 20, + "path" : "D:/WBFZCPP/source/FastCAE/src/GeometryDataExchange/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/OCCT/inc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/VTK/include/vtk-9.3" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 7, + 8, + 9, + 10, + 11 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 14, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 14, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 14, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 14, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 14, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "id" : "GeometryDataExchange_autogen_timestamp_deps::@d0ecc93579f777564da6" + }, + { + "backtrace" : 0, + "id" : "GeometryDataExchange_autogen::@d0ecc93579f777564da6" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "GeometryDataExchange::@d0ecc93579f777564da6", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModuleBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Geometry.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKBO.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKBRep.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKBool.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKG2d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKG3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKGeomAlgo.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKGeomBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKIGES.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKMath.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKPrim.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKSTEP.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKSTEP209.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKSTEPAttr.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKSTEPBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKShHealing.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKTopAlgo.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKXSBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKernel.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonColor-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersSources-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkInteractionStyle-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingFreeType-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingOpenGL2-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingUI-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingVolume-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingVolumeOpenGL2-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkfreetype-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkglew-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonComputationalGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonDataModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonExecutionModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMisc-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonSystem-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonTransforms-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersExtraction-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeneral-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersStatistics-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOLegacy-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXML-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXMLParser-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingFourier-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelDIY-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkdoubleconversion-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkexpat-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklz4-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklzma-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtksys-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkzlib-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PythonModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\Python\\libs\\python37.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 13, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 13, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "GeometryDataExchange", + "nameOnDisk" : "GeometryDataExchange.dll", + "paths" : + { + "build" : "src/GeometryDataExchange", + "source" : "src/GeometryDataExchange" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 7, + 8, + 9, + 10, + 11 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5, + 6 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 12 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 13 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryDataExchange/GeometryDataExchange_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "src/GeometryDataExchange/BREPdataExchange.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryDataExchange/GeometryDataExchangeAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryDataExchange/GeometryThreadBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryDataExchange/IGESdataExchange.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryDataExchange/STEPdataExchange.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryDataExchange/STLdataExchange.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryDataExchange/BREPdataExchange.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryDataExchange/GeometryThreadBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryDataExchange/IGESdataExchange.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryDataExchange/STEPdataExchange.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryDataExchange/STLdataExchange.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryDataExchange/GeometryDataExchange_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryDataExchange/GeometryDataExchange_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-GeometryDataExchange_autogen-Debug-6c7fe286560717d76526.json b/out/build/.cmake/api/v1/reply/target-GeometryDataExchange_autogen-Debug-6c7fe286560717d76526.json new file mode 100644 index 0000000..28146c7 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-GeometryDataExchange_autogen-Debug-6c7fe286560717d76526.json @@ -0,0 +1,95 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/GeometryDataExchange/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 0, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 0, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "id" : "GeometryDataExchange_autogen_timestamp_deps::@d0ecc93579f777564da6" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "GeometryDataExchange_autogen::@d0ecc93579f777564da6", + "isGeneratorProvided" : true, + "name" : "GeometryDataExchange_autogen", + "paths" : + { + "build" : "src/GeometryDataExchange", + "source" : "src/GeometryDataExchange" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryDataExchange/CMakeFiles/GeometryDataExchange_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryDataExchange/CMakeFiles/GeometryDataExchange_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryDataExchange/GeometryDataExchange_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-GeometryDataExchange_autogen_timestamp_deps-Debug-855d220c825b8f9cfc35.json b/out/build/.cmake/api/v1/reply/target-GeometryDataExchange_autogen_timestamp_deps-Debug-855d220c825b8f9cfc35.json new file mode 100644 index 0000000..a9aaade --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-GeometryDataExchange_autogen_timestamp_deps-Debug-855d220c825b8f9cfc35.json @@ -0,0 +1,80 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/GeometryDataExchange/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "GeometryDataExchange_autogen_timestamp_deps::@d0ecc93579f777564da6", + "isGeneratorProvided" : true, + "name" : "GeometryDataExchange_autogen_timestamp_deps", + "paths" : + { + "build" : "src/GeometryDataExchange", + "source" : "src/GeometryDataExchange" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryDataExchange/CMakeFiles/GeometryDataExchange_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryDataExchange/CMakeFiles/GeometryDataExchange_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-GeometryWidgets-Debug-6c94b9a64d9f27143666.json b/out/build/.cmake/api/v1/reply/target-GeometryWidgets-Debug-6c94b9a64d9f27143666.json new file mode 100644 index 0000000..09d4b4b --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-GeometryWidgets-Debug-6c94b9a64d9f27143666.json @@ -0,0 +1,1565 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/GeometryWidgets.dll" + }, + { + "path" : "Debug/GeometryWidgets.lib" + }, + { + "path" : "Debug/GeometryWidgets.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_dependencies", + "add_compile_options", + "target_compile_definitions", + "add_definitions", + "include_directories" + ], + "files" : + [ + "src/GeometryWidgets/CMakeLists.txt", + "src/CMakeLists.txt", + "src/PythonModule/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 29, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 50, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 2, + "file" : 2, + "line" : 44, + "parent" : 5 + }, + { + "command" : 3, + "file" : 0, + "line" : 58, + "parent" : 0 + }, + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 85, + "parent" : 8 + }, + { + "command" : 4, + "file" : 3, + "line" : 86, + "parent" : 8 + }, + { + "command" : 5, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "command" : 6, + "file" : 3, + "line" : 118, + "parent" : 8 + }, + { + "command" : 6, + "file" : 3, + "line" : 83, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 9, + "fragment" : "/utf-8" + }, + { + "backtrace" : 10, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 11, + "define" : "GEOMETRYWIDGETS_API" + }, + { + "define" : "GeometryWidgets_EXPORTS" + }, + { + "backtrace" : 12, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 13, + "define" : "UNICODE" + }, + { + "backtrace" : 13, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/GeometryWidgets" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/GeometryWidgets" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/GeometryWidgets/GeometryWidgets_autogen/include" + }, + { + "backtrace" : 14, + "path" : "D:/WBFZCPP/source/FastCAE/src/GeometryWidgets/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/OCCT/inc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/VTK/include/vtk-9.3" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 1, + 2, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 7, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 7, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 7, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 7, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 7, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 7, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 7, + "id" : "GeometryCommand::@d82e5b79e04a3b196df4" + }, + { + "id" : "GeometryWidgets_autogen_timestamp_deps::@1fb7ae1802a587d65603" + }, + { + "backtrace" : 0, + "id" : "GeometryWidgets_autogen::@1fb7ae1802a587d65603" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "GeometryWidgets::@1fb7ae1802a587d65603", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\GeometryCommand.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModuleBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Geometry.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKBO.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKBRep.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKG2d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKG3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKGeomAlgo.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKGeomBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKMath.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKPrim.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKShHealing.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKTopAlgo.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKernel.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonColor-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersSources-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkInteractionStyle-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingFreeType-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingOpenGL2-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingUI-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingVolume-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingVolumeOpenGL2-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkfreetype-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkglew-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonComputationalGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonDataModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonExecutionModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMisc-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonSystem-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonTransforms-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersExtraction-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeneral-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersStatistics-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOLegacy-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXML-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXMLParser-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingFourier-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelDIY-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkdoubleconversion-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkexpat-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklz4-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklzma-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtksys-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkzlib-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\SelfDefObject.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Settings.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PythonModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\Python\\libs\\python37.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "GeometryWidgets", + "nameOnDisk" : "GeometryWidgets.dll", + "paths" : + { + "build" : "src/GeometryWidgets", + "source" : "src/GeometryWidgets" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 131 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/GeometryWidgets_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/qrc_qianfan.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/qrc_translations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_SketchPointWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogBoolOperation.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogCreateBox.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogCreateBoxComplex.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogCreateCone.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogCreateCylinder.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogCreateCylindricalComplex.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogCreateDatumplane.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogCreateFace.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogCreateLine.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogCreatePoint.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogCreateSphere.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogGeoSplitter.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogMakeChamfer.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogMakeExtrusion.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogMakeFillGap.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogMakeFillHole.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogMakeFillet.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogMakeLoft.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogMakeMatrix.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogMakeRemoveSurface.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogMakeRevol.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogMakeSweep.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogMeasureDistance.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogMirrorFeature.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogMoveFeature.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogRotateFeature.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogSketchPlane.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_dialogVariableFillet.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/ui_geoPointWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/SketchPointWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogBoolOperation.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogCreateBox.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogCreateBoxComplex.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogCreateCone.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogCreateCylinder.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogCreateCylindricalComplex.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogCreateDatumplane.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogCreateFace.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogCreateLine.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogCreatePoint.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogCreateSphere.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogGeoSplitter.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogMakeChamfer.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogMakeExtrusion.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogMakeFillGap.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogMakeFillHole.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogMakeFillet.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogMakeLoft.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogMakeMatrix.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogMakeRemoveSurface.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogMakeRevol.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogMakeSweep.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogMeasureDistance.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogMirrorFeature.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogMoveFeature.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogRotateFeature.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogSketchPlane.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/dialogVariableFillet.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/geoDialogBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/geoPointWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/geometryDialogFactory.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GeometryWidgets/geometryWidgetsAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/SketchPointWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogBoolOperation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogCreateBox.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogCreateBoxComplex.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogCreateCone.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogCreateCylinder.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogCreateCylindricalComplex.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogCreateDatumplane.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogCreateFace.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogCreateLine.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogCreatePoint.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogCreateSphere.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogGeoSplitter.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogMakeChamfer.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogMakeExtrusion.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogMakeFillGap.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogMakeFillHole.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogMakeFillet.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogMakeLoft.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogMakeMatrix.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogMakeRemoveSurface.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogMakeRevol.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogMakeSweep.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogMeasureDistance.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogMirrorFeature.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogMoveFeature.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogRotateFeature.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogSketchPlane.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/dialogVariableFillet.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/geoDialogBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/geoPointWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GeometryWidgets/geometryDialogFactory.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/GeometryWidgets_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/qianfan.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/translations.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/SketchPointWidget.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogBoolOperation.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogCreateBox.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogCreateBoxComplex.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogCreateCone.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogCreateCylinder.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogCreateCylindricalComplex.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogCreateDatumplane.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogCreateFace.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogCreateLine.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogCreatePoint.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogCreateSphere.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogGeoSplitter.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogMakeChamfer.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogMakeExtrusion.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogMakeFillGap.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogMakeFillHole.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogMakeFillet.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogMakeLoft.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogMakeMatrix.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogMakeRemoveSurface.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogMakeRevol.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogMakeSweep.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogMeasureDistance.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogMirrorFeature.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogMoveFeature.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogRotateFeature.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogSketchPlane.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/dialogVariableFillet.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GeometryWidgets/geoPointWidget.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/GeometryWidgets_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-GeometryWidgets_autogen-Debug-393a3fe609df268019d7.json b/out/build/.cmake/api/v1/reply/target-GeometryWidgets_autogen-Debug-393a3fe609df268019d7.json new file mode 100644 index 0000000..5803218 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-GeometryWidgets_autogen-Debug-393a3fe609df268019d7.json @@ -0,0 +1,103 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/GeometryWidgets/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 0, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 0, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 0, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 0, + "id" : "GeometryCommand::@d82e5b79e04a3b196df4" + }, + { + "id" : "GeometryWidgets_autogen_timestamp_deps::@1fb7ae1802a587d65603" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "GeometryWidgets_autogen::@1fb7ae1802a587d65603", + "isGeneratorProvided" : true, + "name" : "GeometryWidgets_autogen", + "paths" : + { + "build" : "src/GeometryWidgets", + "source" : "src/GeometryWidgets" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/CMakeFiles/GeometryWidgets_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/CMakeFiles/GeometryWidgets_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/GeometryWidgets_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-GeometryWidgets_autogen_timestamp_deps-Debug-241de3747242e8545ef0.json b/out/build/.cmake/api/v1/reply/target-GeometryWidgets_autogen_timestamp_deps-Debug-241de3747242e8545ef0.json new file mode 100644 index 0000000..294fc18 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-GeometryWidgets_autogen_timestamp_deps-Debug-241de3747242e8545ef0.json @@ -0,0 +1,86 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/GeometryWidgets/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "id" : "GeometryCommand::@d82e5b79e04a3b196df4" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "GeometryWidgets_autogen_timestamp_deps::@1fb7ae1802a587d65603", + "isGeneratorProvided" : true, + "name" : "GeometryWidgets_autogen_timestamp_deps", + "paths" : + { + "build" : "src/GeometryWidgets", + "source" : "src/GeometryWidgets" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/CMakeFiles/GeometryWidgets_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GeometryWidgets/CMakeFiles/GeometryWidgets_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-Geometry_autogen-Debug-9c4188e39387e0abef81.json b/out/build/.cmake/api/v1/reply/target-Geometry_autogen-Debug-9c4188e39387e0abef81.json new file mode 100644 index 0000000..4d5a6f0 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-Geometry_autogen-Debug-9c4188e39387e0abef81.json @@ -0,0 +1,79 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/Geometry/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "Geometry_autogen_timestamp_deps::@b7b2e4191bc961e9afba" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "Geometry_autogen::@b7b2e4191bc961e9afba", + "isGeneratorProvided" : true, + "name" : "Geometry_autogen", + "paths" : + { + "build" : "src/Geometry", + "source" : "src/Geometry" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Geometry/CMakeFiles/Geometry_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Geometry/CMakeFiles/Geometry_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Geometry/Geometry_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-Geometry_autogen_timestamp_deps-Debug-99c4d4fa63338ef30171.json b/out/build/.cmake/api/v1/reply/target-Geometry_autogen_timestamp_deps-Debug-99c4d4fa63338ef30171.json new file mode 100644 index 0000000..eb5d347 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-Geometry_autogen_timestamp_deps-Debug-99c4d4fa63338ef30171.json @@ -0,0 +1,68 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/Geometry/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "DataProperty::@ec84555ffa827036bc26" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "Geometry_autogen_timestamp_deps::@b7b2e4191bc961e9afba", + "isGeneratorProvided" : true, + "name" : "Geometry_autogen_timestamp_deps", + "paths" : + { + "build" : "src/Geometry", + "source" : "src/Geometry" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Geometry/CMakeFiles/Geometry_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Geometry/CMakeFiles/Geometry_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-GmshModule-Debug-5e78905b6525182a5524.json b/out/build/.cmake/api/v1/reply/target-GmshModule-Debug-5e78905b6525182a5524.json new file mode 100644 index 0000000..145de0f --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-GmshModule-Debug-5e78905b6525182a5524.json @@ -0,0 +1,998 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/GmshModule.dll" + }, + { + "path" : "Debug/GmshModule.lib" + }, + { + "path" : "Debug/GmshModule.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_dependencies", + "add_compile_options", + "target_compile_definitions", + "add_definitions", + "include_directories" + ], + "files" : + [ + "src/GmshModule/CMakeLists.txt", + "src/CMakeLists.txt", + "src/PythonModule/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 29, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 49, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 2, + "file" : 2, + "line" : 44, + "parent" : 5 + }, + { + "command" : 3, + "file" : 0, + "line" : 57, + "parent" : 0 + }, + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 85, + "parent" : 8 + }, + { + "command" : 4, + "file" : 3, + "line" : 86, + "parent" : 8 + }, + { + "command" : 5, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "command" : 6, + "file" : 3, + "line" : 118, + "parent" : 8 + }, + { + "command" : 6, + "file" : 3, + "line" : 83, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 9, + "fragment" : "/utf-8" + }, + { + "backtrace" : 10, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 11, + "define" : "GMSH_API" + }, + { + "define" : "GmshModule_EXPORTS" + }, + { + "backtrace" : 12, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_XML_LIB" + }, + { + "backtrace" : 13, + "define" : "UNICODE" + }, + { + "backtrace" : 13, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/GmshModule" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/GmshModule" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/GmshModule/GmshModule_autogen/include" + }, + { + "backtrace" : 14, + "path" : "D:/WBFZCPP/source/FastCAE/src/GmshModule/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/OCCT/inc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtXml" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/VTK/include/vtk-9.3" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 1, + 2, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 7, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 7, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 7, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 7, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 7, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 7, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 7, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 7, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 7, + "id" : "GeometryWidgets::@1fb7ae1802a587d65603" + }, + { + "id" : "GmshModule_autogen_timestamp_deps::@044d5c74ec3efe84c474" + }, + { + "backtrace" : 0, + "id" : "GmshModule_autogen::@044d5c74ec3efe84c474" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "GmshModule::@044d5c74ec3efe84c474", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\GeometryWidgets.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModuleBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Geometry.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKBO.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKBRep.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKG2d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKG3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKGeomAlgo.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKGeomBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKMath.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKPrim.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKShHealing.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKTopAlgo.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKernel.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonColor-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersSources-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkInteractionStyle-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingFreeType-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingOpenGL2-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingUI-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingVolume-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingVolumeOpenGL2-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkfreetype-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkglew-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\MeshData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonComputationalGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonDataModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonExecutionModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMisc-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonSystem-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonTransforms-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersExtraction-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeneral-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersStatistics-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOLegacy-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXML-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXMLParser-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingFourier-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelDIY-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkdoubleconversion-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkexpat-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklz4-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklzma-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtksys-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkzlib-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\SelfDefObject.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Settings.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Xmld.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PythonModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\Python\\libs\\python37.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "GmshModule", + "nameOnDisk" : "GmshModule.dll", + "paths" : + { + "build" : "src/GmshModule", + "source" : "src/GmshModule" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 36, + 37, + 38, + 39, + 40, + 41, + 42 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 43 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/GmshModule/GmshModule_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/GmshModule/qrc_qianfan.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/GmshModule/qrc_translations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GmshModule/ui_DialogFluidMesh.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GmshModule/ui_DialogLocalSetting.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GmshModule/ui_DialogSolidMesh.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/GmshModule/ui_DialogSurfaceMesh.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GmshModule/DialogFluidMesh.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GmshModule/DialogLocalSetting.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GmshModule/DialogSolidMesh.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GmshModule/DialogSurfaceMesh.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GmshModule/FluidMeshPreProcess.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GmshModule/GmshDialogBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GmshModule/GmshModule.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GmshModule/GmshModuleAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GmshModule/GmshPy.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GmshModule/GmshScriptWriter.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GmshModule/GmshSettingData.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GmshModule/GmshThread.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GmshModule/GmshThreadManager.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GmshModule/LocalField.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/GmshModule/MeshReader.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GmshModule/DialogFluidMesh.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GmshModule/DialogLocalSetting.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GmshModule/DialogSolidMesh.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GmshModule/DialogSurfaceMesh.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GmshModule/FluidMeshPreProcess.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GmshModule/GmshDialogBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GmshModule/GmshModule.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GmshModule/GmshPy.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GmshModule/GmshScriptWriter.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GmshModule/GmshSettingData.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GmshModule/GmshThread.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GmshModule/GmshThreadManager.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GmshModule/LocalField.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/GmshModule/MeshReader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GmshModule/GmshModule_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/qianfan.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/translations.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GmshModule/DialogFluidMesh.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GmshModule/DialogLocalSetting.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GmshModule/DialogSolidMesh.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/GmshModule/DialogSurfaceMesh.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GmshModule/GmshModule_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-GmshModule_autogen-Debug-509ee9ef7a5ae4da2083.json b/out/build/.cmake/api/v1/reply/target-GmshModule_autogen-Debug-509ee9ef7a5ae4da2083.json new file mode 100644 index 0000000..2476fa4 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-GmshModule_autogen-Debug-509ee9ef7a5ae4da2083.json @@ -0,0 +1,111 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/GmshModule/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 0, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 0, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 0, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 0, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 0, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 0, + "id" : "GeometryWidgets::@1fb7ae1802a587d65603" + }, + { + "id" : "GmshModule_autogen_timestamp_deps::@044d5c74ec3efe84c474" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "GmshModule_autogen::@044d5c74ec3efe84c474", + "isGeneratorProvided" : true, + "name" : "GmshModule_autogen", + "paths" : + { + "build" : "src/GmshModule", + "source" : "src/GmshModule" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GmshModule/CMakeFiles/GmshModule_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GmshModule/CMakeFiles/GmshModule_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GmshModule/GmshModule_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-GmshModule_autogen_timestamp_deps-Debug-6afa7032252f83243033.json b/out/build/.cmake/api/v1/reply/target-GmshModule_autogen_timestamp_deps-Debug-6afa7032252f83243033.json new file mode 100644 index 0000000..b230684 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-GmshModule_autogen_timestamp_deps-Debug-6afa7032252f83243033.json @@ -0,0 +1,92 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/GmshModule/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "id" : "GeometryWidgets::@1fb7ae1802a587d65603" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "GmshModule_autogen_timestamp_deps::@044d5c74ec3efe84c474", + "isGeneratorProvided" : true, + "name" : "GmshModule_autogen_timestamp_deps", + "paths" : + { + "build" : "src/GmshModule", + "source" : "src/GmshModule" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GmshModule/CMakeFiles/GmshModule_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/GmshModule/CMakeFiles/GmshModule_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-IO-Debug-f80106a685279877c218.json b/out/build/.cmake/api/v1/reply/target-IO-Debug-f80106a685279877c218.json new file mode 100644 index 0000000..dc3eab7 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-IO-Debug-f80106a685279877c218.json @@ -0,0 +1,788 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/IO.dll" + }, + { + "path" : "Debug/IO.lib" + }, + { + "path" : "Debug/IO.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "set_property", + "_populate_Widgets_target_properties", + "find_package", + "add_dependencies", + "add_compile_options", + "target_compile_definitions", + "add_definitions", + "include_directories" + ], + "files" : + [ + "src/IO/CMakeLists.txt", + "src/CMakeLists.txt", + "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake", + "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5/Qt5Config.cmake", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 20, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "file" : 4 + }, + { + "command" : 5, + "file" : 4, + "line" : 142, + "parent" : 5 + }, + { + "file" : 3, + "parent" : 6 + }, + { + "command" : 5, + "file" : 3, + "line" : 28, + "parent" : 7 + }, + { + "file" : 2, + "parent" : 8 + }, + { + "command" : 4, + "file" : 2, + "line" : 207, + "parent" : 9 + }, + { + "command" : 3, + "file" : 2, + "line" : 44, + "parent" : 10 + }, + { + "command" : 6, + "file" : 0, + "line" : 47, + "parent" : 0 + }, + { + "command" : 7, + "file" : 4, + "line" : 85, + "parent" : 5 + }, + { + "command" : 7, + "file" : 4, + "line" : 86, + "parent" : 5 + }, + { + "command" : 8, + "file" : 0, + "line" : 28, + "parent" : 0 + }, + { + "command" : 9, + "file" : 4, + "line" : 118, + "parent" : 5 + }, + { + "command" : 9, + "file" : 4, + "line" : 83, + "parent" : 5 + }, + { + "command" : 10, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 13, + "fragment" : "/utf-8" + }, + { + "backtrace" : 14, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 15, + "define" : "IO_API" + }, + { + "define" : "IO_EXPORTS" + }, + { + "backtrace" : 16, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_XML_LIB" + }, + { + "backtrace" : 17, + "define" : "UNICODE" + }, + { + "backtrace" : 17, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/IO" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/IO" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/IO/IO_autogen/include" + }, + { + "backtrace" : 18, + "path" : "D:/WBFZCPP/source/FastCAE/src/IO/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/QuaZIP/include/quazip5" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/OCCT/inc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtXml" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/VTK/include/vtk-9.3" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 12, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 12, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 12, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 12, + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "backtrace" : 12, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 12, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 12, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 12, + "id" : "GmshModule::@044d5c74ec3efe84c474" + }, + { + "backtrace" : 12, + "id" : "PluginManager::@d6a357cdda12b0c888b1" + }, + { + "backtrace" : 0, + "id" : "IO_autogen::@484b42e69e32e953bc79" + }, + { + "id" : "IO_autogen_timestamp_deps::@484b42e69e32e953bc79" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "IO::@484b42e69e32e953bc79", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\QuaZIP\\lib\\quazip5d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PluginManager.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\GmshModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModuleBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModelData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Material.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Geometry.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKBRep.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKG2d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKG3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKGeomBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKMath.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKernel.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\MeshData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonComputationalGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonDataModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonExecutionModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMisc-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonSystem-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonTransforms-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersExtraction-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeneral-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersStatistics-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOLegacy-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXML-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXMLParser-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingFourier-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelDIY-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkdoubleconversion-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkexpat-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklz4-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklzma-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtksys-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkzlib-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Settings.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Xmld.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 11, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "IO", + "nameOnDisk" : "IO.dll", + "paths" : + { + "build" : "src/IO", + "source" : "src/IO" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 20 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 21 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/IO/IO_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "src/IO/GenerateMesh.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/IO/IOAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/IO/IOConfig.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/IO/ProjectFileIO.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/IO/ProjectTemplete.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/IO/SolverIO.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/IO/SolverInfoWriter.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/IO/TemplateReplacer.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/IO/TemplateWriter.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/IO/vtkDataRelated.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/IO/GenerateMesh.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/IO/IOConfig.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/IO/ProjectFileIO.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/IO/ProjectTemplete.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/IO/SolverIO.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/IO/SolverInfoWriter.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/IO/TemplateReplacer.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/IO/TemplateWriter.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/IO/vtkDataRelated.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/IO/IO_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/IO/IO_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-IO_autogen-Debug-22c115c696c207a789e7.json b/out/build/.cmake/api/v1/reply/target-IO_autogen-Debug-22c115c696c207a789e7.json new file mode 100644 index 0000000..c763b31 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-IO_autogen-Debug-22c115c696c207a789e7.json @@ -0,0 +1,111 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/IO/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 0, + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "backtrace" : 0, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 0, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 0, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 0, + "id" : "GmshModule::@044d5c74ec3efe84c474" + }, + { + "backtrace" : 0, + "id" : "PluginManager::@d6a357cdda12b0c888b1" + }, + { + "id" : "IO_autogen_timestamp_deps::@484b42e69e32e953bc79" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "IO_autogen::@484b42e69e32e953bc79", + "isGeneratorProvided" : true, + "name" : "IO_autogen", + "paths" : + { + "build" : "src/IO", + "source" : "src/IO" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/IO/CMakeFiles/IO_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/IO/CMakeFiles/IO_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/IO/IO_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-IO_autogen_timestamp_deps-Debug-d6711c1a2e45884b1c54.json b/out/build/.cmake/api/v1/reply/target-IO_autogen_timestamp_deps-Debug-d6711c1a2e45884b1c54.json new file mode 100644 index 0000000..eeb792d --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-IO_autogen_timestamp_deps-Debug-d6711c1a2e45884b1c54.json @@ -0,0 +1,92 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/IO/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "id" : "GmshModule::@044d5c74ec3efe84c474" + }, + { + "id" : "PluginManager::@d6a357cdda12b0c888b1" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "IO_autogen_timestamp_deps::@484b42e69e32e953bc79", + "isGeneratorProvided" : true, + "name" : "IO_autogen_timestamp_deps", + "paths" : + { + "build" : "src/IO", + "source" : "src/IO" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/IO/CMakeFiles/IO_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/IO/CMakeFiles/IO_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-LAMPCAE-Debug-928c22974a3b8f666c79.json b/out/build/.cmake/api/v1/reply/target-LAMPCAE-Debug-928c22974a3b8f666c79.json new file mode 100644 index 0000000..3133601 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-LAMPCAE-Debug-928c22974a3b8f666c79.json @@ -0,0 +1,735 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/LAMPCAE.exe" + }, + { + "path" : "Debug/LAMPCAE.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_executable", + "install", + "target_link_libraries", + "add_dependencies", + "add_compile_options", + "add_definitions", + "include_directories" + ], + "files" : + [ + "src/LAMPCAE/CMakeLists.txt", + "src/CMakeLists.txt", + "src/PythonModule/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 20, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 46, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 2, + "file" : 2, + "line" : 44, + "parent" : 5 + }, + { + "command" : 3, + "file" : 0, + "line" : 54, + "parent" : 0 + }, + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 85, + "parent" : 8 + }, + { + "command" : 4, + "file" : 3, + "line" : 86, + "parent" : 8 + }, + { + "command" : 5, + "file" : 3, + "line" : 118, + "parent" : 8 + }, + { + "command" : 5, + "file" : 3, + "line" : 83, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 9, + "fragment" : "/utf-8" + }, + { + "backtrace" : 10, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 4, + "define" : "H5_BUILT_AS_DYNAMIC_LIB" + }, + { + "backtrace" : 11, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 12, + "define" : "UNICODE" + }, + { + "backtrace" : 12, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/LAMPCAE" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/LAMPCAE" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/LAMPCAE/LAMPCAE_autogen/include" + }, + { + "backtrace" : 13, + "path" : "D:/WBFZCPP/source/FastCAE/src/LAMPCAE/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/HDF5/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 4, + 5, + 6 + ] + }, + { + "compileCommandFragments" : + [ + { + "fragment" : "-DWIN32 -D_DEBUG" + } + ], + "defines" : + [ + { + "backtrace" : 4, + "define" : "H5_BUILT_AS_DYNAMIC_LIB" + }, + { + "backtrace" : 11, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 12, + "define" : "UNICODE" + }, + { + "backtrace" : 12, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/LAMPCAE" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/LAMPCAE" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/LAMPCAE/LAMPCAE_autogen/include" + }, + { + "backtrace" : 13, + "path" : "D:/WBFZCPP/source/FastCAE/src/LAMPCAE/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/HDF5/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "RC", + "sourceIndexes" : + [ + 7 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 7, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 7, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 7, + "id" : "SARibbonBar::@f61b241723ced025d0ef" + }, + { + "backtrace" : 7, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 7, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 7, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 7, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 7, + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "backtrace" : 7, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 7, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 7, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 7, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 7, + "id" : "PostWidgets::@93a5592897f957e6fa57" + }, + { + "backtrace" : 7, + "id" : "PostInterface::@38fb729d68510c1489c9" + }, + { + "backtrace" : 7, + "id" : "GeometryCommand::@d82e5b79e04a3b196df4" + }, + { + "backtrace" : 7, + "id" : "ProjectTree::@43c6c7ebae2b88a99cdb" + }, + { + "backtrace" : 7, + "id" : "SolverControl::@4a18b637ce8bf6991ec0" + }, + { + "backtrace" : 7, + "id" : "MainWidgets::@d0895ea365458bd7f948" + }, + { + "backtrace" : 7, + "id" : "UserGuidence::@40175f0e8ac13e21fe7c" + }, + { + "backtrace" : 7, + "id" : "IO::@484b42e69e32e953bc79" + }, + { + "backtrace" : 7, + "id" : "MainWindow::@c380e645ecc921453605" + }, + { + "backtrace" : 7, + "id" : "GmshModule::@044d5c74ec3efe84c474" + }, + { + "backtrace" : 7, + "id" : "PluginManager::@d6a357cdda12b0c888b1" + }, + { + "backtrace" : 7, + "id" : "GeometryWidgets::@1fb7ae1802a587d65603" + }, + { + "id" : "LAMPCAE_autogen_timestamp_deps::@1d4d21e91c20b8980f28" + }, + { + "backtrace" : 0, + "id" : "LAMPCAE_autogen::@1d4d21e91c20b8980f28" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "LAMPCAE::@1d4d21e91c20b8980f28", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + }, + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd", + "role" : "flags" + }, + { + "fragment" : "/machine:x64 /debug /INCREMENTAL /subsystem:console", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\MainWindow.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\SARibbonBar.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\MainWidgets.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\SolverControl.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\IO.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PluginManager.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\GmshModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\GeometryWidgets.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\GeometryCommand.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ProjectTree.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PostWidgets.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModuleBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModelData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PostInterface.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ConfigOptions.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Material.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\SelfDefObject.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\MeshData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Geometry.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\UserGuidence.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PythonModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\Python\\libs\\python37.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Settings.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\HDF5\\lib\\hdf5_cpp.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\HDF5\\lib\\hdf5.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "LAMPCAE", + "nameOnDisk" : "LAMPCAE.exe", + "paths" : + { + "build" : "src/LAMPCAE", + "source" : "src/LAMPCAE" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 4, + 5, + 6, + 7 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 2, + 3 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 8 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 9 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/LAMPCAE/LAMPCAE_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "src/LAMPCAE/CommandLine.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/LAMPCAE/LAMPCAEVersionMacros.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/LAMPCAE/XBeautyUI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/LAMPCAE/CommandLine.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/LAMPCAE/XBeautyUI.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/LAMPCAE/main.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 1, + "path" : "src/qrc/qianfan.rc", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/LAMPCAE/LAMPCAE_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/LAMPCAE/LAMPCAE_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "EXECUTABLE" +} diff --git a/out/build/.cmake/api/v1/reply/target-LAMPCAE_autogen-Debug-0d0b1d60871bafd8bc8e.json b/out/build/.cmake/api/v1/reply/target-LAMPCAE_autogen-Debug-0d0b1d60871bafd8bc8e.json new file mode 100644 index 0000000..e9f2c6c --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-LAMPCAE_autogen-Debug-0d0b1d60871bafd8bc8e.json @@ -0,0 +1,171 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/LAMPCAE/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 0, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 0, + "id" : "SARibbonBar::@f61b241723ced025d0ef" + }, + { + "backtrace" : 0, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 0, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 0, + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "backtrace" : 0, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 0, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 0, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 0, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 0, + "id" : "PostWidgets::@93a5592897f957e6fa57" + }, + { + "backtrace" : 0, + "id" : "PostInterface::@38fb729d68510c1489c9" + }, + { + "backtrace" : 0, + "id" : "GeometryCommand::@d82e5b79e04a3b196df4" + }, + { + "backtrace" : 0, + "id" : "ProjectTree::@43c6c7ebae2b88a99cdb" + }, + { + "backtrace" : 0, + "id" : "SolverControl::@4a18b637ce8bf6991ec0" + }, + { + "backtrace" : 0, + "id" : "MainWidgets::@d0895ea365458bd7f948" + }, + { + "backtrace" : 0, + "id" : "UserGuidence::@40175f0e8ac13e21fe7c" + }, + { + "backtrace" : 0, + "id" : "IO::@484b42e69e32e953bc79" + }, + { + "backtrace" : 0, + "id" : "MainWindow::@c380e645ecc921453605" + }, + { + "backtrace" : 0, + "id" : "GmshModule::@044d5c74ec3efe84c474" + }, + { + "backtrace" : 0, + "id" : "PluginManager::@d6a357cdda12b0c888b1" + }, + { + "backtrace" : 0, + "id" : "GeometryWidgets::@1fb7ae1802a587d65603" + }, + { + "id" : "LAMPCAE_autogen_timestamp_deps::@1d4d21e91c20b8980f28" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "LAMPCAE_autogen::@1d4d21e91c20b8980f28", + "isGeneratorProvided" : true, + "name" : "LAMPCAE_autogen", + "paths" : + { + "build" : "src/LAMPCAE", + "source" : "src/LAMPCAE" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/LAMPCAE/CMakeFiles/LAMPCAE_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/LAMPCAE/CMakeFiles/LAMPCAE_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/LAMPCAE/LAMPCAE_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-LAMPCAE_autogen_timestamp_deps-Debug-dfa2f593c461c633ffef.json b/out/build/.cmake/api/v1/reply/target-LAMPCAE_autogen_timestamp_deps-Debug-dfa2f593c461c633ffef.json new file mode 100644 index 0000000..e770539 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-LAMPCAE_autogen_timestamp_deps-Debug-dfa2f593c461c633ffef.json @@ -0,0 +1,137 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/LAMPCAE/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "SARibbonBar::@f61b241723ced025d0ef" + }, + { + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "id" : "PostWidgets::@93a5592897f957e6fa57" + }, + { + "id" : "PostInterface::@38fb729d68510c1489c9" + }, + { + "id" : "GeometryCommand::@d82e5b79e04a3b196df4" + }, + { + "id" : "ProjectTree::@43c6c7ebae2b88a99cdb" + }, + { + "id" : "SolverControl::@4a18b637ce8bf6991ec0" + }, + { + "id" : "MainWidgets::@d0895ea365458bd7f948" + }, + { + "id" : "UserGuidence::@40175f0e8ac13e21fe7c" + }, + { + "id" : "IO::@484b42e69e32e953bc79" + }, + { + "id" : "MainWindow::@c380e645ecc921453605" + }, + { + "id" : "GmshModule::@044d5c74ec3efe84c474" + }, + { + "id" : "PluginManager::@d6a357cdda12b0c888b1" + }, + { + "id" : "GeometryWidgets::@1fb7ae1802a587d65603" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "LAMPCAE_autogen_timestamp_deps::@1d4d21e91c20b8980f28", + "isGeneratorProvided" : true, + "name" : "LAMPCAE_autogen_timestamp_deps", + "paths" : + { + "build" : "src/LAMPCAE", + "source" : "src/LAMPCAE" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/LAMPCAE/CMakeFiles/LAMPCAE_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/LAMPCAE/CMakeFiles/LAMPCAE_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-MainWidgets-Debug-f8e8121f47f37f333d97.json b/out/build/.cmake/api/v1/reply/target-MainWidgets-Debug-f8e8121f47f37f333d97.json new file mode 100644 index 0000000..5dc885c --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-MainWidgets-Debug-f8e8121f47f37f333d97.json @@ -0,0 +1,1575 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/MainWidgets.dll" + }, + { + "path" : "Debug/MainWidgets.lib" + }, + { + "path" : "Debug/MainWidgets.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_dependencies", + "add_compile_options", + "target_compile_definitions", + "add_definitions", + "include_directories" + ], + "files" : + [ + "src/MainWidgets/CMakeLists.txt", + "src/CMakeLists.txt", + "src/PythonModule/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 29, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 54, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 2, + "file" : 2, + "line" : 44, + "parent" : 5 + }, + { + "command" : 3, + "file" : 0, + "line" : 62, + "parent" : 0 + }, + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 85, + "parent" : 8 + }, + { + "command" : 4, + "file" : 3, + "line" : 86, + "parent" : 8 + }, + { + "command" : 5, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "command" : 6, + "file" : 3, + "line" : 118, + "parent" : 8 + }, + { + "command" : 6, + "file" : 3, + "line" : 83, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 9, + "fragment" : "/utf-8" + }, + { + "backtrace" : 10, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 11, + "define" : "MAINWIDGETS_API" + }, + { + "define" : "MainWidgets_EXPORTS" + }, + { + "backtrace" : 12, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_XML_LIB" + }, + { + "backtrace" : 13, + "define" : "UNICODE" + }, + { + "backtrace" : 13, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/MainWidgets" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/MainWidgets" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/MainWidgets/MainWidgets_autogen/include" + }, + { + "backtrace" : 14, + "path" : "D:/WBFZCPP/source/FastCAE/src/MainWidgets/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/OCCT/inc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtXml" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/VTK/include/vtk-9.3" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 1, + 2, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 7, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 7, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 7, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 7, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 7, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 7, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 7, + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "backtrace" : 7, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 7, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 7, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 7, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 7, + "id" : "PostWidgets::@93a5592897f957e6fa57" + }, + { + "backtrace" : 7, + "id" : "PostInterface::@38fb729d68510c1489c9" + }, + { + "backtrace" : 7, + "id" : "PostPlotWidget::@d1bc8a76442dff50f241" + }, + { + "backtrace" : 7, + "id" : "ProjectTreeExtend::@f2791e4784919f40d89d" + }, + { + "backtrace" : 7, + "id" : "GeometryCommand::@d82e5b79e04a3b196df4" + }, + { + "backtrace" : 7, + "id" : "ProjectTree::@43c6c7ebae2b88a99cdb" + }, + { + "backtrace" : 7, + "id" : "SolverControl::@4a18b637ce8bf6991ec0" + }, + { + "backtrace" : 7, + "id" : "IO::@484b42e69e32e953bc79" + }, + { + "backtrace" : 7, + "id" : "GeometryWidgets::@1fb7ae1802a587d65603" + }, + { + "id" : "MainWidgets_autogen_timestamp_deps::@d0895ea365458bd7f948" + }, + { + "backtrace" : 0, + "id" : "MainWidgets_autogen::@d0895ea365458bd7f948" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "MainWidgets::@d0895ea365458bd7f948", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ProjectTreeExtend.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\SolverControl.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ProjectTree.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PostWidgets.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PostInterface.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PostPlotWidget.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\IO.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\GeometryWidgets.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\GeometryCommand.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKIVtk.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingGL2PSOpenGL2-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModuleBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersModeling-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModelData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ConfigOptions.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Material.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\SelfDefObject.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Settings.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\MeshData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Geometry.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "D:\\vcpkg\\installed\\x64-windows\\debug\\lib\\freetype.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKBRep.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKG2d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKG3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKGeomAlgo.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKGeomBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKHLR.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKMath.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKMesh.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKService.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKShHealing.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKTopAlgo.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKV3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\OCCT\\win64\\vc14\\libd\\TKernel.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonColor-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonComputationalGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonDataModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonExecutionModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMisc-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonSystem-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonTransforms-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersExtraction-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeneral-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersSources-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersStatistics-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOLegacy-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXML-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXMLParser-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingFourier-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkInteractionStyle-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelDIY-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingFreeType-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingOpenGL2-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingUI-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingVolume-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingVolumeOpenGL2-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkdoubleconversion-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkexpat-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkfreetype-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkglew-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklz4-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklzma-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtksys-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkzlib-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Xmld.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PythonModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\Python\\libs\\python37.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "MainWidgets", + "nameOnDisk" : "MainWidgets.dll", + "paths" : + { + "build" : "src/MainWidgets", + "source" : "src/MainWidgets" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 109 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/MainWidgets_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/qrc_qianfan.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/qrc_translations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/ui_ControlPanel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/ui_DialogCreateGeoComponent.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/ui_DialogCreateMaterial.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/ui_DialogCreatePhysicsModel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/ui_DialogCreateSet.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/ui_DialogFilterMesh.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/ui_DialogGeoMeshRotate.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/ui_DialogGeometryRename.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/ui_DialogMeshChecking.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/ui_DialogMeshSetMerge.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/ui_DialogSavePicture.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/ui_DialogSelectComponents.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/ui_DialogSelectMesher.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/ui_DialogVTKTransform.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/ui_ParameterGroupLabel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/ui_PropertyTable.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/ui_ReportProcessingDialog.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/ui_projectSolveDialog.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/ControlPanel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/DialogCreateGeoComponent.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/DialogCreateMaterial.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/DialogCreatePhysicsModel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/DialogCreateSet.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/DialogFilterMesh.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/DialogGeoMeshRotate.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/DialogGeometryRename.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/DialogMeshChecking.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/DialogMeshRename.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/DialogMeshSetMerge.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/DialogSavePicture.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/DialogSelectMesher.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/DialogVTKTransform.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/GeometryWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/MainWidgetsPy.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/MeshWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/ParameterGroupLabel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/PhysicsWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/ProcessWindow.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/ProjectTreeFactory.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/PropertyTable.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/ReportProcessingDialog.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/geometrySetViewData.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/geometryViewData.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/geometryViewObject.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/geometryViewProvider.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/mainWidgetsAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/meshKernalViewObject.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/meshViewProvider.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/messageWindow.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/preWindow.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/projectSolveDialog.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWidgets/sketchViewProvider.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/ControlPanel.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/DialogCreateGeoComponent.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/DialogCreateMaterial.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/DialogCreatePhysicsModel.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/DialogCreateSet.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/DialogFilterMesh.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/DialogGeoMeshRotate.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/DialogGeometryRename.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/DialogMeshChecking.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/DialogMeshRename.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/DialogMeshSetMerge.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/DialogSavePicture.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/DialogSelectMesher.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/DialogVTKTransform.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/GeometryWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/MainWidgetsPy.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/MeshWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/ParameterGroupLabel.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/PhysicsWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/ProcessWindow.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/ProjectTreeFactory.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/PropertyTable.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/ReportProcessingDialog.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/geometrySetViewData.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/geometryViewData.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/geometryViewObject.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/geometryViewProvider.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/meshKernalViewObject.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/meshViewProvider.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/messageWindow.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/preWindow.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/projectSolveDialog.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWidgets/sketchViewProvider.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/MainWidgets_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/qianfan.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/translations.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/MainWidgets/ControlPanel.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/MainWidgets/DialogCreateGeoComponent.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/MainWidgets/DialogCreateMaterial.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/MainWidgets/DialogCreatePhysicsModel.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/MainWidgets/DialogCreateSet.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/MainWidgets/DialogFilterMesh.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/MainWidgets/DialogGeoMeshRotate.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/MainWidgets/DialogGeometryRename.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/MainWidgets/DialogMeshChecking.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/MainWidgets/DialogMeshSetMerge.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/MainWidgets/DialogSavePicture.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/MainWidgets/DialogSelectComponents.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/MainWidgets/DialogSelectMesher.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/MainWidgets/DialogVTKTransform.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/MainWidgets/ParameterGroupLabel.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/MainWidgets/PropertyTable.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/MainWidgets/ReportProcessingDialog.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/MainWidgets/projectSolveDialog.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/MainWidgets_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-MainWidgets_autogen-Debug-592aaa8f401193823229.json b/out/build/.cmake/api/v1/reply/target-MainWidgets_autogen-Debug-592aaa8f401193823229.json new file mode 100644 index 0000000..65d04ea --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-MainWidgets_autogen-Debug-592aaa8f401193823229.json @@ -0,0 +1,155 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/MainWidgets/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 0, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 0, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 0, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 0, + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "backtrace" : 0, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 0, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 0, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 0, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 0, + "id" : "PostWidgets::@93a5592897f957e6fa57" + }, + { + "backtrace" : 0, + "id" : "PostInterface::@38fb729d68510c1489c9" + }, + { + "backtrace" : 0, + "id" : "PostPlotWidget::@d1bc8a76442dff50f241" + }, + { + "backtrace" : 0, + "id" : "ProjectTreeExtend::@f2791e4784919f40d89d" + }, + { + "backtrace" : 0, + "id" : "GeometryCommand::@d82e5b79e04a3b196df4" + }, + { + "backtrace" : 0, + "id" : "ProjectTree::@43c6c7ebae2b88a99cdb" + }, + { + "backtrace" : 0, + "id" : "SolverControl::@4a18b637ce8bf6991ec0" + }, + { + "backtrace" : 0, + "id" : "IO::@484b42e69e32e953bc79" + }, + { + "backtrace" : 0, + "id" : "GeometryWidgets::@1fb7ae1802a587d65603" + }, + { + "id" : "MainWidgets_autogen_timestamp_deps::@d0895ea365458bd7f948" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "MainWidgets_autogen::@d0895ea365458bd7f948", + "isGeneratorProvided" : true, + "name" : "MainWidgets_autogen", + "paths" : + { + "build" : "src/MainWidgets", + "source" : "src/MainWidgets" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/CMakeFiles/MainWidgets_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/CMakeFiles/MainWidgets_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/MainWidgets_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-MainWidgets_autogen_timestamp_deps-Debug-e7abf9d8f80a28535921.json b/out/build/.cmake/api/v1/reply/target-MainWidgets_autogen_timestamp_deps-Debug-e7abf9d8f80a28535921.json new file mode 100644 index 0000000..7463880 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-MainWidgets_autogen_timestamp_deps-Debug-e7abf9d8f80a28535921.json @@ -0,0 +1,125 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/MainWidgets/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "id" : "PostWidgets::@93a5592897f957e6fa57" + }, + { + "id" : "PostInterface::@38fb729d68510c1489c9" + }, + { + "id" : "PostPlotWidget::@d1bc8a76442dff50f241" + }, + { + "id" : "ProjectTreeExtend::@f2791e4784919f40d89d" + }, + { + "id" : "GeometryCommand::@d82e5b79e04a3b196df4" + }, + { + "id" : "ProjectTree::@43c6c7ebae2b88a99cdb" + }, + { + "id" : "SolverControl::@4a18b637ce8bf6991ec0" + }, + { + "id" : "IO::@484b42e69e32e953bc79" + }, + { + "id" : "GeometryWidgets::@1fb7ae1802a587d65603" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "MainWidgets_autogen_timestamp_deps::@d0895ea365458bd7f948", + "isGeneratorProvided" : true, + "name" : "MainWidgets_autogen_timestamp_deps", + "paths" : + { + "build" : "src/MainWidgets", + "source" : "src/MainWidgets" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/CMakeFiles/MainWidgets_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MainWidgets/CMakeFiles/MainWidgets_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-MainWindow-Debug-44755f896a47b1dbc6f9.json b/out/build/.cmake/api/v1/reply/target-MainWindow-Debug-44755f896a47b1dbc6f9.json new file mode 100644 index 0000000..3457dab --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-MainWindow-Debug-44755f896a47b1dbc6f9.json @@ -0,0 +1,974 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/MainWindow.dll" + }, + { + "path" : "Debug/MainWindow.lib" + }, + { + "path" : "Debug/MainWindow.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_dependencies", + "add_compile_options", + "target_compile_definitions", + "add_definitions", + "include_directories", + "target_include_directories" + ], + "files" : + [ + "src/MainWindow/CMakeLists.txt", + "src/CMakeLists.txt", + "src/PythonModule/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 29, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 55, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 2, + "file" : 2, + "line" : 44, + "parent" : 5 + }, + { + "command" : 3, + "file" : 0, + "line" : 63, + "parent" : 0 + }, + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 85, + "parent" : 8 + }, + { + "command" : 4, + "file" : 3, + "line" : 86, + "parent" : 8 + }, + { + "command" : 5, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "command" : 6, + "file" : 3, + "line" : 118, + "parent" : 8 + }, + { + "command" : 6, + "file" : 3, + "line" : 83, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 4, + "parent" : 0 + }, + { + "command" : 8, + "file" : 0, + "line" : 50, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 9, + "fragment" : "/utf-8" + }, + { + "backtrace" : 10, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 11, + "define" : "MAINWINDOW_API" + }, + { + "define" : "MainWindow_EXPORTS" + }, + { + "backtrace" : 12, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 13, + "define" : "UNICODE" + }, + { + "backtrace" : 13, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/MainWindow" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/MainWindow" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/MainWindow/MainWindow_autogen/include" + }, + { + "backtrace" : 14, + "path" : "D:/WBFZCPP/source/FastCAE/src/MainWindow/.." + }, + { + "backtrace" : 15, + "path" : "C:/Qwt/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/VTK/include/vtk-9.3" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 1, + 2, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 7, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 7, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 7, + "id" : "SARibbonBar::@f61b241723ced025d0ef" + }, + { + "backtrace" : 7, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 7, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 7, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 7, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 7, + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "backtrace" : 7, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 7, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 7, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 7, + "id" : "PostRenderData::@ce9c2f9a6cca9038fdeb" + }, + { + "backtrace" : 7, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 7, + "id" : "PostWidgets::@93a5592897f957e6fa57" + }, + { + "backtrace" : 7, + "id" : "PostInterface::@38fb729d68510c1489c9" + }, + { + "backtrace" : 7, + "id" : "GeometryCommand::@d82e5b79e04a3b196df4" + }, + { + "backtrace" : 7, + "id" : "ProjectTree::@43c6c7ebae2b88a99cdb" + }, + { + "backtrace" : 7, + "id" : "SolverControl::@4a18b637ce8bf6991ec0" + }, + { + "backtrace" : 7, + "id" : "MainWidgets::@d0895ea365458bd7f948" + }, + { + "backtrace" : 7, + "id" : "UserGuidence::@40175f0e8ac13e21fe7c" + }, + { + "backtrace" : 7, + "id" : "IO::@484b42e69e32e953bc79" + }, + { + "backtrace" : 7, + "id" : "GmshModule::@044d5c74ec3efe84c474" + }, + { + "backtrace" : 7, + "id" : "PluginManager::@d6a357cdda12b0c888b1" + }, + { + "backtrace" : 7, + "id" : "GeometryWidgets::@1fb7ae1802a587d65603" + }, + { + "backtrace" : 0, + "id" : "MainWindow_autogen::@c380e645ecc921453605" + }, + { + "id" : "MainWindow_autogen_timestamp_deps::@c380e645ecc921453605" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "MainWindow::@c380e645ecc921453605", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\SARibbonBar.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\MainWidgets.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\UserGuidence.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\SolverControl.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\IO.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PluginManager.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\GmshModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\GeometryWidgets.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\GeometryCommand.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ProjectTree.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PostWidgets.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModuleBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModelData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PostInterface.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PostRenderData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ConfigOptions.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Material.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\SelfDefObject.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\MeshData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Geometry.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonColor-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonComputationalGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonDataModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonExecutionModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMisc-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonSystem-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonTransforms-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersExtraction-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeneral-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersSources-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersStatistics-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOLegacy-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXML-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXMLParser-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingFourier-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkInteractionStyle-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelDIY-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingFreeType-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingOpenGL2-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingUI-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingVolume-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingVolumeOpenGL2-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkdoubleconversion-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkexpat-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkfreetype-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkglew-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklz4-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklzma-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtksys-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkzlib-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PythonModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\Python\\libs\\python37.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Settings.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "MainWindow", + "nameOnDisk" : "MainWindow.dll", + "paths" : + { + "build" : "src/MainWindow", + "source" : "src/MainWindow" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 24, + 25, + 26, + 27, + 28 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 29 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/MainWindow/MainWindow_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/MainWindow/qrc_qianfan.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/MainWindow/qrc_translations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/MainWindow/ui_DialogAbout.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/MainWindow/ui_MainWindow.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWindow/CustomizerHelper.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWindow/DialogAbout.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWindow/MainWindow.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWindow/MainWindowAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWindow/MainWindowPy.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWindow/SARibbonMWUi.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWindow/SignalHandler.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWindow/SolveProcessManager.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWindow/SubWindowManager.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MainWindow/Translator.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWindow/CustomizerHelper.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWindow/DialogAbout.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWindow/MainWindow.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWindow/MainWindowPy.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWindow/SARibbonMWUi.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWindow/SignalHandler.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWindow/SolveProcessManager.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWindow/SubWindowManager.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MainWindow/Translator.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MainWindow/MainWindow_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/qianfan.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/translations.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/MainWindow/DialogAbout.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/MainWindow/MainWindow.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MainWindow/MainWindow_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-MainWindow_autogen-Debug-d639ea465a87551a348e.json b/out/build/.cmake/api/v1/reply/target-MainWindow_autogen-Debug-d639ea465a87551a348e.json new file mode 100644 index 0000000..e413789 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-MainWindow_autogen-Debug-d639ea465a87551a348e.json @@ -0,0 +1,171 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/MainWindow/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 0, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 0, + "id" : "SARibbonBar::@f61b241723ced025d0ef" + }, + { + "backtrace" : 0, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 0, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 0, + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "backtrace" : 0, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 0, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 0, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 0, + "id" : "PostRenderData::@ce9c2f9a6cca9038fdeb" + }, + { + "backtrace" : 0, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 0, + "id" : "PostWidgets::@93a5592897f957e6fa57" + }, + { + "backtrace" : 0, + "id" : "PostInterface::@38fb729d68510c1489c9" + }, + { + "backtrace" : 0, + "id" : "GeometryCommand::@d82e5b79e04a3b196df4" + }, + { + "backtrace" : 0, + "id" : "ProjectTree::@43c6c7ebae2b88a99cdb" + }, + { + "backtrace" : 0, + "id" : "SolverControl::@4a18b637ce8bf6991ec0" + }, + { + "backtrace" : 0, + "id" : "MainWidgets::@d0895ea365458bd7f948" + }, + { + "backtrace" : 0, + "id" : "UserGuidence::@40175f0e8ac13e21fe7c" + }, + { + "backtrace" : 0, + "id" : "IO::@484b42e69e32e953bc79" + }, + { + "backtrace" : 0, + "id" : "GmshModule::@044d5c74ec3efe84c474" + }, + { + "backtrace" : 0, + "id" : "PluginManager::@d6a357cdda12b0c888b1" + }, + { + "backtrace" : 0, + "id" : "GeometryWidgets::@1fb7ae1802a587d65603" + }, + { + "id" : "MainWindow_autogen_timestamp_deps::@c380e645ecc921453605" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "MainWindow_autogen::@c380e645ecc921453605", + "isGeneratorProvided" : true, + "name" : "MainWindow_autogen", + "paths" : + { + "build" : "src/MainWindow", + "source" : "src/MainWindow" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MainWindow/CMakeFiles/MainWindow_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MainWindow/CMakeFiles/MainWindow_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MainWindow/MainWindow_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-MainWindow_autogen_timestamp_deps-Debug-c0405d9ecaf5d33d7de1.json b/out/build/.cmake/api/v1/reply/target-MainWindow_autogen_timestamp_deps-Debug-c0405d9ecaf5d33d7de1.json new file mode 100644 index 0000000..1893f25 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-MainWindow_autogen_timestamp_deps-Debug-c0405d9ecaf5d33d7de1.json @@ -0,0 +1,134 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/MainWindow/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "SARibbonBar::@f61b241723ced025d0ef" + }, + { + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "id" : "PostRenderData::@ce9c2f9a6cca9038fdeb" + }, + { + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "id" : "PostWidgets::@93a5592897f957e6fa57" + }, + { + "id" : "PostInterface::@38fb729d68510c1489c9" + }, + { + "id" : "GeometryCommand::@d82e5b79e04a3b196df4" + }, + { + "id" : "ProjectTree::@43c6c7ebae2b88a99cdb" + }, + { + "id" : "SolverControl::@4a18b637ce8bf6991ec0" + }, + { + "id" : "MainWidgets::@d0895ea365458bd7f948" + }, + { + "id" : "UserGuidence::@40175f0e8ac13e21fe7c" + }, + { + "id" : "IO::@484b42e69e32e953bc79" + }, + { + "id" : "GmshModule::@044d5c74ec3efe84c474" + }, + { + "id" : "PluginManager::@d6a357cdda12b0c888b1" + }, + { + "id" : "GeometryWidgets::@1fb7ae1802a587d65603" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "MainWindow_autogen_timestamp_deps::@c380e645ecc921453605", + "isGeneratorProvided" : true, + "name" : "MainWindow_autogen_timestamp_deps", + "paths" : + { + "build" : "src/MainWindow", + "source" : "src/MainWindow" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MainWindow/CMakeFiles/MainWindow_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MainWindow/CMakeFiles/MainWindow_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-Material-Debug-5eb547a9a882c93cd5b5.json b/out/build/.cmake/api/v1/reply/target-Material-Debug-5eb547a9a882c93cd5b5.json new file mode 100644 index 0000000..e17e0f7 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-Material-Debug-5eb547a9a882c93cd5b5.json @@ -0,0 +1,534 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/Material.dll" + }, + { + "path" : "Debug/Material.lib" + }, + { + "path" : "Debug/Material.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_dependencies", + "add_compile_options", + "target_compile_definitions", + "add_definitions", + "include_directories" + ], + "files" : + [ + "src/Material/CMakeLists.txt", + "src/CMakeLists.txt", + "src/PythonModule/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 28, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 49, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 2, + "file" : 2, + "line" : 44, + "parent" : 5 + }, + { + "command" : 3, + "file" : 0, + "line" : 57, + "parent" : 0 + }, + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 85, + "parent" : 8 + }, + { + "command" : 4, + "file" : 3, + "line" : 86, + "parent" : 8 + }, + { + "command" : 5, + "file" : 0, + "line" : 38, + "parent" : 0 + }, + { + "command" : 6, + "file" : 3, + "line" : 118, + "parent" : 8 + }, + { + "command" : 6, + "file" : 3, + "line" : 83, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 9, + "fragment" : "/utf-8" + }, + { + "backtrace" : 10, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 11, + "define" : "MATERIAL_API" + }, + { + "define" : "Material_EXPORTS" + }, + { + "backtrace" : 12, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_XML_LIB" + }, + { + "backtrace" : 13, + "define" : "UNICODE" + }, + { + "backtrace" : 13, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/Material" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/Material" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/Material/Material_autogen/include" + }, + { + "backtrace" : 14, + "path" : "D:/WBFZCPP/source/FastCAE/src/Material/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtXml" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 10, + 11, + 12, + 13, + 14, + 15 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 7, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 7, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 7, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 7, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 0, + "id" : "Material_autogen::@05d68cd248c3246409d7" + }, + { + "id" : "Material_autogen_timestamp_deps::@05d68cd248c3246409d7" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "Material::@05d68cd248c3246409d7", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\SelfDefObject.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Settings.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Xmld.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PythonModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\Python\\libs\\python37.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "Material", + "nameOnDisk" : "Material.dll", + "paths" : + { + "build" : "src/Material", + "source" : "src/Material" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 10, + 11, + 12, + 13, + 14, + 15 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 16, + 17, + 18 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 19 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/Material/Material_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/Material/ui_DialogLoadMaterial.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/Material/ui_DialogRemoveMaterial.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Material/DialogLoadMaterial.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Material/DialogRemoveMaterial.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Material/Material.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Material/MaterialAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Material/MaterialFactory.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Material/MaterialPy.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Material/MaterialSingletion.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Material/DialogLoadMaterial.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Material/DialogRemoveMaterial.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Material/Material.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Material/MaterialFactory.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Material/MaterialPy.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Material/MaterialSingletion.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Material/Material_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/Material/DialogLoadMaterial.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/Material/DialogRemoveMaterial.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Material/Material_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-Material_autogen-Debug-3a16fd19d6edcf795fc2.json b/out/build/.cmake/api/v1/reply/target-Material_autogen-Debug-3a16fd19d6edcf795fc2.json new file mode 100644 index 0000000..647e8de --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-Material_autogen-Debug-3a16fd19d6edcf795fc2.json @@ -0,0 +1,91 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/Material/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 0, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "id" : "Material_autogen_timestamp_deps::@05d68cd248c3246409d7" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "Material_autogen::@05d68cd248c3246409d7", + "isGeneratorProvided" : true, + "name" : "Material_autogen", + "paths" : + { + "build" : "src/Material", + "source" : "src/Material" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Material/CMakeFiles/Material_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Material/CMakeFiles/Material_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Material/Material_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-Material_autogen_timestamp_deps-Debug-0a3c394b1d68fcc91773.json b/out/build/.cmake/api/v1/reply/target-Material_autogen_timestamp_deps-Debug-0a3c394b1d68fcc91773.json new file mode 100644 index 0000000..d78ef39 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-Material_autogen_timestamp_deps-Debug-0a3c394b1d68fcc91773.json @@ -0,0 +1,77 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/Material/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "Material_autogen_timestamp_deps::@05d68cd248c3246409d7", + "isGeneratorProvided" : true, + "name" : "Material_autogen_timestamp_deps", + "paths" : + { + "build" : "src/Material", + "source" : "src/Material" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Material/CMakeFiles/Material_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Material/CMakeFiles/Material_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-MeshData-Debug-88542b4f910e26b63a07.json b/out/build/.cmake/api/v1/reply/target-MeshData-Debug-88542b4f910e26b63a07.json new file mode 100644 index 0000000..2fddb5d --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-MeshData-Debug-88542b4f910e26b63a07.json @@ -0,0 +1,704 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/MeshData.dll" + }, + { + "path" : "Debug/MeshData.lib" + }, + { + "path" : "Debug/MeshData.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "set_property", + "_populate_Widgets_target_properties", + "find_package", + "add_dependencies", + "add_compile_options", + "target_compile_definitions", + "add_definitions", + "include_directories" + ], + "files" : + [ + "src/MeshData/CMakeLists.txt", + "src/CMakeLists.txt", + "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake", + "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5/Qt5Config.cmake", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 20, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 37, + "parent" : 0 + }, + { + "file" : 4 + }, + { + "command" : 5, + "file" : 4, + "line" : 142, + "parent" : 5 + }, + { + "file" : 3, + "parent" : 6 + }, + { + "command" : 5, + "file" : 3, + "line" : 28, + "parent" : 7 + }, + { + "file" : 2, + "parent" : 8 + }, + { + "command" : 4, + "file" : 2, + "line" : 207, + "parent" : 9 + }, + { + "command" : 3, + "file" : 2, + "line" : 44, + "parent" : 10 + }, + { + "command" : 6, + "file" : 0, + "line" : 45, + "parent" : 0 + }, + { + "command" : 7, + "file" : 4, + "line" : 85, + "parent" : 5 + }, + { + "command" : 7, + "file" : 4, + "line" : 86, + "parent" : 5 + }, + { + "command" : 8, + "file" : 0, + "line" : 28, + "parent" : 0 + }, + { + "command" : 9, + "file" : 4, + "line" : 118, + "parent" : 5 + }, + { + "command" : 9, + "file" : 4, + "line" : 83, + "parent" : 5 + }, + { + "command" : 10, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 13, + "fragment" : "/utf-8" + }, + { + "backtrace" : 14, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 15, + "define" : "MESHDATA_API" + }, + { + "define" : "MeshData_EXPORTS" + }, + { + "backtrace" : 16, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_XML_LIB" + }, + { + "backtrace" : 17, + "define" : "UNICODE" + }, + { + "backtrace" : 17, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/MeshData" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/MeshData" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/MeshData/MeshData_autogen/include" + }, + { + "backtrace" : 18, + "path" : "D:/WBFZCPP/source/FastCAE/src/MeshData/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtXml" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/VTK/include/vtk-9.3" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 12, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "MeshData_autogen::@2f0f676dafab302b2d20" + }, + { + "id" : "MeshData_autogen_timestamp_deps::@2f0f676dafab302b2d20" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "MeshData::@2f0f676dafab302b2d20", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonComputationalGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonDataModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonExecutionModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMisc-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonSystem-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonTransforms-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersExtraction-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeneral-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersStatistics-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersVerdict-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOLegacy-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXML-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXMLParser-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingFourier-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelDIY-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkdoubleconversion-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkexpat-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklz4-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklzma-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtksys-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkverdict-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkzlib-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Xmld.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 11, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 11, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "MeshData", + "nameOnDisk" : "MeshData.dll", + "paths" : + { + "build" : "src/MeshData", + "source" : "src/MeshData" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 24 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 25 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/MeshData/MeshData_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "src/MeshData/CgnsBCZone.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MeshData/CgnsFamily.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MeshData/ElementType.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MeshData/MeshFactory.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MeshData/MeshPy.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MeshData/meshChecker.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MeshData/meshCommon.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MeshData/meshDataAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MeshData/meshKernal.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MeshData/meshSet.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MeshData/meshSingleton.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/MeshData/setMember.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MeshData/CgnsBCZone.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MeshData/CgnsFamily.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MeshData/ElementType.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MeshData/MeshFactory.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MeshData/MeshPy.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MeshData/meshChecker.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MeshData/meshCommon.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MeshData/meshKernal.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MeshData/meshSet.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MeshData/meshSingleton.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/MeshData/setMember.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MeshData/MeshData_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MeshData/MeshData_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-MeshData_autogen-Debug-22ffdb3b77f8b12d1947.json b/out/build/.cmake/api/v1/reply/target-MeshData_autogen-Debug-22ffdb3b77f8b12d1947.json new file mode 100644 index 0000000..1091f79 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-MeshData_autogen-Debug-22ffdb3b77f8b12d1947.json @@ -0,0 +1,79 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/MeshData/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "MeshData_autogen_timestamp_deps::@2f0f676dafab302b2d20" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "MeshData_autogen::@2f0f676dafab302b2d20", + "isGeneratorProvided" : true, + "name" : "MeshData_autogen", + "paths" : + { + "build" : "src/MeshData", + "source" : "src/MeshData" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MeshData/CMakeFiles/MeshData_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MeshData/CMakeFiles/MeshData_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MeshData/MeshData_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-MeshData_autogen_timestamp_deps-Debug-ad6eb797f824e0a838c7.json b/out/build/.cmake/api/v1/reply/target-MeshData_autogen_timestamp_deps-Debug-ad6eb797f824e0a838c7.json new file mode 100644 index 0000000..51be68f --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-MeshData_autogen_timestamp_deps-Debug-ad6eb797f824e0a838c7.json @@ -0,0 +1,68 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/MeshData/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "DataProperty::@ec84555ffa827036bc26" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "MeshData_autogen_timestamp_deps::@2f0f676dafab302b2d20", + "isGeneratorProvided" : true, + "name" : "MeshData_autogen_timestamp_deps", + "paths" : + { + "build" : "src/MeshData", + "source" : "src/MeshData" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MeshData/CMakeFiles/MeshData_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/MeshData/CMakeFiles/MeshData_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-ModelData-Debug-b7303bcf30f6288fb65c.json b/out/build/.cmake/api/v1/reply/target-ModelData-Debug-b7303bcf30f6288fb65c.json new file mode 100644 index 0000000..7618b83 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-ModelData-Debug-b7303bcf30f6288fb65c.json @@ -0,0 +1,558 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/ModelData.dll" + }, + { + "path" : "Debug/ModelData.lib" + }, + { + "path" : "Debug/ModelData.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_dependencies", + "add_compile_options", + "target_compile_definitions", + "add_definitions", + "include_directories" + ], + "files" : + [ + "src/ModelData/CMakeLists.txt", + "src/CMakeLists.txt", + "src/PythonModule/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 20, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 2, + "file" : 2, + "line" : 44, + "parent" : 5 + }, + { + "command" : 3, + "file" : 0, + "line" : 47, + "parent" : 0 + }, + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 85, + "parent" : 8 + }, + { + "command" : 4, + "file" : 3, + "line" : 86, + "parent" : 8 + }, + { + "command" : 5, + "file" : 0, + "line" : 28, + "parent" : 0 + }, + { + "command" : 6, + "file" : 3, + "line" : 118, + "parent" : 8 + }, + { + "command" : 6, + "file" : 3, + "line" : 83, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 9, + "fragment" : "/utf-8" + }, + { + "backtrace" : 10, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 11, + "define" : "MODELDATA_API" + }, + { + "define" : "ModelData_EXPORTS" + }, + { + "backtrace" : 12, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_XML_LIB" + }, + { + "backtrace" : 13, + "define" : "UNICODE" + }, + { + "backtrace" : 13, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/ModelData" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/ModelData" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/ModelData/ModelData_autogen/include" + }, + { + "backtrace" : 14, + "path" : "D:/WBFZCPP/source/FastCAE/src/ModelData/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtXml" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 7, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 7, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 7, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 7, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 7, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 7, + "id" : "BCBase::@baf13bdd6bef809f2182" + }, + { + "backtrace" : 7, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 7, + "id" : "ParaClassFactory::@d0ebb167002da5b45d84" + }, + { + "backtrace" : 0, + "id" : "ModelData_autogen::@8a6b2d9535e8b6cb6800" + }, + { + "id" : "ModelData_autogen_timestamp_deps::@8a6b2d9535e8b6cb6800" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "ModelData::@8a6b2d9535e8b6cb6800", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ParaClassFactory.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ConfigOptions.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\BCBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\MeshData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Geometry.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Settings.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Xmld.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PythonModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\Python\\libs\\python37.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "ModelData", + "nameOnDisk" : "ModelData.dll", + "paths" : + { + "build" : "src/ModelData", + "source" : "src/ModelData" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 16 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 17 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/ModelData/ModelData_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "src/ModelData/modelDataAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModelData/modelDataBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModelData/modelDataBaseExtend.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModelData/modelDataFactory.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModelData/modelDataPy.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModelData/modelDataSingleton.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModelData/simulationSettingBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModelData/solverSettingBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModelData/modelDataBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModelData/modelDataBaseExtend.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModelData/modelDataFactory.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModelData/modelDataPy.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModelData/modelDataSingleton.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModelData/simulationSettingBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModelData/solverSettingBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ModelData/ModelData_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ModelData/ModelData_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-ModelData_autogen-Debug-ca819f71b5a06fcc789a.json b/out/build/.cmake/api/v1/reply/target-ModelData_autogen-Debug-ca819f71b5a06fcc789a.json new file mode 100644 index 0000000..92df38f --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-ModelData_autogen-Debug-ca819f71b5a06fcc789a.json @@ -0,0 +1,107 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/ModelData/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 0, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 0, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 0, + "id" : "BCBase::@baf13bdd6bef809f2182" + }, + { + "backtrace" : 0, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 0, + "id" : "ParaClassFactory::@d0ebb167002da5b45d84" + }, + { + "id" : "ModelData_autogen_timestamp_deps::@8a6b2d9535e8b6cb6800" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "ModelData_autogen::@8a6b2d9535e8b6cb6800", + "isGeneratorProvided" : true, + "name" : "ModelData_autogen", + "paths" : + { + "build" : "src/ModelData", + "source" : "src/ModelData" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ModelData/CMakeFiles/ModelData_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ModelData/CMakeFiles/ModelData_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ModelData/ModelData_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-ModelData_autogen_timestamp_deps-Debug-8dd7d80923bbd845d8b2.json b/out/build/.cmake/api/v1/reply/target-ModelData_autogen_timestamp_deps-Debug-8dd7d80923bbd845d8b2.json new file mode 100644 index 0000000..7a68341 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-ModelData_autogen_timestamp_deps-Debug-8dd7d80923bbd845d8b2.json @@ -0,0 +1,89 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/ModelData/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "id" : "BCBase::@baf13bdd6bef809f2182" + }, + { + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "id" : "ParaClassFactory::@d0ebb167002da5b45d84" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "ModelData_autogen_timestamp_deps::@8a6b2d9535e8b6cb6800", + "isGeneratorProvided" : true, + "name" : "ModelData_autogen_timestamp_deps", + "paths" : + { + "build" : "src/ModelData", + "source" : "src/ModelData" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ModelData/CMakeFiles/ModelData_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ModelData/CMakeFiles/ModelData_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-ModuleBase-Debug-7833b55ca88869f4c47f.json b/out/build/.cmake/api/v1/reply/target-ModuleBase-Debug-7833b55ca88869f4c47f.json new file mode 100644 index 0000000..7795a0b --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-ModuleBase-Debug-7833b55ca88869f4c47f.json @@ -0,0 +1,1159 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/ModuleBase.dll" + }, + { + "path" : "Debug/ModuleBase.lib" + }, + { + "path" : "Debug/ModuleBase.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_dependencies", + "add_compile_options", + "target_compile_definitions", + "add_definitions", + "include_directories" + ], + "files" : + [ + "src/ModuleBase/CMakeLists.txt", + "src/CMakeLists.txt", + "src/PythonModule/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 29, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 49, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 2, + "file" : 2, + "line" : 44, + "parent" : 5 + }, + { + "command" : 3, + "file" : 0, + "line" : 57, + "parent" : 0 + }, + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 85, + "parent" : 8 + }, + { + "command" : 4, + "file" : 3, + "line" : 86, + "parent" : 8 + }, + { + "command" : 5, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "command" : 6, + "file" : 3, + "line" : 118, + "parent" : 8 + }, + { + "command" : 6, + "file" : 3, + "line" : 83, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 9, + "fragment" : "/utf-8" + }, + { + "backtrace" : 10, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 11, + "define" : "MODULEBASE_API" + }, + { + "define" : "ModuleBase_EXPORTS" + }, + { + "backtrace" : 12, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_XML_LIB" + }, + { + "backtrace" : 13, + "define" : "UNICODE" + }, + { + "backtrace" : 13, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/ModuleBase" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/ModuleBase" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/ModuleBase/ModuleBase_autogen/include" + }, + { + "backtrace" : 14, + "path" : "D:/WBFZCPP/source/FastCAE/src/ModuleBase/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtXml" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/VTK/include/vtk-9.3" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 1, + 2, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 7, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 7, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 7, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 7, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 7, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 7, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 7, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 7, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 0, + "id" : "ModuleBase_autogen::@53e1b14bc3636b2ea9de" + }, + { + "id" : "ModuleBase_autogen_timestamp_deps::@53e1b14bc3636b2ea9de" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkDICOMParser-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersHybrid-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersModeling-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkGUISupportQt-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOImage-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingColor-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingGeneral-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingHybrid-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingSources-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkInteractionWidgets-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingAnnotation-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkjpeg-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkmetaio-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkpng-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkpugixml-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtktiff-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModelData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\MeshData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Geometry.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonColor-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonComputationalGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonDataModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonExecutionModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMisc-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonSystem-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonTransforms-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersExtraction-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeneral-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersSources-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersStatistics-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOLegacy-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXML-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXMLParser-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingFourier-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkInteractionStyle-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelDIY-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingFreeType-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingOpenGL2-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingUI-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingVolume-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingVolumeOpenGL2-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkdoubleconversion-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkexpat-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkfreetype-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkglew-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklz4-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklzma-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtksys-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkzlib-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\SelfDefObject.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Settings.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Xmld.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PythonModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\Python\\libs\\python37.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "ModuleBase", + "nameOnDisk" : "ModuleBase.dll", + "paths" : + { + "build" : "src/ModuleBase", + "source" : "src/ModuleBase" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 65 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/ModuleBase/ModuleBase_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/ModuleBase/qrc_qianfan.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/ModuleBase/qrc_translations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/ModuleBase/ui_ProcessWindowBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/ModuleBase/ui_RandomWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/ModuleBase/ui_componentDialogBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/ModuleBase/ui_graph3DWindow.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/ModuleBase/ui_messageWindowBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/ModuleBase/ui_processBar.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/Frameless/CursorPosCalculator.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/Frameless/FramelessHelper.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/Frameless/FramelessHelperPrivate.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/Frameless/WidgetData.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/CommonFunctions.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/DialogBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/IOBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/ModuleBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/ModuleType.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/PreWindowInteractorStyle.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/ProcessWindowBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/Random.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/ThreadControl.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/ThreadTask.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/ThreadTaskManager.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/XDockTitleBarWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/XRandom.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/XRandomWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/componentDialogBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/dockWidgetBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/graph3DWindow.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/graphWindowBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/messageWindowBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/moduleBaseAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ModuleBase/processBar.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/Frameless/CursorPosCalculator.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/Frameless/FramelessHelper.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/Frameless/WidgetData.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/CommonFunctions.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/DialogBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/IOBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/ModuleBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/PreWindowInteractorStyle.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/ProcessWindowBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/Random.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/ThreadControl.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/ThreadTask.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/ThreadTaskManager.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/XDockTitleBarWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/XRandom.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/XRandomWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/componentDialogBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/dockWidgetBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/graph3DWindow.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/graphWindowBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/messageWindowBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ModuleBase/processBar.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ModuleBase/ModuleBase_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/qianfan.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/translations.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/ModuleBase/ProcessWindowBase.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/ModuleBase/RandomWidget.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/ModuleBase/componentDialogBase.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/ModuleBase/graph3DWindow.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/ModuleBase/messageWindowBase.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/ModuleBase/processBar.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ModuleBase/ModuleBase_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-ModuleBase_autogen-Debug-8042b02a7063075a047f.json b/out/build/.cmake/api/v1/reply/target-ModuleBase_autogen-Debug-8042b02a7063075a047f.json new file mode 100644 index 0000000..c4a6139 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-ModuleBase_autogen-Debug-8042b02a7063075a047f.json @@ -0,0 +1,107 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/ModuleBase/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 0, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 0, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 0, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 0, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 0, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "id" : "ModuleBase_autogen_timestamp_deps::@53e1b14bc3636b2ea9de" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "ModuleBase_autogen::@53e1b14bc3636b2ea9de", + "isGeneratorProvided" : true, + "name" : "ModuleBase_autogen", + "paths" : + { + "build" : "src/ModuleBase", + "source" : "src/ModuleBase" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ModuleBase/CMakeFiles/ModuleBase_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ModuleBase/CMakeFiles/ModuleBase_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ModuleBase/ModuleBase_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-ModuleBase_autogen_timestamp_deps-Debug-4a476fbc7e9396f79643.json b/out/build/.cmake/api/v1/reply/target-ModuleBase_autogen_timestamp_deps-Debug-4a476fbc7e9396f79643.json new file mode 100644 index 0000000..2378ad0 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-ModuleBase_autogen_timestamp_deps-Debug-4a476fbc7e9396f79643.json @@ -0,0 +1,89 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/ModuleBase/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "ModuleBase_autogen_timestamp_deps::@53e1b14bc3636b2ea9de", + "isGeneratorProvided" : true, + "name" : "ModuleBase_autogen_timestamp_deps", + "paths" : + { + "build" : "src/ModuleBase", + "source" : "src/ModuleBase" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ModuleBase/CMakeFiles/ModuleBase_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ModuleBase/CMakeFiles/ModuleBase_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-ParaClassFactory-Debug-dfe56ff80bdc85aeee0c.json b/out/build/.cmake/api/v1/reply/target-ParaClassFactory-Debug-dfe56ff80bdc85aeee0c.json new file mode 100644 index 0000000..4b62669 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-ParaClassFactory-Debug-dfe56ff80bdc85aeee0c.json @@ -0,0 +1,423 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/ParaClassFactory.dll" + }, + { + "path" : "Debug/ParaClassFactory.lib" + }, + { + "path" : "Debug/ParaClassFactory.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "set_property", + "_populate_Widgets_target_properties", + "find_package", + "add_dependencies", + "add_compile_options", + "add_definitions", + "target_compile_definitions", + "include_directories" + ], + "files" : + [ + "src/ParaClassFactory/CMakeLists.txt", + "src/CMakeLists.txt", + "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake", + "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5/Qt5Config.cmake", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 20, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "file" : 4 + }, + { + "command" : 5, + "file" : 4, + "line" : 142, + "parent" : 5 + }, + { + "file" : 3, + "parent" : 6 + }, + { + "command" : 5, + "file" : 3, + "line" : 28, + "parent" : 7 + }, + { + "file" : 2, + "parent" : 8 + }, + { + "command" : 4, + "file" : 2, + "line" : 207, + "parent" : 9 + }, + { + "command" : 3, + "file" : 2, + "line" : 44, + "parent" : 10 + }, + { + "command" : 6, + "file" : 0, + "line" : 47, + "parent" : 0 + }, + { + "command" : 7, + "file" : 4, + "line" : 85, + "parent" : 5 + }, + { + "command" : 7, + "file" : 4, + "line" : 86, + "parent" : 5 + }, + { + "command" : 8, + "file" : 4, + "line" : 118, + "parent" : 5 + }, + { + "command" : 9, + "file" : 0, + "line" : 28, + "parent" : 0 + }, + { + "command" : 8, + "file" : 4, + "line" : 83, + "parent" : 5 + }, + { + "command" : 10, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 13, + "fragment" : "/utf-8" + }, + { + "backtrace" : 14, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 15, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 16, + "define" : "PARACLASSFACTORY_API" + }, + { + "define" : "ParaClassFactory_EXPORTS" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 17, + "define" : "UNICODE" + }, + { + "backtrace" : 17, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/ParaClassFactory" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/ParaClassFactory" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/ParaClassFactory/ParaClassFactory_autogen/include" + }, + { + "backtrace" : 18, + "path" : "D:/WBFZCPP/source/FastCAE/src/ParaClassFactory/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 3 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 12, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 12, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 12, + "id" : "BCBase::@baf13bdd6bef809f2182" + }, + { + "backtrace" : 0, + "id" : "ParaClassFactory_autogen::@d0ebb167002da5b45d84" + }, + { + "id" : "ParaClassFactory_autogen_timestamp_deps::@d0ebb167002da5b45d84" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "ParaClassFactory::@d0ebb167002da5b45d84", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ConfigOptions.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\BCBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 11, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 11, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "ParaClassFactory", + "nameOnDisk" : "ParaClassFactory.dll", + "paths" : + { + "build" : "src/ParaClassFactory", + "source" : "src/ParaClassFactory" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 3 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 2 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 4 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 5 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/ParaClassFactory/ParaClassFactory_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "src/ParaClassFactory/BCFactory.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ParaClassFactory/ParaClassFactoryAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ParaClassFactory/BCFactory.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ParaClassFactory/ParaClassFactory_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ParaClassFactory/ParaClassFactory_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-ParaClassFactory_autogen-Debug-69b7aca5849f82b0b0aa.json b/out/build/.cmake/api/v1/reply/target-ParaClassFactory_autogen-Debug-69b7aca5849f82b0b0aa.json new file mode 100644 index 0000000..4803833 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-ParaClassFactory_autogen-Debug-69b7aca5849f82b0b0aa.json @@ -0,0 +1,87 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/ParaClassFactory/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 0, + "id" : "BCBase::@baf13bdd6bef809f2182" + }, + { + "id" : "ParaClassFactory_autogen_timestamp_deps::@d0ebb167002da5b45d84" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "ParaClassFactory_autogen::@d0ebb167002da5b45d84", + "isGeneratorProvided" : true, + "name" : "ParaClassFactory_autogen", + "paths" : + { + "build" : "src/ParaClassFactory", + "source" : "src/ParaClassFactory" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ParaClassFactory/CMakeFiles/ParaClassFactory_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ParaClassFactory/CMakeFiles/ParaClassFactory_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ParaClassFactory/ParaClassFactory_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-ParaClassFactory_autogen_timestamp_deps-Debug-46030b22a5aa0b5a1381.json b/out/build/.cmake/api/v1/reply/target-ParaClassFactory_autogen_timestamp_deps-Debug-46030b22a5aa0b5a1381.json new file mode 100644 index 0000000..bad6571 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-ParaClassFactory_autogen_timestamp_deps-Debug-46030b22a5aa0b5a1381.json @@ -0,0 +1,74 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/ParaClassFactory/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "id" : "BCBase::@baf13bdd6bef809f2182" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "ParaClassFactory_autogen_timestamp_deps::@d0ebb167002da5b45d84", + "isGeneratorProvided" : true, + "name" : "ParaClassFactory_autogen_timestamp_deps", + "paths" : + { + "build" : "src/ParaClassFactory", + "source" : "src/ParaClassFactory" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ParaClassFactory/CMakeFiles/ParaClassFactory_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ParaClassFactory/CMakeFiles/ParaClassFactory_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PluginCustomizer-Debug-0f948f4908d1c9eab8b8.json b/out/build/.cmake/api/v1/reply/target-PluginCustomizer-Debug-0f948f4908d1c9eab8b8.json new file mode 100644 index 0000000..022ff5f --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PluginCustomizer-Debug-0f948f4908d1c9eab8b8.json @@ -0,0 +1,1757 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/plugins/PluginCustomizer.dll" + }, + { + "path" : "Debug/plugins/PluginCustomizer.lib" + }, + { + "path" : "Debug/plugins/PluginCustomizer.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_dependencies", + "add_compile_options", + "target_compile_definitions", + "add_definitions", + "include_directories" + ], + "files" : + [ + "src/PluginCustomizer/CMakeLists.txt", + "src/CMakeLists.txt", + "src/PythonModule/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 29, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 78, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 50, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 2, + "file" : 2, + "line" : 44, + "parent" : 5 + }, + { + "command" : 3, + "file" : 0, + "line" : 58, + "parent" : 0 + }, + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 85, + "parent" : 8 + }, + { + "command" : 4, + "file" : 3, + "line" : 86, + "parent" : 8 + }, + { + "command" : 5, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "command" : 6, + "file" : 3, + "line" : 118, + "parent" : 8 + }, + { + "command" : 6, + "file" : 3, + "line" : 83, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 9, + "fragment" : "/utf-8" + }, + { + "backtrace" : 10, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 11, + "define" : "CUSTOMIZERPLUGIN_API" + }, + { + "backtrace" : 12, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "define" : "PluginCustomizer_EXPORTS" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_XML_LIB" + }, + { + "backtrace" : 13, + "define" : "UNICODE" + }, + { + "backtrace" : 13, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/PluginCustomizer" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/PluginCustomizer" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/PluginCustomizer/PluginCustomizer_autogen/include" + }, + { + "backtrace" : 14, + "path" : "D:/WBFZCPP/source/FastCAE/src/PluginCustomizer/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtXml" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 1, + 2, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 7, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 7, + "id" : "SARibbonBar::@f61b241723ced025d0ef" + }, + { + "backtrace" : 7, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 7, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 7, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 7, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 7, + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "backtrace" : 7, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 7, + "id" : "BCBase::@baf13bdd6bef809f2182" + }, + { + "backtrace" : 7, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 7, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 7, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 7, + "id" : "PostWidgets::@93a5592897f957e6fa57" + }, + { + "backtrace" : 7, + "id" : "ProjectTreeExtend::@f2791e4784919f40d89d" + }, + { + "backtrace" : 7, + "id" : "GeometryCommand::@d82e5b79e04a3b196df4" + }, + { + "backtrace" : 7, + "id" : "ProjectTree::@43c6c7ebae2b88a99cdb" + }, + { + "backtrace" : 7, + "id" : "SolverControl::@4a18b637ce8bf6991ec0" + }, + { + "backtrace" : 7, + "id" : "MainWidgets::@d0895ea365458bd7f948" + }, + { + "backtrace" : 7, + "id" : "IO::@484b42e69e32e953bc79" + }, + { + "backtrace" : 7, + "id" : "MainWindow::@c380e645ecc921453605" + }, + { + "backtrace" : 7, + "id" : "PluginManager::@d6a357cdda12b0c888b1" + }, + { + "backtrace" : 7, + "id" : "GeometryWidgets::@1fb7ae1802a587d65603" + }, + { + "id" : "PluginCustomizer_autogen_timestamp_deps::@5fa4d6e31c64d49d269b" + }, + { + "backtrace" : 0, + "id" : "PluginCustomizer_autogen::@5fa4d6e31c64d49d269b" + } + ], + "folder" : + { + "name" : "Plugins" + }, + "id" : "PluginCustomizer::@5fa4d6e31c64d49d269b", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin/plugins" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\MainWindow.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\SARibbonBar.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\MainWidgets.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ProjectTreeExtend.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ProjectTree.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\SolverControl.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PostWidgets.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\IO.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PluginManager.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\GeometryWidgets.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\GeometryCommand.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModuleBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModelData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ConfigOptions.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Material.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\SelfDefObject.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\BCBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\MeshData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Geometry.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Xmld.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PythonModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\Python\\libs\\python37.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Settings.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "PluginCustomizer", + "nameOnDisk" : "PluginCustomizer.dll", + "paths" : + { + "build" : "src/PluginCustomizer", + "source" : "src/PluginCustomizer" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 174 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/PluginCustomizer_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/qrc_qianfan.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/qrc_customizer.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_Editor3DFileValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_EditorBoolValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_EditorBoundaryModel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_EditorCurveInfo.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_EditorCurveModel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_EditorDependencyFiles.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_EditorDescripttionSetup.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_EditorDoubleValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_EditorEnumListValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_EditorEnumValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_EditorIntValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_EditorNameValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_EditorPathValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_EditorSolverManager.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_EditorSolverValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_EditorStringValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_EditorTableValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_FunctionTreeSetup.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_Generateinstallationpackage.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_ParaBasicSetup.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_ParaExportMeshSetup.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_ParaImportGeometrySetup.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_ParaImportMeshSetup.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_ParaLinkageManager.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_ParaUserManualSetup.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_ParametersLinkage.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/ui_TreeInformation.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/BoundaryModel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/Common.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/CreateChildModelFactory.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/CurveModel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/CustomParameterModel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/DataManager.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/Editor3DFileValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/EditorBoolValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/EditorBoundaryModel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/EditorCurveInfo.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/EditorCurveModel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/EditorDependencyFiles.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/EditorDescripttionSetup.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/EditorDoubleValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/EditorEnumListValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/EditorEnumValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/EditorIntValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/EditorNameValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/EditorPathValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/EditorSolverManager.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/EditorSolverValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/EditorStringValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/EditorTableValue.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/FileHelper.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/FunctionTreeSetup.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/Generateinstallationpackage.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/GetModelItemIconFactory.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/IOXml.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/InputValidator.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/MeshModel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/ModelBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/MonitorModel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/ParaBasicSetup.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/ParaExportMeshSetup.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/ParaImportGeometrySetup.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/ParaImportMeshSetup.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/ParaLinkageData.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/ParaLinkageManager.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/ParaManagerData.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/ParametersLinkage.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/Post2DCurveModel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/Post3DFileModel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/PostModel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/QFWidgetAction.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/SimulationModel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/SolverModel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/TreeInformation.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/ValidatorName.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/VectorModel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/WriteTreeConfig.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/WriterBCConfig.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/WriterBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/WriterDataConfig.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/WriterGlobalConfig.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/customizerActionManager.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/pluginCustomizer.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/pluginCustomizerAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginCustomizer/writerMaterialConfig.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/BoundaryModel.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/CreateChildModelFactory.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/CurveModel.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/CustomParameterModel.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/DataManager.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/Editor3DFileValue.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/EditorBoolValue.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/EditorBoundaryModel.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/EditorCurveInfo.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/EditorCurveModel.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/EditorDependencyFiles.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/EditorDescripttionSetup.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/EditorDoubleValue.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/EditorEnumListValue.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/EditorEnumValue.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/EditorIntValue.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/EditorNameValue.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/EditorPathValue.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/EditorSolverManager.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/EditorSolverValue.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/EditorStringValue.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/EditorTableValue.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/FileHelper.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/FunctionTreeSetup.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/Generateinstallationpackage.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/GetModelItemIconFactory.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/IOXml.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/InputValidator.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/MeshModel.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/ModelBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/MonitorModel.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/ParaBasicSetup.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/ParaExportMeshSetup.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/ParaImportGeometrySetup.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/ParaImportMeshSetup.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/ParaLinkageData.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/ParaLinkageManager.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/ParaManagerData.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/ParametersLinkage.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/Post2DCurveModel.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/Post3DFileModel.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/PostModel.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/QFWidgetAction.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/SimulationModel.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/SolverModel.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/TreeInformation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/ValidatorName.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/VectorModel.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/WriteTreeConfig.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/WriterBCConfig.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/WriterBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/WriterDataConfig.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/WriterGlobalConfig.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/customizerActionManager.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/pluginCustomizer.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginCustomizer/writerMaterialConfig.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/PluginCustomizer_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/qianfan.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/resource/customizer.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/Editor3DFileValue.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/EditorBoolValue.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/EditorBoundaryModel.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/EditorCurveInfo.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/EditorCurveModel.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/EditorDependencyFiles.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/EditorDescripttionSetup.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/EditorDoubleValue.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/EditorEnumListValue.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/EditorEnumValue.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/EditorIntValue.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/EditorNameValue.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/EditorPathValue.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/EditorSolverManager.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/EditorSolverValue.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/EditorStringValue.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/EditorTableValue.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/FunctionTreeSetup.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/Generateinstallationpackage.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/ParaBasicSetup.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/ParaExportMeshSetup.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/ParaImportGeometrySetup.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/ParaImportMeshSetup.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/ParaLinkageManager.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/ParaUserManualSetup.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/ParametersLinkage.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginCustomizer/TreeInformation.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/PluginCustomizer_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PluginCustomizer_autogen-Debug-2812c6c3f3d05883a603.json b/out/build/.cmake/api/v1/reply/target-PluginCustomizer_autogen-Debug-2812c6c3f3d05883a603.json new file mode 100644 index 0000000..a056309 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PluginCustomizer_autogen-Debug-2812c6c3f3d05883a603.json @@ -0,0 +1,163 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/PluginCustomizer/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 0, + "id" : "SARibbonBar::@f61b241723ced025d0ef" + }, + { + "backtrace" : 0, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 0, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 0, + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "backtrace" : 0, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 0, + "id" : "BCBase::@baf13bdd6bef809f2182" + }, + { + "backtrace" : 0, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 0, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 0, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 0, + "id" : "PostWidgets::@93a5592897f957e6fa57" + }, + { + "backtrace" : 0, + "id" : "ProjectTreeExtend::@f2791e4784919f40d89d" + }, + { + "backtrace" : 0, + "id" : "GeometryCommand::@d82e5b79e04a3b196df4" + }, + { + "backtrace" : 0, + "id" : "ProjectTree::@43c6c7ebae2b88a99cdb" + }, + { + "backtrace" : 0, + "id" : "SolverControl::@4a18b637ce8bf6991ec0" + }, + { + "backtrace" : 0, + "id" : "MainWidgets::@d0895ea365458bd7f948" + }, + { + "backtrace" : 0, + "id" : "IO::@484b42e69e32e953bc79" + }, + { + "backtrace" : 0, + "id" : "MainWindow::@c380e645ecc921453605" + }, + { + "backtrace" : 0, + "id" : "PluginManager::@d6a357cdda12b0c888b1" + }, + { + "backtrace" : 0, + "id" : "GeometryWidgets::@1fb7ae1802a587d65603" + }, + { + "id" : "PluginCustomizer_autogen_timestamp_deps::@5fa4d6e31c64d49d269b" + } + ], + "folder" : + { + "name" : "Plugins" + }, + "id" : "PluginCustomizer_autogen::@5fa4d6e31c64d49d269b", + "isGeneratorProvided" : true, + "name" : "PluginCustomizer_autogen", + "paths" : + { + "build" : "src/PluginCustomizer", + "source" : "src/PluginCustomizer" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/CMakeFiles/PluginCustomizer_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/CMakeFiles/PluginCustomizer_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/PluginCustomizer_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PluginCustomizer_autogen_timestamp_deps-Debug-60973f2e3d995049838b.json b/out/build/.cmake/api/v1/reply/target-PluginCustomizer_autogen_timestamp_deps-Debug-60973f2e3d995049838b.json new file mode 100644 index 0000000..e409b56 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PluginCustomizer_autogen_timestamp_deps-Debug-60973f2e3d995049838b.json @@ -0,0 +1,131 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/PluginCustomizer/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "SARibbonBar::@f61b241723ced025d0ef" + }, + { + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "id" : "BCBase::@baf13bdd6bef809f2182" + }, + { + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "id" : "PostWidgets::@93a5592897f957e6fa57" + }, + { + "id" : "ProjectTreeExtend::@f2791e4784919f40d89d" + }, + { + "id" : "GeometryCommand::@d82e5b79e04a3b196df4" + }, + { + "id" : "ProjectTree::@43c6c7ebae2b88a99cdb" + }, + { + "id" : "SolverControl::@4a18b637ce8bf6991ec0" + }, + { + "id" : "MainWidgets::@d0895ea365458bd7f948" + }, + { + "id" : "IO::@484b42e69e32e953bc79" + }, + { + "id" : "MainWindow::@c380e645ecc921453605" + }, + { + "id" : "PluginManager::@d6a357cdda12b0c888b1" + }, + { + "id" : "GeometryWidgets::@1fb7ae1802a587d65603" + } + ], + "folder" : + { + "name" : "Plugins" + }, + "id" : "PluginCustomizer_autogen_timestamp_deps::@5fa4d6e31c64d49d269b", + "isGeneratorProvided" : true, + "name" : "PluginCustomizer_autogen_timestamp_deps", + "paths" : + { + "build" : "src/PluginCustomizer", + "source" : "src/PluginCustomizer" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/CMakeFiles/PluginCustomizer_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginCustomizer/CMakeFiles/PluginCustomizer_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PluginManager-Debug-755ce2dd42422dcee2f8.json b/out/build/.cmake/api/v1/reply/target-PluginManager-Debug-755ce2dd42422dcee2f8.json new file mode 100644 index 0000000..7e62991 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PluginManager-Debug-755ce2dd42422dcee2f8.json @@ -0,0 +1,441 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/PluginManager.dll" + }, + { + "path" : "Debug/PluginManager.lib" + }, + { + "path" : "Debug/PluginManager.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_dependencies", + "add_compile_options", + "add_definitions", + "target_compile_definitions", + "include_directories" + ], + "files" : + [ + "src/PluginManager/CMakeLists.txt", + "src/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 22, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 42, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 50, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 85, + "parent" : 6 + }, + { + "command" : 4, + "file" : 2, + "line" : 86, + "parent" : 6 + }, + { + "command" : 5, + "file" : 2, + "line" : 118, + "parent" : 6 + }, + { + "command" : 6, + "file" : 0, + "line" : 31, + "parent" : 0 + }, + { + "command" : 5, + "file" : 2, + "line" : 83, + "parent" : 6 + }, + { + "command" : 7, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 7, + "fragment" : "/utf-8" + }, + { + "backtrace" : 8, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 9, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 10, + "define" : "PLUGINMANAGER_API" + }, + { + "define" : "PluginManager_EXPORTS" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_XML_LIB" + }, + { + "backtrace" : 11, + "define" : "UNICODE" + }, + { + "backtrace" : 11, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/PluginManager" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/PluginManager" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/PluginManager/PluginManager_autogen/include" + }, + { + "backtrace" : 12, + "path" : "D:/WBFZCPP/source/FastCAE/src/PluginManager/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtXml" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 6, + 7, + 8 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 5, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 5, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 5, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "id" : "PluginManager_autogen_timestamp_deps::@d6a357cdda12b0c888b1" + }, + { + "backtrace" : 0, + "id" : "PluginManager_autogen::@d6a357cdda12b0c888b1" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PluginManager::@d6a357cdda12b0c888b1", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModuleBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Settings.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Xmld.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "PluginManager", + "nameOnDisk" : "PluginManager.dll", + "paths" : + { + "build" : "src/PluginManager", + "source" : "src/PluginManager" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 6, + 7, + 8 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 9, + 10 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 11 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginManager/PluginManager_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PluginManager/ui_PluginManageDialog.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginManager/PluginManageDialog.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginManager/PluginManager.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginManager/PluginManagerAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginManager/pluginBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginManager/PluginManageDialog.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginManager/PluginManager.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginManager/pluginBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginManager/PluginManager_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PluginManager/PluginManageDialog.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginManager/PluginManager_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PluginManager_autogen-Debug-ee1b7178c11752bbf1c0.json b/out/build/.cmake/api/v1/reply/target-PluginManager_autogen-Debug-ee1b7178c11752bbf1c0.json new file mode 100644 index 0000000..f7bee3c --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PluginManager_autogen-Debug-ee1b7178c11752bbf1c0.json @@ -0,0 +1,87 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/PluginManager/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "id" : "PluginManager_autogen_timestamp_deps::@d6a357cdda12b0c888b1" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PluginManager_autogen::@d6a357cdda12b0c888b1", + "isGeneratorProvided" : true, + "name" : "PluginManager_autogen", + "paths" : + { + "build" : "src/PluginManager", + "source" : "src/PluginManager" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginManager/CMakeFiles/PluginManager_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginManager/CMakeFiles/PluginManager_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginManager/PluginManager_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PluginManager_autogen_timestamp_deps-Debug-d0381371d1aa76811c59.json b/out/build/.cmake/api/v1/reply/target-PluginManager_autogen_timestamp_deps-Debug-d0381371d1aa76811c59.json new file mode 100644 index 0000000..eecf1e9 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PluginManager_autogen_timestamp_deps-Debug-d0381371d1aa76811c59.json @@ -0,0 +1,74 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/PluginManager/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PluginManager_autogen_timestamp_deps::@d6a357cdda12b0c888b1", + "isGeneratorProvided" : true, + "name" : "PluginManager_autogen_timestamp_deps", + "paths" : + { + "build" : "src/PluginManager", + "source" : "src/PluginManager" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginManager/CMakeFiles/PluginManager_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginManager/CMakeFiles/PluginManager_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PluginMeshDataExchange-Debug-0c4480496742435080da.json b/out/build/.cmake/api/v1/reply/target-PluginMeshDataExchange-Debug-0c4480496742435080da.json new file mode 100644 index 0000000..f02cf10 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PluginMeshDataExchange-Debug-0c4480496742435080da.json @@ -0,0 +1,1000 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/plugins/PluginMeshDataExchange.dll" + }, + { + "path" : "Debug/plugins/PluginMeshDataExchange.lib" + }, + { + "path" : "Debug/plugins/PluginMeshDataExchange.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "set_property", + "find_package", + "add_dependencies", + "add_compile_options", + "target_compile_definitions", + "add_definitions", + "include_directories" + ], + "files" : + [ + "src/PluginMeshDataExchange/CMakeLists.txt", + "src/CMakeLists.txt", + "cmake/FindCGNS.cmake", + "CMakeLists.txt", + "src/PythonModule/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 29, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 78, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 55, + "parent" : 0 + }, + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 195, + "parent" : 5 + }, + { + "file" : 2, + "parent" : 6 + }, + { + "command" : 3, + "file" : 2, + "line" : 72, + "parent" : 7 + }, + { + "file" : 4 + }, + { + "command" : 2, + "file" : 4, + "line" : 44, + "parent" : 9 + }, + { + "command" : 5, + "file" : 0, + "line" : 63, + "parent" : 0 + }, + { + "command" : 6, + "file" : 3, + "line" : 85, + "parent" : 5 + }, + { + "command" : 6, + "file" : 3, + "line" : 86, + "parent" : 5 + }, + { + "command" : 7, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "command" : 8, + "file" : 3, + "line" : 118, + "parent" : 5 + }, + { + "command" : 8, + "file" : 3, + "line" : 83, + "parent" : 5 + }, + { + "command" : 9, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 12, + "fragment" : "/utf-8" + }, + { + "backtrace" : 13, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 4, + "define" : "H5_BUILT_AS_DYNAMIC_LIB" + }, + { + "backtrace" : 14, + "define" : "MESHDATAEXCHANGEPLUGIN_API" + }, + { + "backtrace" : 15, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "define" : "PluginMeshDataExchange_EXPORTS" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_XML_LIB" + }, + { + "backtrace" : 16, + "define" : "UNICODE" + }, + { + "backtrace" : 16, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/PluginMeshDataExchange" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/PluginMeshDataExchange" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/PluginMeshDataExchange/PluginMeshDataExchange_autogen/include" + }, + { + "backtrace" : 17, + "path" : "D:/WBFZCPP/source/FastCAE/src/PluginMeshDataExchange/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/vcpkg/installed/x64-windows/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/HDF5/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtXml" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/VTK/include/vtk-9.3" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 1, + 2, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 11, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 11, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 11, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 11, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 11, + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "backtrace" : 11, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 11, + "id" : "BCBase::@baf13bdd6bef809f2182" + }, + { + "backtrace" : 11, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 11, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 11, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 11, + "id" : "GeometryCommand::@d82e5b79e04a3b196df4" + }, + { + "backtrace" : 11, + "id" : "MainWidgets::@d0895ea365458bd7f948" + }, + { + "backtrace" : 11, + "id" : "IO::@484b42e69e32e953bc79" + }, + { + "backtrace" : 11, + "id" : "MainWindow::@c380e645ecc921453605" + }, + { + "backtrace" : 11, + "id" : "PluginManager::@d6a357cdda12b0c888b1" + }, + { + "backtrace" : 11, + "id" : "GeometryWidgets::@1fb7ae1802a587d65603" + }, + { + "id" : "PluginMeshDataExchange_autogen_timestamp_deps::@b3cc41d3de9d0b479d36" + }, + { + "backtrace" : 0, + "id" : "PluginMeshDataExchange_autogen::@b3cc41d3de9d0b479d36" + } + ], + "folder" : + { + "name" : "Plugins" + }, + "id" : "PluginMeshDataExchange::@b3cc41d3de9d0b479d36", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin/plugins" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOChemistry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingLOD-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\MainWindow.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\MainWidgets.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\IO.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PluginManager.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\GeometryWidgets.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\GeometryCommand.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModuleBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModelData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ConfigOptions.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Material.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\SelfDefObject.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\BCBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\MeshData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Geometry.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Xmld.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "D:\\vcpkg\\installed\\x64-windows\\lib\\cgnsdll.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonColor-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonComputationalGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonDataModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonExecutionModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMisc-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonSystem-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonTransforms-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkDICOMParser-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeneral-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersHybrid-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersModeling-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersSources-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOImage-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOLegacy-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingSources-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkdoubleconversion-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkjpeg-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkjsoncpp-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklz4-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklzma-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkmetaio-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkpng-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkpugixml-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtksys-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtktiff-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkzlib-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 8, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\HDF5\\lib\\hdf5.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PythonModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 10, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\Python\\libs\\python37.lib", + "role" : "libraries" + }, + { + "backtrace" : 10, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "PluginMeshDataExchange", + "nameOnDisk" : "PluginMeshDataExchange.dll", + "paths" : + { + "build" : "src/PluginMeshDataExchange", + "source" : "src/PluginMeshDataExchange" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 34, + 35, + 36 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 37 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginMeshDataExchange/PluginMeshDataExchange_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginMeshDataExchange/qrc_qianfan.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginMeshDataExchange/qrc_translations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "src/PluginMeshDataExchange/BDFdataExchange.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginMeshDataExchange/CDBdataExchange.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginMeshDataExchange/CGNSdataExchange.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginMeshDataExchange/CNTMdataExchange.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginMeshDataExchange/FEMdataExchange.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginMeshDataExchange/FoamDataExchange.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginMeshDataExchange/INPdataExchange.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginMeshDataExchange/KEYdataExchange.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginMeshDataExchange/MSHdataExchange.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginMeshDataExchange/MeshThreadBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginMeshDataExchange/NEUdataExchange.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginMeshDataExchange/PDBdataExchange.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginMeshDataExchange/SU2dataExchange.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginMeshDataExchange/VTKdataExchange.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginMeshDataExchange/meshDataExchangePlugin.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PluginMeshDataExchange/meshDataExchangePluginAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginMeshDataExchange/BDFdataExchange.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginMeshDataExchange/CDBdataExchange.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginMeshDataExchange/CGNSdataExchange.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginMeshDataExchange/CNTMdataExchange.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginMeshDataExchange/FEMdataExchange.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginMeshDataExchange/FoamDataExchange.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginMeshDataExchange/INPdataExchange.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginMeshDataExchange/KEYdataExchange.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginMeshDataExchange/MSHdataExchange.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginMeshDataExchange/MeshThreadBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginMeshDataExchange/NEUdataExchange.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginMeshDataExchange/PDBdataExchange.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginMeshDataExchange/SU2dataExchange.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginMeshDataExchange/VTKdataExchange.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PluginMeshDataExchange/meshDataExchangePlugin.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginMeshDataExchange/PluginMeshDataExchange_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/qianfan.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/translations.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginMeshDataExchange/PluginMeshDataExchange_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PluginMeshDataExchange_autogen-Debug-3ccfe21a7a9c5c090bf0.json b/out/build/.cmake/api/v1/reply/target-PluginMeshDataExchange_autogen-Debug-3ccfe21a7a9c5c090bf0.json new file mode 100644 index 0000000..4fe1718 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PluginMeshDataExchange_autogen-Debug-3ccfe21a7a9c5c090bf0.json @@ -0,0 +1,139 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/PluginMeshDataExchange/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 0, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 0, + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "backtrace" : 0, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 0, + "id" : "BCBase::@baf13bdd6bef809f2182" + }, + { + "backtrace" : 0, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 0, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 0, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 0, + "id" : "GeometryCommand::@d82e5b79e04a3b196df4" + }, + { + "backtrace" : 0, + "id" : "MainWidgets::@d0895ea365458bd7f948" + }, + { + "backtrace" : 0, + "id" : "IO::@484b42e69e32e953bc79" + }, + { + "backtrace" : 0, + "id" : "MainWindow::@c380e645ecc921453605" + }, + { + "backtrace" : 0, + "id" : "PluginManager::@d6a357cdda12b0c888b1" + }, + { + "backtrace" : 0, + "id" : "GeometryWidgets::@1fb7ae1802a587d65603" + }, + { + "id" : "PluginMeshDataExchange_autogen_timestamp_deps::@b3cc41d3de9d0b479d36" + } + ], + "folder" : + { + "name" : "Plugins" + }, + "id" : "PluginMeshDataExchange_autogen::@b3cc41d3de9d0b479d36", + "isGeneratorProvided" : true, + "name" : "PluginMeshDataExchange_autogen", + "paths" : + { + "build" : "src/PluginMeshDataExchange", + "source" : "src/PluginMeshDataExchange" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginMeshDataExchange/CMakeFiles/PluginMeshDataExchange_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginMeshDataExchange/CMakeFiles/PluginMeshDataExchange_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginMeshDataExchange/PluginMeshDataExchange_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PluginMeshDataExchange_autogen_timestamp_deps-Debug-d5be7669b02c7bdfa374.json b/out/build/.cmake/api/v1/reply/target-PluginMeshDataExchange_autogen_timestamp_deps-Debug-d5be7669b02c7bdfa374.json new file mode 100644 index 0000000..e6777c5 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PluginMeshDataExchange_autogen_timestamp_deps-Debug-d5be7669b02c7bdfa374.json @@ -0,0 +1,113 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/PluginMeshDataExchange/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "id" : "BCBase::@baf13bdd6bef809f2182" + }, + { + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "id" : "GeometryCommand::@d82e5b79e04a3b196df4" + }, + { + "id" : "MainWidgets::@d0895ea365458bd7f948" + }, + { + "id" : "IO::@484b42e69e32e953bc79" + }, + { + "id" : "MainWindow::@c380e645ecc921453605" + }, + { + "id" : "PluginManager::@d6a357cdda12b0c888b1" + }, + { + "id" : "GeometryWidgets::@1fb7ae1802a587d65603" + } + ], + "folder" : + { + "name" : "Plugins" + }, + "id" : "PluginMeshDataExchange_autogen_timestamp_deps::@b3cc41d3de9d0b479d36", + "isGeneratorProvided" : true, + "name" : "PluginMeshDataExchange_autogen_timestamp_deps", + "paths" : + { + "build" : "src/PluginMeshDataExchange", + "source" : "src/PluginMeshDataExchange" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginMeshDataExchange/CMakeFiles/PluginMeshDataExchange_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PluginMeshDataExchange/CMakeFiles/PluginMeshDataExchange_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PostAlgorithm-Debug-ec3da06ebd5001e51f61.json b/out/build/.cmake/api/v1/reply/target-PostAlgorithm-Debug-ec3da06ebd5001e51f61.json new file mode 100644 index 0000000..f4fa2ba --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PostAlgorithm-Debug-ec3da06ebd5001e51f61.json @@ -0,0 +1,744 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/PostAlgorithm.dll" + }, + { + "path" : "Debug/PostAlgorithm.lib" + }, + { + "path" : "Debug/PostAlgorithm.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_dependencies", + "add_compile_options", + "add_definitions", + "target_compile_definitions", + "include_directories" + ], + "files" : + [ + "src/PostAlgorithm/CMakeLists.txt", + "src/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 20, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 40, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 48, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 85, + "parent" : 6 + }, + { + "command" : 4, + "file" : 2, + "line" : 86, + "parent" : 6 + }, + { + "command" : 5, + "file" : 2, + "line" : 118, + "parent" : 6 + }, + { + "command" : 6, + "file" : 0, + "line" : 28, + "parent" : 0 + }, + { + "command" : 5, + "file" : 2, + "line" : 83, + "parent" : 6 + }, + { + "command" : 7, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 7, + "fragment" : "/utf-8" + }, + { + "backtrace" : 8, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 4, + "define" : "H5_BUILT_AS_DYNAMIC_LIB" + }, + { + "backtrace" : 9, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 10, + "define" : "POSTALGORITHM_API" + }, + { + "define" : "PostAlgorithm_EXPORTS" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 11, + "define" : "UNICODE" + }, + { + "backtrace" : 11, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/PostAlgorithm" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/PostAlgorithm" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/PostAlgorithm/PostAlgorithm_autogen/include" + }, + { + "backtrace" : 12, + "path" : "D:/WBFZCPP/source/FastCAE/src/PostAlgorithm/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/vcpkg/installed/x64-windows/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/HDF5/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/TecIO/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/VTK/include/vtk-9.3" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 5, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "id" : "PostAlgorithm_autogen_timestamp_deps::@d527967401306b818905" + }, + { + "backtrace" : 0, + "id" : "PostAlgorithm_autogen::@d527967401306b818905" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PostAlgorithm::@d527967401306b818905", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "D:\\vcpkg\\installed\\x64-windows\\lib\\cgnsdll.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\HDF5\\lib\\hdf5_cpp.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\TecIO\\lib\\tecio.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonColor-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonComputationalGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonDataModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonExecutionModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMisc-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonSystem-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonTransforms-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkDICOMParser-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersExtraction-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeneral-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersHybrid-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersModeling-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersParallel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersSources-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersStatistics-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersTexture-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOImage-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOLegacy-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOParallel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXML-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXMLParser-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingFourier-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingSources-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelDIY-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkdoubleconversion-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkexpat-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkjpeg-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkjsoncpp-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklz4-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklzma-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkmetaio-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkpng-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkpugixml-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtksys-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtktiff-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkzlib-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\HDF5\\lib\\hdf5.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "PostAlgorithm", + "nameOnDisk" : "PostAlgorithm.dll", + "paths" : + { + "build" : "src/PostAlgorithm", + "source" : "src/PostAlgorithm" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 24 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 25 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostAlgorithm/PostAlgorithm_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "src/PostAlgorithm/CGNSReaderAlgorithm.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostAlgorithm/DataSetIntegrationAlgorithm.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostAlgorithm/FCGNSGridReaderBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostAlgorithm/FCGNSReader.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostAlgorithm/FCGNSStructureZoneReader.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostAlgorithm/FCGNSUnStructureZoneReader.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostAlgorithm/GlyphingAlgorithm.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostAlgorithm/Plot3DReaderAlgorithm.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostAlgorithm/PostAlgorithmAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostAlgorithm/SimplifyAlgorithm.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostAlgorithm/SzpltReader.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostAlgorithm/TecSzpltReaderAlgorithm.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostAlgorithm/CGNSReaderAlgorithm.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostAlgorithm/DataSetIntegrationAlgorithm.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostAlgorithm/FCGNSGridReaderBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostAlgorithm/FCGNSReader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostAlgorithm/FCGNSStructureZoneReader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostAlgorithm/FCGNSUnStructureZoneReader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostAlgorithm/GlyphingAlgorithm.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostAlgorithm/Plot3DReaderAlgorithm.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostAlgorithm/SimplifyAlgorithm.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostAlgorithm/SzpltReader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostAlgorithm/TecSzpltReaderAlgorithm.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostAlgorithm/PostAlgorithm_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostAlgorithm/PostAlgorithm_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PostAlgorithm_autogen-Debug-0861aa8a82e0acf36e01.json b/out/build/.cmake/api/v1/reply/target-PostAlgorithm_autogen-Debug-0861aa8a82e0acf36e01.json new file mode 100644 index 0000000..1dca4ae --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PostAlgorithm_autogen-Debug-0861aa8a82e0acf36e01.json @@ -0,0 +1,79 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/PostAlgorithm/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "id" : "PostAlgorithm_autogen_timestamp_deps::@d527967401306b818905" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PostAlgorithm_autogen::@d527967401306b818905", + "isGeneratorProvided" : true, + "name" : "PostAlgorithm_autogen", + "paths" : + { + "build" : "src/PostAlgorithm", + "source" : "src/PostAlgorithm" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostAlgorithm/CMakeFiles/PostAlgorithm_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostAlgorithm/CMakeFiles/PostAlgorithm_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostAlgorithm/PostAlgorithm_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PostAlgorithm_autogen_timestamp_deps-Debug-6945a732d8452980c390.json b/out/build/.cmake/api/v1/reply/target-PostAlgorithm_autogen_timestamp_deps-Debug-6945a732d8452980c390.json new file mode 100644 index 0000000..1bc55cc --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PostAlgorithm_autogen_timestamp_deps-Debug-6945a732d8452980c390.json @@ -0,0 +1,68 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/PostAlgorithm/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "Common::@29aabc9fbfb9b5406d55" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PostAlgorithm_autogen_timestamp_deps::@d527967401306b818905", + "isGeneratorProvided" : true, + "name" : "PostAlgorithm_autogen_timestamp_deps", + "paths" : + { + "build" : "src/PostAlgorithm", + "source" : "src/PostAlgorithm" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostAlgorithm/CMakeFiles/PostAlgorithm_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostAlgorithm/CMakeFiles/PostAlgorithm_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PostCurveDataManager-Debug-b7ed0d2c648b1281cac4.json b/out/build/.cmake/api/v1/reply/target-PostCurveDataManager-Debug-b7ed0d2c648b1281cac4.json new file mode 100644 index 0000000..488bfaa --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PostCurveDataManager-Debug-b7ed0d2c648b1281cac4.json @@ -0,0 +1,361 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/PostCurveDataManager.dll" + }, + { + "path" : "Debug/PostCurveDataManager.lib" + }, + { + "path" : "Debug/PostCurveDataManager.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_compile_options", + "add_definitions", + "target_compile_definitions", + "include_directories" + ], + "files" : + [ + "src/PostCurveDataManager/CMakeLists.txt", + "src/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 20, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 37, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 85, + "parent" : 5 + }, + { + "command" : 3, + "file" : 2, + "line" : 86, + "parent" : 5 + }, + { + "command" : 4, + "file" : 2, + "line" : 118, + "parent" : 5 + }, + { + "command" : 5, + "file" : 0, + "line" : 28, + "parent" : 0 + }, + { + "command" : 4, + "file" : 2, + "line" : 83, + "parent" : 5 + }, + { + "command" : 6, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 6, + "fragment" : "/utf-8" + }, + { + "backtrace" : 7, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 9, + "define" : "POSTCURVEDATAMANAGER_API" + }, + { + "define" : "PostCurveDataManager_EXPORTS" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 10, + "define" : "UNICODE" + }, + { + "backtrace" : 10, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/PostCurveDataManager" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/PostCurveDataManager" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/PostCurveDataManager/PostCurveDataManager_autogen/include" + }, + { + "backtrace" : 11, + "path" : "D:/WBFZCPP/source/FastCAE/src/PostCurveDataManager/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 6, + 7, + 8, + 9 + ] + } + ], + "dependencies" : + [ + { + "id" : "PostCurveDataManager_autogen_timestamp_deps::@1562c6ae2d37fb33544b" + }, + { + "backtrace" : 0, + "id" : "PostCurveDataManager_autogen::@1562c6ae2d37fb33544b" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PostCurveDataManager::@1562c6ae2d37fb33544b", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "PostCurveDataManager", + "nameOnDisk" : "PostCurveDataManager.dll", + "paths" : + { + "build" : "src/PostCurveDataManager", + "source" : "src/PostCurveDataManager" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 6, + 7, + 8, + 9 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 10 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 11 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostCurveDataManager/PostCurveDataManager_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "src/PostCurveDataManager/CurveDataReader.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostCurveDataManager/PostCurveData.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostCurveDataManager/PostCurveDataManagerAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostCurveDataManager/PostData.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostCurveDataManager/PostDataPart.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostCurveDataManager/CurveDataReader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostCurveDataManager/PostCurveData.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostCurveDataManager/PostData.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostCurveDataManager/PostDataPart.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostCurveDataManager/PostCurveDataManager_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostCurveDataManager/PostCurveDataManager_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PostCurveDataManager_autogen-Debug-727985a535e65b59ad2e.json b/out/build/.cmake/api/v1/reply/target-PostCurveDataManager_autogen-Debug-727985a535e65b59ad2e.json new file mode 100644 index 0000000..e972b85 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PostCurveDataManager_autogen-Debug-727985a535e65b59ad2e.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/PostCurveDataManager/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "PostCurveDataManager_autogen_timestamp_deps::@1562c6ae2d37fb33544b" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PostCurveDataManager_autogen::@1562c6ae2d37fb33544b", + "isGeneratorProvided" : true, + "name" : "PostCurveDataManager_autogen", + "paths" : + { + "build" : "src/PostCurveDataManager", + "source" : "src/PostCurveDataManager" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostCurveDataManager/CMakeFiles/PostCurveDataManager_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostCurveDataManager/CMakeFiles/PostCurveDataManager_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostCurveDataManager/PostCurveDataManager_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PostCurveDataManager_autogen_timestamp_deps-Debug-8d9d8030c97419083413.json b/out/build/.cmake/api/v1/reply/target-PostCurveDataManager_autogen_timestamp_deps-Debug-8d9d8030c97419083413.json new file mode 100644 index 0000000..bca5940 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PostCurveDataManager_autogen_timestamp_deps-Debug-8d9d8030c97419083413.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/PostCurveDataManager/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "Modules" + }, + "id" : "PostCurveDataManager_autogen_timestamp_deps::@1562c6ae2d37fb33544b", + "isGeneratorProvided" : true, + "name" : "PostCurveDataManager_autogen_timestamp_deps", + "paths" : + { + "build" : "src/PostCurveDataManager", + "source" : "src/PostCurveDataManager" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostCurveDataManager/CMakeFiles/PostCurveDataManager_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostCurveDataManager/CMakeFiles/PostCurveDataManager_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PostInterface-Debug-322491428ba469c003e2.json b/out/build/.cmake/api/v1/reply/target-PostInterface-Debug-322491428ba469c003e2.json new file mode 100644 index 0000000..fa9e988 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PostInterface-Debug-322491428ba469c003e2.json @@ -0,0 +1,1257 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/PostInterface.dll" + }, + { + "path" : "Debug/PostInterface.lib" + }, + { + "path" : "Debug/PostInterface.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_dependencies", + "add_compile_options", + "add_definitions", + "target_compile_definitions", + "include_directories" + ], + "files" : + [ + "src/PostInterface/CMakeLists.txt", + "src/CMakeLists.txt", + "src/PythonModule/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 29, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 50, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 2, + "file" : 2, + "line" : 44, + "parent" : 5 + }, + { + "command" : 3, + "file" : 0, + "line" : 58, + "parent" : 0 + }, + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 85, + "parent" : 8 + }, + { + "command" : 4, + "file" : 3, + "line" : 86, + "parent" : 8 + }, + { + "command" : 5, + "file" : 3, + "line" : 118, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "command" : 5, + "file" : 3, + "line" : 83, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 9, + "fragment" : "/utf-8" + }, + { + "backtrace" : 10, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 11, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 12, + "define" : "POSTINTERFACE_API" + }, + { + "define" : "PostInterface_EXPORTS" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 13, + "define" : "UNICODE" + }, + { + "backtrace" : 13, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/PostInterface" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/PostInterface" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/PostInterface/PostInterface_autogen/include" + }, + { + "backtrace" : 14, + "path" : "D:/WBFZCPP/source/FastCAE/src/PostInterface/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/VTK/include/vtk-9.3" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 1, + 2, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 7, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 7, + "id" : "PostRenderData::@ce9c2f9a6cca9038fdeb" + }, + { + "id" : "PostInterface_autogen_timestamp_deps::@38fb729d68510c1489c9" + }, + { + "backtrace" : 0, + "id" : "PostInterface_autogen::@38fb729d68510c1489c9" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PostInterface::@38fb729d68510c1489c9", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkGUISupportQt-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOMovie-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingOpenGL2-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingUI-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkglew-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PythonModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PostRenderData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\Python\\libs\\python37.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingColor-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingGeneral-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingHybrid-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkInteractionStyle-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkInteractionWidgets-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingAnnotation-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingFreeType-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingVolume-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkfreetype-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonColor-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonComputationalGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonDataModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonExecutionModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMisc-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonSystem-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonTransforms-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkDICOMParser-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersExtraction-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeneral-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersHybrid-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersModeling-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersSources-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersStatistics-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOImage-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOLegacy-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXML-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXMLParser-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingFourier-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingSources-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelDIY-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkdoubleconversion-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkexpat-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkjpeg-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklz4-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklzma-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkmetaio-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkpng-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkpugixml-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtksys-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtktiff-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkzlib-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "PostInterface", + "nameOnDisk" : "PostInterface.dll", + "paths" : + { + "build" : "src/PostInterface", + "source" : "src/PostInterface" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 89 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/PostInterface_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/qrc_qianfan.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/qrc_translations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/ui_DialogCreateCalculate.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/ui_DialogCreateClip.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/ui_DialogCreateISO.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/ui_DialogCreateReflection.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/ui_DialogCreateStreamLine.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/ui_DialogCreateVector.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/ui_DialogFileDirectory.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/ui_DialogLightSetting.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/ui_DialogRenderSetting.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/ui_DialogRenderTitle.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/ui_DialogSaveAnimation.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/ui_DialogSetBackgroundColor.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/ui_GraphWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/ui_PostInfoWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/AniGlobalVar.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/AniThread.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/AnimationToolBar.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/DialogCreateCalculate.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/DialogCreateClip.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/DialogCreateISO.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/DialogCreateReflection.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/DialogCreateStreamLine.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/DialogCreateVector.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/DialogFileDirectory.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/DialogLightSetting.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/DialogRenderSetting.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/DialogRenderTitle.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/DialogSaveAnimation.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/DialogSetBackgroundColor.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/FLineCallback.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/FuncCallback.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/GenerateAnimation.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/GraphWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/LineWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/PostFunctionDialogBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/PostInfoWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/PostInterfaceAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/PostProcessPy.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/PostTreeWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/RenderDirector.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/RenderWindowManager.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostInterface/ShearPlaneWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/AniGlobalVar.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/AniThread.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/AnimationToolBar.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/DialogCreateCalculate.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/DialogCreateClip.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/DialogCreateISO.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/DialogCreateReflection.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/DialogCreateStreamLine.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/DialogCreateVector.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/DialogFileDirectory.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/DialogLightSetting.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/DialogRenderSetting.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/DialogRenderTitle.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/DialogSaveAnimation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/DialogSetBackgroundColor.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/FLineCallback.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/FuncCallback.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/GenerateAnimation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/GraphWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/LineWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/PostFunctionDialogBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/PostInfoWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/PostProcessPy.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/PostTreeWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/RenderDirector.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/RenderWindowManager.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostInterface/ShearPlaneWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/PostInterface_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/qianfan.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/translations.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostInterface/DialogCreateCalculate.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostInterface/DialogCreateClip.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostInterface/DialogCreateISO.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostInterface/DialogCreateReflection.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostInterface/DialogCreateStreamLine.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostInterface/DialogCreateVector.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostInterface/DialogFileDirectory.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostInterface/DialogLightSetting.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostInterface/DialogRenderSetting.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostInterface/DialogRenderTitle.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostInterface/DialogSaveAnimation.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostInterface/DialogSetBackgroundColor.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostInterface/GraphWidget.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostInterface/PostInfoWidget.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/PostInterface_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PostInterface_autogen-Debug-1d65f102a2d63a3c451a.json b/out/build/.cmake/api/v1/reply/target-PostInterface_autogen-Debug-1d65f102a2d63a3c451a.json new file mode 100644 index 0000000..6370e32 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PostInterface_autogen-Debug-1d65f102a2d63a3c451a.json @@ -0,0 +1,83 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/PostInterface/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 0, + "id" : "PostRenderData::@ce9c2f9a6cca9038fdeb" + }, + { + "id" : "PostInterface_autogen_timestamp_deps::@38fb729d68510c1489c9" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PostInterface_autogen::@38fb729d68510c1489c9", + "isGeneratorProvided" : true, + "name" : "PostInterface_autogen", + "paths" : + { + "build" : "src/PostInterface", + "source" : "src/PostInterface" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/CMakeFiles/PostInterface_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/CMakeFiles/PostInterface_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/PostInterface_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PostInterface_autogen_timestamp_deps-Debug-4fe15b4d2497d788318d.json b/out/build/.cmake/api/v1/reply/target-PostInterface_autogen_timestamp_deps-Debug-4fe15b4d2497d788318d.json new file mode 100644 index 0000000..f98bb84 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PostInterface_autogen_timestamp_deps-Debug-4fe15b4d2497d788318d.json @@ -0,0 +1,71 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/PostInterface/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "PostRenderData::@ce9c2f9a6cca9038fdeb" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PostInterface_autogen_timestamp_deps::@38fb729d68510c1489c9", + "isGeneratorProvided" : true, + "name" : "PostInterface_autogen_timestamp_deps", + "paths" : + { + "build" : "src/PostInterface", + "source" : "src/PostInterface" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/CMakeFiles/PostInterface_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostInterface/CMakeFiles/PostInterface_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PostPlotWidget-Debug-48dff7a72d1b23e5c9d9.json b/out/build/.cmake/api/v1/reply/target-PostPlotWidget-Debug-48dff7a72d1b23e5c9d9.json new file mode 100644 index 0000000..f8beedb --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PostPlotWidget-Debug-48dff7a72d1b23e5c9d9.json @@ -0,0 +1,497 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/PostPlotWidget.dll" + }, + { + "path" : "Debug/PostPlotWidget.lib" + }, + { + "path" : "Debug/PostPlotWidget.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_dependencies", + "add_compile_options", + "add_definitions", + "target_compile_definitions", + "include_directories" + ], + "files" : + [ + "src/PostPlotWidget/CMakeLists.txt", + "src/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 22, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 41, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 49, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 85, + "parent" : 6 + }, + { + "command" : 4, + "file" : 2, + "line" : 86, + "parent" : 6 + }, + { + "command" : 5, + "file" : 2, + "line" : 118, + "parent" : 6 + }, + { + "command" : 6, + "file" : 0, + "line" : 31, + "parent" : 0 + }, + { + "command" : 5, + "file" : 2, + "line" : 83, + "parent" : 6 + }, + { + "command" : 7, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 7, + "fragment" : "/utf-8" + }, + { + "backtrace" : 8, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 9, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 10, + "define" : "POSTPLOTWIDGET_API" + }, + { + "define" : "PostPlotWidget_EXPORTS" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_OPENGL_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_PRINTSUPPORT_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_SVG_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 4, + "define" : "QWT_DLL" + }, + { + "backtrace" : 11, + "define" : "UNICODE" + }, + { + "backtrace" : 11, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/PostPlotWidget" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/PostPlotWidget" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/PostPlotWidget/PostPlotWidget_autogen/include" + }, + { + "backtrace" : 12, + "path" : "D:/WBFZCPP/source/FastCAE/src/PostPlotWidget/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtOpenGL" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtSvg" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtPrintSupport" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qwt/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 8, + 9, + 10, + 11 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 5, + "id" : "PostCurveDataManager::@1562c6ae2d37fb33544b" + }, + { + "id" : "PostPlotWidget_autogen_timestamp_deps::@d1bc8a76442dff50f241" + }, + { + "backtrace" : 0, + "id" : "PostPlotWidget_autogen::@d1bc8a76442dff50f241" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PostPlotWidget::@d1bc8a76442dff50f241", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qwt\\lib\\qwtd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PostCurveDataManager.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5PrintSupportd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qwt\\lib\\qwtd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5OpenGLd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Svgd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "PostPlotWidget", + "nameOnDisk" : "PostPlotWidget.dll", + "paths" : + { + "build" : "src/PostPlotWidget", + "source" : "src/PostPlotWidget" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 8, + 9, + 10, + 11 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 12, + 13, + 14 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 15 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostPlotWidget/PostPlotWidget_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostPlotWidget/ui_PlotMainWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostPlotWidget/ui_PropertyWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostPlotWidget/PlotMainWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostPlotWidget/PlotTreeWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostPlotWidget/PlotWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostPlotWidget/PostPlotWidgetAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostPlotWidget/PropertyWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostPlotWidget/PlotMainWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostPlotWidget/PlotTreeWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostPlotWidget/PlotWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostPlotWidget/PropertyWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostPlotWidget/PostPlotWidget_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostPlotWidget/PlotMainWidget.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostPlotWidget/PropertyWidget.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostPlotWidget/PostPlotWidget_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PostPlotWidget_autogen-Debug-647111ef80ab4cde3314.json b/out/build/.cmake/api/v1/reply/target-PostPlotWidget_autogen-Debug-647111ef80ab4cde3314.json new file mode 100644 index 0000000..c56cd01 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PostPlotWidget_autogen-Debug-647111ef80ab4cde3314.json @@ -0,0 +1,79 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/PostPlotWidget/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "PostCurveDataManager::@1562c6ae2d37fb33544b" + }, + { + "id" : "PostPlotWidget_autogen_timestamp_deps::@d1bc8a76442dff50f241" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PostPlotWidget_autogen::@d1bc8a76442dff50f241", + "isGeneratorProvided" : true, + "name" : "PostPlotWidget_autogen", + "paths" : + { + "build" : "src/PostPlotWidget", + "source" : "src/PostPlotWidget" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostPlotWidget/CMakeFiles/PostPlotWidget_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostPlotWidget/CMakeFiles/PostPlotWidget_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostPlotWidget/PostPlotWidget_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PostPlotWidget_autogen_timestamp_deps-Debug-02e10c43fac702728a9a.json b/out/build/.cmake/api/v1/reply/target-PostPlotWidget_autogen_timestamp_deps-Debug-02e10c43fac702728a9a.json new file mode 100644 index 0000000..cd7f825 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PostPlotWidget_autogen_timestamp_deps-Debug-02e10c43fac702728a9a.json @@ -0,0 +1,68 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/PostPlotWidget/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "PostCurveDataManager::@1562c6ae2d37fb33544b" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PostPlotWidget_autogen_timestamp_deps::@d1bc8a76442dff50f241", + "isGeneratorProvided" : true, + "name" : "PostPlotWidget_autogen_timestamp_deps", + "paths" : + { + "build" : "src/PostPlotWidget", + "source" : "src/PostPlotWidget" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostPlotWidget/CMakeFiles/PostPlotWidget_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostPlotWidget/CMakeFiles/PostPlotWidget_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PostRenderData-Debug-9bc3e88ef91e18f61eca.json b/out/build/.cmake/api/v1/reply/target-PostRenderData-Debug-9bc3e88ef91e18f61eca.json new file mode 100644 index 0000000..875bdb5 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PostRenderData-Debug-9bc3e88ef91e18f61eca.json @@ -0,0 +1,830 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/PostRenderData.dll" + }, + { + "path" : "Debug/PostRenderData.lib" + }, + { + "path" : "Debug/PostRenderData.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_dependencies", + "add_compile_options", + "add_definitions", + "target_compile_definitions", + "include_directories" + ], + "files" : + [ + "src/PostRenderData/CMakeLists.txt", + "src/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 20, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 37, + "parent" : 0 + }, + { + "command" : 3, + "file" : 0, + "line" : 45, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 4, + "file" : 2, + "line" : 85, + "parent" : 6 + }, + { + "command" : 4, + "file" : 2, + "line" : 86, + "parent" : 6 + }, + { + "command" : 5, + "file" : 2, + "line" : 118, + "parent" : 6 + }, + { + "command" : 6, + "file" : 0, + "line" : 28, + "parent" : 0 + }, + { + "command" : 5, + "file" : 2, + "line" : 83, + "parent" : 6 + }, + { + "command" : 7, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 7, + "fragment" : "/utf-8" + }, + { + "backtrace" : 8, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 9, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 10, + "define" : "POSTRENDERDATA_API" + }, + { + "define" : "PostRenderData_EXPORTS" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 11, + "define" : "UNICODE" + }, + { + "backtrace" : 11, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/PostRenderData" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/PostRenderData" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/PostRenderData/PostRenderData_autogen/include" + }, + { + "backtrace" : 12, + "path" : "D:/WBFZCPP/source/FastCAE/src/PostRenderData/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/VTK/include/vtk-9.3" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 5, + "id" : "PostAlgorithm::@d527967401306b818905" + }, + { + "id" : "PostRenderData_autogen_timestamp_deps::@ce9c2f9a6cca9038fdeb" + }, + { + "backtrace" : 0, + "id" : "PostRenderData_autogen::@ce9c2f9a6cca9038fdeb" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PostRenderData::@ce9c2f9a6cca9038fdeb", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersFlowPaths-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingColor-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingGeneral-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingHybrid-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkInteractionStyle-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkInteractionWidgets-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingAnnotation-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingFreeType-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingVolume-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkfreetype-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PostAlgorithm.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonColor-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonComputationalGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonDataModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonExecutionModel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMath-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonMisc-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonSystem-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonTransforms-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkDICOMParser-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersExtraction-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeneral-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersHybrid-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersModeling-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersParallel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersSources-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersStatistics-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkFiltersTexture-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOGeometry-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOImage-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOLegacy-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOParallel-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXML-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkIOXMLParser-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingFourier-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkImagingSources-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkParallelDIY-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkRenderingCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkdoubleconversion-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkexpat-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkjpeg-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkjsoncpp-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklz4-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtklzma-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkmetaio-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkpng-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkpugixml-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtksys-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtktiff-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkzlib-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "PostRenderData", + "nameOnDisk" : "PostRenderData.dll", + "paths" : + { + "build" : "src/PostRenderData", + "source" : "src/PostRenderData" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 32 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 33 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostRenderData/PostRenderData_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "src/PostRenderData/CalculateRenderDataAlg.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostRenderData/ClipRenderDataAlg.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostRenderData/GlyphingRenderDataAlg.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostRenderData/ISOCurveRenderDataAlg.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostRenderData/ISORenderDataAlg.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostRenderData/PostRenderDataAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostRenderData/ReflectionRenderDataAlg.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostRenderData/RenderDataAlgorithm.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostRenderData/RenderDataImportSteady.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostRenderData/RenderDataImportUnSteady.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostRenderData/RenderDataManager.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostRenderData/RenderDataObject.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostRenderData/RenderProperty.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostRenderData/SimplifyRenderDataAlg.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostRenderData/SliceRenderDataAlg.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostRenderData/StreamLineRenderDataAlg.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostRenderData/CalculateRenderDataAlg.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostRenderData/ClipRenderDataAlg.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostRenderData/GlyphingRenderDataAlg.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostRenderData/ISOCurveRenderDataAlg.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostRenderData/ISORenderDataAlg.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostRenderData/ReflectionRenderDataAlg.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostRenderData/RenderDataAlgorithm.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostRenderData/RenderDataImportSteady.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostRenderData/RenderDataImportUnSteady.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostRenderData/RenderDataManager.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostRenderData/RenderDataObject.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostRenderData/RenderProperty.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostRenderData/SimplifyRenderDataAlg.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostRenderData/SliceRenderDataAlg.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostRenderData/StreamLineRenderDataAlg.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostRenderData/PostRenderData_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostRenderData/PostRenderData_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PostRenderData_autogen-Debug-5667dc414f67aff32c20.json b/out/build/.cmake/api/v1/reply/target-PostRenderData_autogen-Debug-5667dc414f67aff32c20.json new file mode 100644 index 0000000..2919f7a --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PostRenderData_autogen-Debug-5667dc414f67aff32c20.json @@ -0,0 +1,79 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/PostRenderData/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "PostAlgorithm::@d527967401306b818905" + }, + { + "id" : "PostRenderData_autogen_timestamp_deps::@ce9c2f9a6cca9038fdeb" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PostRenderData_autogen::@ce9c2f9a6cca9038fdeb", + "isGeneratorProvided" : true, + "name" : "PostRenderData_autogen", + "paths" : + { + "build" : "src/PostRenderData", + "source" : "src/PostRenderData" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostRenderData/CMakeFiles/PostRenderData_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostRenderData/CMakeFiles/PostRenderData_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostRenderData/PostRenderData_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PostRenderData_autogen_timestamp_deps-Debug-9674524f44927d617d04.json b/out/build/.cmake/api/v1/reply/target-PostRenderData_autogen_timestamp_deps-Debug-9674524f44927d617d04.json new file mode 100644 index 0000000..024da88 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PostRenderData_autogen_timestamp_deps-Debug-9674524f44927d617d04.json @@ -0,0 +1,68 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/PostRenderData/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "PostAlgorithm::@d527967401306b818905" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PostRenderData_autogen_timestamp_deps::@ce9c2f9a6cca9038fdeb", + "isGeneratorProvided" : true, + "name" : "PostRenderData_autogen_timestamp_deps", + "paths" : + { + "build" : "src/PostRenderData", + "source" : "src/PostRenderData" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostRenderData/CMakeFiles/PostRenderData_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostRenderData/CMakeFiles/PostRenderData_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PostWidgets-Debug-06d84294f779838e50f9.json b/out/build/.cmake/api/v1/reply/target-PostWidgets-Debug-06d84294f779838e50f9.json new file mode 100644 index 0000000..b01e5ea --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PostWidgets-Debug-06d84294f779838e50f9.json @@ -0,0 +1,763 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/PostWidgets.dll" + }, + { + "path" : "Debug/PostWidgets.lib" + }, + { + "path" : "Debug/PostWidgets.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "set_property", + "find_package", + "add_dependencies", + "add_compile_options", + "add_definitions", + "target_compile_definitions", + "include_directories" + ], + "files" : + [ + "src/PostWidgets/CMakeLists.txt", + "src/CMakeLists.txt", + "src/PythonModule/CMakeLists.txt", + "cmake/FindQwt.cmake", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 29, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 52, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 2, + "file" : 2, + "line" : 44, + "parent" : 5 + }, + { + "file" : 4 + }, + { + "command" : 4, + "file" : 4, + "line" : 189, + "parent" : 7 + }, + { + "file" : 3, + "parent" : 8 + }, + { + "command" : 3, + "file" : 3, + "line" : 100, + "parent" : 9 + }, + { + "command" : 3, + "file" : 3, + "line" : 95, + "parent" : 9 + }, + { + "command" : 5, + "file" : 0, + "line" : 60, + "parent" : 0 + }, + { + "command" : 6, + "file" : 4, + "line" : 85, + "parent" : 7 + }, + { + "command" : 6, + "file" : 4, + "line" : 86, + "parent" : 7 + }, + { + "command" : 7, + "file" : 4, + "line" : 118, + "parent" : 7 + }, + { + "command" : 8, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "command" : 7, + "file" : 4, + "line" : 83, + "parent" : 7 + }, + { + "command" : 9, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 13, + "fragment" : "/utf-8" + }, + { + "backtrace" : 14, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 15, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 16, + "define" : "POSTWIDGETS_API" + }, + { + "define" : "PostWidgets_EXPORTS" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_OPENGL_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_PRINTSUPPORT_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_SVG_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 4, + "define" : "QWT_DLL" + }, + { + "backtrace" : 17, + "define" : "UNICODE" + }, + { + "backtrace" : 17, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/PostWidgets" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/PostWidgets" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/PostWidgets/PostWidgets_autogen/include" + }, + { + "backtrace" : 18, + "path" : "D:/WBFZCPP/source/FastCAE/src/PostWidgets/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/VTK/include/vtk-9.3" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qwt/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtSvg" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtOpenGL" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtPrintSupport" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 1, + 2, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 12, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 12, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 12, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 12, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 12, + "id" : "PostRenderData::@ce9c2f9a6cca9038fdeb" + }, + { + "backtrace" : 12, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 12, + "id" : "PostCurveDataManager::@1562c6ae2d37fb33544b" + }, + { + "backtrace" : 12, + "id" : "PostInterface::@38fb729d68510c1489c9" + }, + { + "backtrace" : 12, + "id" : "PostPlotWidget::@d1bc8a76442dff50f241" + }, + { + "id" : "PostWidgets_autogen_timestamp_deps::@93a5592897f957e6fa57" + }, + { + "backtrace" : 0, + "id" : "PostWidgets_autogen::@93a5592897f957e6fa57" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PostWidgets::@93a5592897f957e6fa57", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModuleBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PostInterface.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PostPlotWidget.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PostCurveDataManager.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModelData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ConfigOptions.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Settings.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PythonModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\Python\\libs\\python37.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PostRenderData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtkCommonCore-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\VTK\\lib\\vtksys-9.3d.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qwt\\lib\\qwtd.lib", + "role" : "libraries" + }, + { + "backtrace" : 10, + "fragment" : "C:\\Qwt\\lib\\qwtd.lib", + "role" : "libraries" + }, + { + "backtrace" : 10, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5PrintSupportd.lib", + "role" : "libraries" + }, + { + "backtrace" : 11, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Svgd.lib", + "role" : "libraries" + }, + { + "backtrace" : 11, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5OpenGLd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "PostWidgets", + "nameOnDisk" : "PostWidgets.dll", + "paths" : + { + "build" : "src/PostWidgets", + "source" : "src/PostWidgets" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 33 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostWidgets/PostWidgets_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostWidgets/qrc_qianfan.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostWidgets/qrc_translations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostWidgets/ui_Post2DInterface.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostWidgets/ui_Post2DWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostWidgets/ui_Post3DInterface.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostWidgets/ui_Post3DWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/PostWidgets/ui_RealTimeWindowBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostWidgets/Post2DInterface.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostWidgets/Post2DWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostWidgets/Post3DInterface.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostWidgets/Post3DWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostWidgets/PostCustomPlot.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostWidgets/PostWidgetsAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostWidgets/PostWindowBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostWidgets/RealTimeMonitor.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PostWidgets/RealTimeWindowBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostWidgets/Post2DInterface.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostWidgets/Post2DWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostWidgets/Post3DInterface.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostWidgets/Post3DWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostWidgets/PostCustomPlot.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostWidgets/PostWindowBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostWidgets/RealTimeMonitor.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PostWidgets/RealTimeWindowBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostWidgets/PostWidgets_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/qianfan.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/translations.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostWidgets/Post2DInterface.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostWidgets/Post2DWidget.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostWidgets/Post3DInterface.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostWidgets/Post3DWidget.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/PostWidgets/RealTimeWindowBase.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostWidgets/PostWidgets_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PostWidgets_autogen-Debug-df90bd2e74782b99833d.json b/out/build/.cmake/api/v1/reply/target-PostWidgets_autogen-Debug-df90bd2e74782b99833d.json new file mode 100644 index 0000000..f8e80c8 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PostWidgets_autogen-Debug-df90bd2e74782b99833d.json @@ -0,0 +1,111 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/PostWidgets/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 0, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 0, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 0, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 0, + "id" : "PostRenderData::@ce9c2f9a6cca9038fdeb" + }, + { + "backtrace" : 0, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 0, + "id" : "PostCurveDataManager::@1562c6ae2d37fb33544b" + }, + { + "backtrace" : 0, + "id" : "PostInterface::@38fb729d68510c1489c9" + }, + { + "backtrace" : 0, + "id" : "PostPlotWidget::@d1bc8a76442dff50f241" + }, + { + "id" : "PostWidgets_autogen_timestamp_deps::@93a5592897f957e6fa57" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PostWidgets_autogen::@93a5592897f957e6fa57", + "isGeneratorProvided" : true, + "name" : "PostWidgets_autogen", + "paths" : + { + "build" : "src/PostWidgets", + "source" : "src/PostWidgets" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostWidgets/CMakeFiles/PostWidgets_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostWidgets/CMakeFiles/PostWidgets_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostWidgets/PostWidgets_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PostWidgets_autogen_timestamp_deps-Debug-fae109ac3554477c847b.json b/out/build/.cmake/api/v1/reply/target-PostWidgets_autogen_timestamp_deps-Debug-fae109ac3554477c847b.json new file mode 100644 index 0000000..953a417 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PostWidgets_autogen_timestamp_deps-Debug-fae109ac3554477c847b.json @@ -0,0 +1,92 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/PostWidgets/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "id" : "PostRenderData::@ce9c2f9a6cca9038fdeb" + }, + { + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "id" : "PostCurveDataManager::@1562c6ae2d37fb33544b" + }, + { + "id" : "PostInterface::@38fb729d68510c1489c9" + }, + { + "id" : "PostPlotWidget::@d1bc8a76442dff50f241" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PostWidgets_autogen_timestamp_deps::@93a5592897f957e6fa57", + "isGeneratorProvided" : true, + "name" : "PostWidgets_autogen_timestamp_deps", + "paths" : + { + "build" : "src/PostWidgets", + "source" : "src/PostWidgets" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostWidgets/CMakeFiles/PostWidgets_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PostWidgets/CMakeFiles/PostWidgets_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-ProjectTree-Debug-ae655f9358b07b0db3a5.json b/out/build/.cmake/api/v1/reply/target-ProjectTree-Debug-ae655f9358b07b0db3a5.json new file mode 100644 index 0000000..e1d758f --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-ProjectTree-Debug-ae655f9358b07b0db3a5.json @@ -0,0 +1,717 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/ProjectTree.dll" + }, + { + "path" : "Debug/ProjectTree.lib" + }, + { + "path" : "Debug/ProjectTree.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "set_property", + "find_package", + "add_dependencies", + "add_compile_options", + "add_definitions", + "target_compile_definitions", + "include_directories" + ], + "files" : + [ + "src/ProjectTree/CMakeLists.txt", + "src/CMakeLists.txt", + "src/PythonModule/CMakeLists.txt", + "cmake/FindQwt.cmake", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 29, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 51, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 2, + "file" : 2, + "line" : 44, + "parent" : 5 + }, + { + "file" : 4 + }, + { + "command" : 4, + "file" : 4, + "line" : 189, + "parent" : 7 + }, + { + "file" : 3, + "parent" : 8 + }, + { + "command" : 3, + "file" : 3, + "line" : 100, + "parent" : 9 + }, + { + "command" : 3, + "file" : 3, + "line" : 95, + "parent" : 9 + }, + { + "command" : 5, + "file" : 0, + "line" : 59, + "parent" : 0 + }, + { + "command" : 6, + "file" : 4, + "line" : 85, + "parent" : 7 + }, + { + "command" : 6, + "file" : 4, + "line" : 86, + "parent" : 7 + }, + { + "command" : 7, + "file" : 4, + "line" : 118, + "parent" : 7 + }, + { + "command" : 8, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "command" : 7, + "file" : 4, + "line" : 83, + "parent" : 7 + }, + { + "command" : 9, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 13, + "fragment" : "/utf-8" + }, + { + "backtrace" : 14, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 15, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 16, + "define" : "PROJECTTREE_API" + }, + { + "define" : "ProjectTree_EXPORTS" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_OPENGL_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_PRINTSUPPORT_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_SVG_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 4, + "define" : "QWT_DLL" + }, + { + "backtrace" : 17, + "define" : "UNICODE" + }, + { + "backtrace" : 17, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTree" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/ProjectTree" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTree/ProjectTree_autogen/include" + }, + { + "backtrace" : 18, + "path" : "D:/WBFZCPP/source/FastCAE/src/ProjectTree/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qwt/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtSvg" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtOpenGL" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtPrintSupport" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 1, + 2, + 12, + 13, + 14, + 15, + 16, + 17 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 12, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 12, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 12, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 12, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 12, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 12, + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "backtrace" : 12, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 12, + "id" : "BCBase::@baf13bdd6bef809f2182" + }, + { + "backtrace" : 12, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 12, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 12, + "id" : "ParaClassFactory::@d0ebb167002da5b45d84" + }, + { + "backtrace" : 12, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 12, + "id" : "PostWidgets::@93a5592897f957e6fa57" + }, + { + "id" : "ProjectTree_autogen_timestamp_deps::@43c6c7ebae2b88a99cdb" + }, + { + "backtrace" : 0, + "id" : "ProjectTree_autogen::@43c6c7ebae2b88a99cdb" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "ProjectTree::@43c6c7ebae2b88a99cdb", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PostWidgets.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModuleBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModelData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ParaClassFactory.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ConfigOptions.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\BCBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Geometry.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\MeshData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Material.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\SelfDefObject.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Settings.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PythonModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\Python\\libs\\python37.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qwt\\lib\\qwtd.lib", + "role" : "libraries" + }, + { + "backtrace" : 10, + "fragment" : "C:\\Qwt\\lib\\qwtd.lib", + "role" : "libraries" + }, + { + "backtrace" : 10, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5PrintSupportd.lib", + "role" : "libraries" + }, + { + "backtrace" : 11, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Svgd.lib", + "role" : "libraries" + }, + { + "backtrace" : 11, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5OpenGLd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "ProjectTree", + "nameOnDisk" : "ProjectTree.dll", + "paths" : + { + "build" : "src/ProjectTree", + "source" : "src/ProjectTree" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 12, + 13, + 14, + 15, + 16, + 17 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 18, + 19, + 20, + 21, + 22 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 23 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/ProjectTree/ProjectTree_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/ProjectTree/qrc_qianfan.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/ProjectTree/qrc_translations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/ProjectTree/ui_DialogAddBC.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/ProjectTree/ui_DialogRemoveReport.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ProjectTree/DialogAddBC.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ProjectTree/DialogAssignMaterial.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ProjectTree/DialogImport.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ProjectTree/DialogRemoveReport.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ProjectTree/ProjectTreeAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ProjectTree/ProjectTreeWithBasicNode.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ProjectTree/projectTreeBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ProjectTree/DialogAddBC.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ProjectTree/DialogAssignMaterial.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ProjectTree/DialogImport.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ProjectTree/DialogRemoveReport.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ProjectTree/ProjectTreeWithBasicNode.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ProjectTree/projectTreeBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ProjectTree/ProjectTree_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/qianfan.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/translations.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/ProjectTree/DialogAddBC.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/ProjectTree/DialogRemoveReport.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ProjectTree/ProjectTree_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-ProjectTreeExtend-Debug-c97d2c16aa8719582815.json b/out/build/.cmake/api/v1/reply/target-ProjectTreeExtend-Debug-c97d2c16aa8719582815.json new file mode 100644 index 0000000..e91e8b9 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-ProjectTreeExtend-Debug-c97d2c16aa8719582815.json @@ -0,0 +1,611 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/ProjectTreeExtend.dll" + }, + { + "path" : "Debug/ProjectTreeExtend.lib" + }, + { + "path" : "Debug/ProjectTreeExtend.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "set_property", + "find_package", + "add_dependencies", + "add_compile_options", + "add_definitions", + "target_compile_definitions", + "include_directories" + ], + "files" : + [ + "src/ProjectTreeExtend/CMakeLists.txt", + "src/CMakeLists.txt", + "cmake/FindQwt.cmake", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 27, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 49, + "parent" : 0 + }, + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 189, + "parent" : 5 + }, + { + "file" : 2, + "parent" : 6 + }, + { + "command" : 3, + "file" : 2, + "line" : 100, + "parent" : 7 + }, + { + "command" : 3, + "file" : 2, + "line" : 95, + "parent" : 7 + }, + { + "command" : 5, + "file" : 0, + "line" : 57, + "parent" : 0 + }, + { + "command" : 6, + "file" : 3, + "line" : 85, + "parent" : 5 + }, + { + "command" : 6, + "file" : 3, + "line" : 86, + "parent" : 5 + }, + { + "command" : 7, + "file" : 3, + "line" : 118, + "parent" : 5 + }, + { + "command" : 8, + "file" : 0, + "line" : 37, + "parent" : 0 + }, + { + "command" : 7, + "file" : 3, + "line" : 83, + "parent" : 5 + }, + { + "command" : 9, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 11, + "fragment" : "/utf-8" + }, + { + "backtrace" : 12, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 13, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 14, + "define" : "PROJECTTREEEXTEND_API" + }, + { + "define" : "ProjectTreeExtend_EXPORTS" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_OPENGL_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_PRINTSUPPORT_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_SVG_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_XML_LIB" + }, + { + "backtrace" : 4, + "define" : "QWT_DLL" + }, + { + "backtrace" : 15, + "define" : "UNICODE" + }, + { + "backtrace" : 15, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTreeExtend" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/ProjectTreeExtend" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTreeExtend/ProjectTreeExtend_autogen/include" + }, + { + "backtrace" : 16, + "path" : "D:/WBFZCPP/source/FastCAE/src/ProjectTreeExtend/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtXml" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qwt/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtSvg" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtOpenGL" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtPrintSupport" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 1, + 2, + 6, + 7 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 10, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 10, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 10, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 10, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 10, + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "backtrace" : 10, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 10, + "id" : "BCBase::@baf13bdd6bef809f2182" + }, + { + "backtrace" : 10, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 10, + "id" : "ParaClassFactory::@d0ebb167002da5b45d84" + }, + { + "backtrace" : 10, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 10, + "id" : "PostWidgets::@93a5592897f957e6fa57" + }, + { + "backtrace" : 10, + "id" : "ProjectTree::@43c6c7ebae2b88a99cdb" + }, + { + "backtrace" : 0, + "id" : "ProjectTreeExtend_autogen::@f2791e4784919f40d89d" + }, + { + "id" : "ProjectTreeExtend_autogen_timestamp_deps::@f2791e4784919f40d89d" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "ProjectTreeExtend::@f2791e4784919f40d89d", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ProjectTree.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PostWidgets.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModuleBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModelData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qwt\\lib\\qwtd.lib", + "role" : "libraries" + }, + { + "backtrace" : 8, + "fragment" : "C:\\Qwt\\lib\\qwtd.lib", + "role" : "libraries" + }, + { + "backtrace" : 8, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5PrintSupportd.lib", + "role" : "libraries" + }, + { + "backtrace" : 9, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Svgd.lib", + "role" : "libraries" + }, + { + "backtrace" : 9, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5OpenGLd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ParaClassFactory.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ConfigOptions.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\BCBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\MeshData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Material.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\SelfDefObject.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Settings.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Xmld.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "ProjectTreeExtend", + "nameOnDisk" : "ProjectTreeExtend.dll", + "paths" : + { + "build" : "src/ProjectTreeExtend", + "source" : "src/ProjectTreeExtend" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 6, + 7 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 4, + 5 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 8, + 9, + 10 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 11 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/ProjectTreeExtend/ProjectTreeExtend_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/ProjectTreeExtend/qrc_qianfan.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/ProjectTreeExtend/qrc_translations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "src/ProjectTreeExtend/ProjectTreeConfig.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ProjectTreeExtend/ProjectTreeExtend.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/ProjectTreeExtend/ProjectTreeExtendAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ProjectTreeExtend/ProjectTreeConfig.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/ProjectTreeExtend/ProjectTreeExtend.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ProjectTreeExtend/ProjectTreeExtend_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/qianfan.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/translations.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ProjectTreeExtend/ProjectTreeExtend_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-ProjectTreeExtend_autogen-Debug-1f90c671bc251ce5a28b.json b/out/build/.cmake/api/v1/reply/target-ProjectTreeExtend_autogen-Debug-1f90c671bc251ce5a28b.json new file mode 100644 index 0000000..2475617 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-ProjectTreeExtend_autogen-Debug-1f90c671bc251ce5a28b.json @@ -0,0 +1,123 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/ProjectTreeExtend/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 0, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 0, + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "backtrace" : 0, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 0, + "id" : "BCBase::@baf13bdd6bef809f2182" + }, + { + "backtrace" : 0, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 0, + "id" : "ParaClassFactory::@d0ebb167002da5b45d84" + }, + { + "backtrace" : 0, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 0, + "id" : "PostWidgets::@93a5592897f957e6fa57" + }, + { + "backtrace" : 0, + "id" : "ProjectTree::@43c6c7ebae2b88a99cdb" + }, + { + "id" : "ProjectTreeExtend_autogen_timestamp_deps::@f2791e4784919f40d89d" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "ProjectTreeExtend_autogen::@f2791e4784919f40d89d", + "isGeneratorProvided" : true, + "name" : "ProjectTreeExtend_autogen", + "paths" : + { + "build" : "src/ProjectTreeExtend", + "source" : "src/ProjectTreeExtend" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ProjectTreeExtend/CMakeFiles/ProjectTreeExtend_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ProjectTreeExtend/CMakeFiles/ProjectTreeExtend_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ProjectTreeExtend/ProjectTreeExtend_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-ProjectTreeExtend_autogen_timestamp_deps-Debug-9cf59e40cdacd18dfb49.json b/out/build/.cmake/api/v1/reply/target-ProjectTreeExtend_autogen_timestamp_deps-Debug-9cf59e40cdacd18dfb49.json new file mode 100644 index 0000000..83d9a96 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-ProjectTreeExtend_autogen_timestamp_deps-Debug-9cf59e40cdacd18dfb49.json @@ -0,0 +1,101 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/ProjectTreeExtend/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "id" : "BCBase::@baf13bdd6bef809f2182" + }, + { + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "id" : "ParaClassFactory::@d0ebb167002da5b45d84" + }, + { + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "id" : "PostWidgets::@93a5592897f957e6fa57" + }, + { + "id" : "ProjectTree::@43c6c7ebae2b88a99cdb" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "ProjectTreeExtend_autogen_timestamp_deps::@f2791e4784919f40d89d", + "isGeneratorProvided" : true, + "name" : "ProjectTreeExtend_autogen_timestamp_deps", + "paths" : + { + "build" : "src/ProjectTreeExtend", + "source" : "src/ProjectTreeExtend" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ProjectTreeExtend/CMakeFiles/ProjectTreeExtend_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ProjectTreeExtend/CMakeFiles/ProjectTreeExtend_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-ProjectTree_autogen-Debug-aacc1fa8f685d0a8a59c.json b/out/build/.cmake/api/v1/reply/target-ProjectTree_autogen-Debug-aacc1fa8f685d0a8a59c.json new file mode 100644 index 0000000..3388894 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-ProjectTree_autogen-Debug-aacc1fa8f685d0a8a59c.json @@ -0,0 +1,127 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/ProjectTree/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 0, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "backtrace" : 0, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 0, + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "backtrace" : 0, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 0, + "id" : "BCBase::@baf13bdd6bef809f2182" + }, + { + "backtrace" : 0, + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "backtrace" : 0, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 0, + "id" : "ParaClassFactory::@d0ebb167002da5b45d84" + }, + { + "backtrace" : 0, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 0, + "id" : "PostWidgets::@93a5592897f957e6fa57" + }, + { + "id" : "ProjectTree_autogen_timestamp_deps::@43c6c7ebae2b88a99cdb" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "ProjectTree_autogen::@43c6c7ebae2b88a99cdb", + "isGeneratorProvided" : true, + "name" : "ProjectTree_autogen", + "paths" : + { + "build" : "src/ProjectTree", + "source" : "src/ProjectTree" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ProjectTree/CMakeFiles/ProjectTree_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ProjectTree/CMakeFiles/ProjectTree_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ProjectTree/ProjectTree_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-ProjectTree_autogen_timestamp_deps-Debug-90b72032cac148ad9743.json b/out/build/.cmake/api/v1/reply/target-ProjectTree_autogen_timestamp_deps-Debug-90b72032cac148ad9743.json new file mode 100644 index 0000000..1f185a7 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-ProjectTree_autogen_timestamp_deps-Debug-90b72032cac148ad9743.json @@ -0,0 +1,104 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/ProjectTree/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "MeshData::@2f0f676dafab302b2d20" + }, + { + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "id" : "Material::@05d68cd248c3246409d7" + }, + { + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "id" : "BCBase::@baf13bdd6bef809f2182" + }, + { + "id" : "Geometry::@b7b2e4191bc961e9afba" + }, + { + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "id" : "ParaClassFactory::@d0ebb167002da5b45d84" + }, + { + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "id" : "PostWidgets::@93a5592897f957e6fa57" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "ProjectTree_autogen_timestamp_deps::@43c6c7ebae2b88a99cdb", + "isGeneratorProvided" : true, + "name" : "ProjectTree_autogen_timestamp_deps", + "paths" : + { + "build" : "src/ProjectTree", + "source" : "src/ProjectTree" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ProjectTree/CMakeFiles/ProjectTree_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/ProjectTree/CMakeFiles/ProjectTree_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PythonModule-Debug-fd698a7d66a6c747bf3a.json b/out/build/.cmake/api/v1/reply/target-PythonModule-Debug-fd698a7d66a6c747bf3a.json new file mode 100644 index 0000000..97ce7c3 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PythonModule-Debug-fd698a7d66a6c747bf3a.json @@ -0,0 +1,457 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/PythonModule.dll" + }, + { + "path" : "Debug/PythonModule.lib" + }, + { + "path" : "Debug/PythonModule.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "set_property", + "_populate_Widgets_target_properties", + "find_package", + "add_dependencies", + "add_compile_options", + "add_definitions", + "target_compile_definitions", + "include_directories" + ], + "files" : + [ + "src/PythonModule/CMakeLists.txt", + "src/CMakeLists.txt", + "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake", + "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5/Qt5Config.cmake", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 20, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 44, + "parent" : 0 + }, + { + "file" : 4 + }, + { + "command" : 5, + "file" : 4, + "line" : 142, + "parent" : 5 + }, + { + "file" : 3, + "parent" : 6 + }, + { + "command" : 5, + "file" : 3, + "line" : 28, + "parent" : 7 + }, + { + "file" : 2, + "parent" : 8 + }, + { + "command" : 4, + "file" : 2, + "line" : 207, + "parent" : 9 + }, + { + "command" : 3, + "file" : 2, + "line" : 44, + "parent" : 10 + }, + { + "command" : 6, + "file" : 0, + "line" : 51, + "parent" : 0 + }, + { + "command" : 7, + "file" : 4, + "line" : 85, + "parent" : 5 + }, + { + "command" : 7, + "file" : 4, + "line" : 86, + "parent" : 5 + }, + { + "command" : 8, + "file" : 4, + "line" : 118, + "parent" : 5 + }, + { + "command" : 9, + "file" : 0, + "line" : 28, + "parent" : 0 + }, + { + "command" : 8, + "file" : 4, + "line" : 83, + "parent" : 5 + }, + { + "command" : 10, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 13, + "fragment" : "/utf-8" + }, + { + "backtrace" : 14, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 15, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 16, + "define" : "PYTHONMODULE_API" + }, + { + "define" : "PythonModule_EXPORTS" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 17, + "define" : "UNICODE" + }, + { + "backtrace" : 17, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/PythonModule" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/PythonModule" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/PythonModule/PythonModule_autogen/include" + }, + { + "backtrace" : 18, + "path" : "D:/WBFZCPP/source/FastCAE/src/PythonModule/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 6, + 7, + 8, + 9 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 12, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 0, + "id" : "PythonModule_autogen::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "PythonModule_autogen_timestamp_deps::@c600c49a22fbbbfcb8ff" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\Python\\libs\\python37.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 11, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 11, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "PythonModule", + "nameOnDisk" : "PythonModule.dll", + "paths" : + { + "build" : "src/PythonModule", + "source" : "src/PythonModule" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 6, + 7, + 8, + 9 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 10 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 11 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/PythonModule/PythonModule_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "src/PythonModule/PyAgent.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PythonModule/PyInterpreter.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PythonModule/PythonModuleAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PythonModule/RecordScript.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/PythonModule/ScriptReader.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PythonModule/PyAgent.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PythonModule/PyInterpreter.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PythonModule/RecordScript.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/PythonModule/ScriptReader.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PythonModule/PythonModule_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PythonModule/PythonModule_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PythonModule_autogen-Debug-eea898c2e7cd943098a2.json b/out/build/.cmake/api/v1/reply/target-PythonModule_autogen-Debug-eea898c2e7cd943098a2.json new file mode 100644 index 0000000..aa9971e --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PythonModule_autogen-Debug-eea898c2e7cd943098a2.json @@ -0,0 +1,79 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/PythonModule/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "id" : "PythonModule_autogen_timestamp_deps::@c600c49a22fbbbfcb8ff" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PythonModule_autogen::@c600c49a22fbbbfcb8ff", + "isGeneratorProvided" : true, + "name" : "PythonModule_autogen", + "paths" : + { + "build" : "src/PythonModule", + "source" : "src/PythonModule" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PythonModule/CMakeFiles/PythonModule_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PythonModule/CMakeFiles/PythonModule_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PythonModule/PythonModule_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-PythonModule_autogen_timestamp_deps-Debug-962356fa62c85c36765e.json b/out/build/.cmake/api/v1/reply/target-PythonModule_autogen_timestamp_deps-Debug-962356fa62c85c36765e.json new file mode 100644 index 0000000..e0fd7e7 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-PythonModule_autogen_timestamp_deps-Debug-962356fa62c85c36765e.json @@ -0,0 +1,68 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/PythonModule/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "Common::@29aabc9fbfb9b5406d55" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "PythonModule_autogen_timestamp_deps::@c600c49a22fbbbfcb8ff", + "isGeneratorProvided" : true, + "name" : "PythonModule_autogen_timestamp_deps", + "paths" : + { + "build" : "src/PythonModule", + "source" : "src/PythonModule" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PythonModule/CMakeFiles/PythonModule_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/PythonModule/CMakeFiles/PythonModule_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-SARibbonBar-Debug-c665fea387b990826aed.json b/out/build/.cmake/api/v1/reply/target-SARibbonBar-Debug-c665fea387b990826aed.json new file mode 100644 index 0000000..642fe79 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-SARibbonBar-Debug-c665fea387b990826aed.json @@ -0,0 +1,869 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/SARibbonBar.dll" + }, + { + "path" : "Debug/SARibbonBar.lib" + }, + { + "path" : "Debug/SARibbonBar.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "set_property", + "_populate_Widgets_target_properties", + "find_package", + "add_compile_options", + "add_definitions", + "target_compile_definitions" + ], + "files" : + [ + "src/SARibbonBar/CMakeLists.txt", + "src/CMakeLists.txt", + "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake", + "C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5/Qt5Config.cmake", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 21, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "file" : 4 + }, + { + "command" : 5, + "file" : 4, + "line" : 142, + "parent" : 5 + }, + { + "file" : 3, + "parent" : 6 + }, + { + "command" : 5, + "file" : 3, + "line" : 28, + "parent" : 7 + }, + { + "file" : 2, + "parent" : 8 + }, + { + "command" : 4, + "file" : 2, + "line" : 207, + "parent" : 9 + }, + { + "command" : 3, + "file" : 2, + "line" : 44, + "parent" : 10 + }, + { + "command" : 6, + "file" : 4, + "line" : 85, + "parent" : 5 + }, + { + "command" : 6, + "file" : 4, + "line" : 86, + "parent" : 5 + }, + { + "command" : 7, + "file" : 4, + "line" : 118, + "parent" : 5 + }, + { + "command" : 8, + "file" : 0, + "line" : 30, + "parent" : 0 + }, + { + "command" : 7, + "file" : 4, + "line" : 83, + "parent" : 5 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 12, + "fragment" : "/utf-8" + }, + { + "backtrace" : 13, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 14, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "define" : "SARibbonBar_EXPORTS" + }, + { + "backtrace" : 15, + "define" : "SA_RIBBON_BAR_MAKE_LIB" + }, + { + "backtrace" : 16, + "define" : "UNICODE" + }, + { + "backtrace" : 16, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/SARibbonBar" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/SARibbonBar" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/SARibbonBar/SARibbonBar_autogen/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 1, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "SARibbonBar_autogen::@f61b241723ced025d0ef" + }, + { + "id" : "SARibbonBar_autogen_timestamp_deps::@f61b241723ced025d0ef" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "SARibbonBar::@f61b241723ced025d0ef", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 11, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 11, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "SARibbonBar", + "nameOnDisk" : "SARibbonBar.dll", + "paths" : + { + "build" : "src/SARibbonBar", + "source" : "src/SARibbonBar" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 73, + 74 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 75 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/SARibbonBar/SARibbonBar_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/SARibbonBar/qrc_resource.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SAFramelessHelper.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonActionsManager.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonApplicationButton.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonBar.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonButtonGroupWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonCategory.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonCategoryLayout.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonCheckBox.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonComboBox.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonContextCategory.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonControlButton.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonCtrlContainer.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonCustomizeData.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonCustomizeDialog.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonCustomizeWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonDrawHelper.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonElementCreateDelegate.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonElementManager.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonGallery.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonGalleryGroup.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonGalleryItem.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonGlobal.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonLineEdit.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonLineWidgetContainer.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonMainWindow.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonMenu.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonPannel.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonPannelItem.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonPannelLayout.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonPannelOptionButton.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonQuickAccessBar.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonSeparatorWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonStackedWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonTabBar.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SARibbonToolButton.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SARibbonBar/SAWindowButtonGroup.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SAFramelessHelper.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonActionsManager.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonApplicationButton.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonBar.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonButtonGroupWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonCategory.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonCategoryLayout.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonCheckBox.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonComboBox.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonContextCategory.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonControlButton.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonCtrlContainer.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonCustomizeData.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonCustomizeDialog.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonCustomizeWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonDrawHelper.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonElementCreateDelegate.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonElementManager.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonGallery.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonGalleryGroup.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonGalleryItem.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonLineEdit.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonLineWidgetContainer.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonMainWindow.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonMenu.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonPannel.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonPannelItem.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonPannelLayout.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonPannelOptionButton.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonQuickAccessBar.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonSeparatorWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonStackedWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonTabBar.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SARibbonToolButton.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SARibbonBar/SAWindowButtonGroup.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SARibbonBar/SARibbonBar_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/SARibbonBar/resource.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SARibbonBar/SARibbonBar_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-SARibbonBar_autogen-Debug-814fabc12a6d548fd856.json b/out/build/.cmake/api/v1/reply/target-SARibbonBar_autogen-Debug-814fabc12a6d548fd856.json new file mode 100644 index 0000000..9482928 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-SARibbonBar_autogen-Debug-814fabc12a6d548fd856.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/SARibbonBar/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "SARibbonBar_autogen_timestamp_deps::@f61b241723ced025d0ef" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "SARibbonBar_autogen::@f61b241723ced025d0ef", + "isGeneratorProvided" : true, + "name" : "SARibbonBar_autogen", + "paths" : + { + "build" : "src/SARibbonBar", + "source" : "src/SARibbonBar" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SARibbonBar/CMakeFiles/SARibbonBar_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SARibbonBar/CMakeFiles/SARibbonBar_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SARibbonBar/SARibbonBar_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-SARibbonBar_autogen_timestamp_deps-Debug-844ac52f6fa9689c11e1.json b/out/build/.cmake/api/v1/reply/target-SARibbonBar_autogen_timestamp_deps-Debug-844ac52f6fa9689c11e1.json new file mode 100644 index 0000000..c67fd61 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-SARibbonBar_autogen_timestamp_deps-Debug-844ac52f6fa9689c11e1.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/SARibbonBar/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "Modules" + }, + "id" : "SARibbonBar_autogen_timestamp_deps::@f61b241723ced025d0ef", + "isGeneratorProvided" : true, + "name" : "SARibbonBar_autogen_timestamp_deps", + "paths" : + { + "build" : "src/SARibbonBar", + "source" : "src/SARibbonBar" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SARibbonBar/CMakeFiles/SARibbonBar_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SARibbonBar/CMakeFiles/SARibbonBar_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-SelfDefObject-Debug-0a0a430956354cae4d00.json b/out/build/.cmake/api/v1/reply/target-SelfDefObject-Debug-0a0a430956354cae4d00.json new file mode 100644 index 0000000..8dff8de --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-SelfDefObject-Debug-0a0a430956354cae4d00.json @@ -0,0 +1,719 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/SelfDefObject.dll" + }, + { + "path" : "Debug/SelfDefObject.lib" + }, + { + "path" : "Debug/SelfDefObject.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_dependencies", + "add_compile_options", + "add_definitions", + "target_compile_definitions", + "include_directories" + ], + "files" : + [ + "src/SelfDefObject/CMakeLists.txt", + "src/CMakeLists.txt", + "src/PythonModule/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 29, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 50, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 2, + "file" : 2, + "line" : 44, + "parent" : 5 + }, + { + "command" : 3, + "file" : 0, + "line" : 58, + "parent" : 0 + }, + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 85, + "parent" : 8 + }, + { + "command" : 4, + "file" : 3, + "line" : 86, + "parent" : 8 + }, + { + "command" : 5, + "file" : 3, + "line" : 118, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "command" : 5, + "file" : 3, + "line" : 83, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 9, + "fragment" : "/utf-8" + }, + { + "backtrace" : 10, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 11, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 12, + "define" : "SELFDEFINEOBJ_API" + }, + { + "define" : "SelfDefObject_EXPORTS" + }, + { + "backtrace" : 13, + "define" : "UNICODE" + }, + { + "backtrace" : 13, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/SelfDefObject" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/SelfDefObject" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/SelfDefObject/SelfDefObject_autogen/include" + }, + { + "backtrace" : 14, + "path" : "D:/WBFZCPP/source/FastCAE/src/SelfDefObject/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 7, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 7, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 7, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "SelfDefObject_autogen_timestamp_deps::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 0, + "id" : "SelfDefObject_autogen::@17d93127ede5f3b478ed" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "SelfDefObject::@17d93127ede5f3b478ed", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Settings.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PythonModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\Python\\libs\\python37.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "SelfDefObject", + "nameOnDisk" : "SelfDefObject.dll", + "paths" : + { + "build" : "src/SelfDefObject", + "source" : "src/SelfDefObject" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 44, + 45, + 46, + 47, + 48 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 49 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/SelfDefObject/SelfDefObject_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/SelfDefObject/ui_LineEditDialog.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/SelfDefObject/ui_ParaMore.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/SelfDefObject/ui_ParaTabViewer.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/SelfDefObject/ui_selfdeflineedit.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SelfDefObject/LineEditDialog.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SelfDefObject/ParaCheck.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SelfDefObject/ParaColorButton.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SelfDefObject/ParaCombox.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SelfDefObject/ParaDoubleSpin.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SelfDefObject/ParaLineEdit.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SelfDefObject/ParaMore.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SelfDefObject/ParaPath.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SelfDefObject/ParaSpin.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SelfDefObject/ParaTabViewer.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SelfDefObject/ParaTable.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SelfDefObject/ParaTableWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SelfDefObject/ParaWidgetBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SelfDefObject/ParaWidgetFactory.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SelfDefObject/QFDialog.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SelfDefObject/SelfDefObjectAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SelfDefObject/SelfDefObjectBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SelfDefObject/SelfDefParaWidgetBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SelfDefObject/SelfDefWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SelfDefObject/selfdeflineedit.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SelfDefObject/LineEditDialog.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SelfDefObject/ParaCheck.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SelfDefObject/ParaColorButton.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SelfDefObject/ParaCombox.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SelfDefObject/ParaDoubleSpin.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SelfDefObject/ParaLineEdit.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SelfDefObject/ParaMore.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SelfDefObject/ParaPath.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SelfDefObject/ParaSpin.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SelfDefObject/ParaTabViewer.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SelfDefObject/ParaTable.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SelfDefObject/ParaTableWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SelfDefObject/ParaWidgetBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SelfDefObject/ParaWidgetFactory.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SelfDefObject/QFDialog.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SelfDefObject/SelfDefObjectBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SelfDefObject/SelfDefParaWidgetBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SelfDefObject/SelfDefWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SelfDefObject/selfdeflineedit.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SelfDefObject/SelfDefObject_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/SelfDefObject/LineEditDialog.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/SelfDefObject/ParaMore.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/SelfDefObject/ParaTabViewer.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/SelfDefObject/selfdeflineedit.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SelfDefObject/SelfDefObject_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-SelfDefObject_autogen-Debug-136452b2a8a8b2d57369.json b/out/build/.cmake/api/v1/reply/target-SelfDefObject_autogen-Debug-136452b2a8a8b2d57369.json new file mode 100644 index 0000000..e19ee36 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-SelfDefObject_autogen-Debug-136452b2a8a8b2d57369.json @@ -0,0 +1,87 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/SelfDefObject/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 0, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "SelfDefObject_autogen_timestamp_deps::@17d93127ede5f3b478ed" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "SelfDefObject_autogen::@17d93127ede5f3b478ed", + "isGeneratorProvided" : true, + "name" : "SelfDefObject_autogen", + "paths" : + { + "build" : "src/SelfDefObject", + "source" : "src/SelfDefObject" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SelfDefObject/CMakeFiles/SelfDefObject_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SelfDefObject/CMakeFiles/SelfDefObject_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SelfDefObject/SelfDefObject_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-SelfDefObject_autogen_timestamp_deps-Debug-0f063a5e80f0f7312065.json b/out/build/.cmake/api/v1/reply/target-SelfDefObject_autogen_timestamp_deps-Debug-0f063a5e80f0f7312065.json new file mode 100644 index 0000000..b60a2db --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-SelfDefObject_autogen_timestamp_deps-Debug-0f063a5e80f0f7312065.json @@ -0,0 +1,74 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/SelfDefObject/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "id" : "DataProperty::@ec84555ffa827036bc26" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "SelfDefObject_autogen_timestamp_deps::@17d93127ede5f3b478ed", + "isGeneratorProvided" : true, + "name" : "SelfDefObject_autogen_timestamp_deps", + "paths" : + { + "build" : "src/SelfDefObject", + "source" : "src/SelfDefObject" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SelfDefObject/CMakeFiles/SelfDefObject_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SelfDefObject/CMakeFiles/SelfDefObject_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-Settings-Debug-679ee3a5d5a360adc2ed.json b/out/build/.cmake/api/v1/reply/target-Settings-Debug-679ee3a5d5a360adc2ed.json new file mode 100644 index 0000000..12b7718 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-Settings-Debug-679ee3a5d5a360adc2ed.json @@ -0,0 +1,476 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/Settings.dll" + }, + { + "path" : "Debug/Settings.lib" + }, + { + "path" : "Debug/Settings.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_compile_options", + "add_definitions", + "target_compile_definitions", + "include_directories" + ], + "files" : + [ + "src/Settings/CMakeLists.txt", + "src/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 22, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 40, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 3, + "file" : 2, + "line" : 85, + "parent" : 5 + }, + { + "command" : 3, + "file" : 2, + "line" : 86, + "parent" : 5 + }, + { + "command" : 4, + "file" : 2, + "line" : 118, + "parent" : 5 + }, + { + "command" : 5, + "file" : 0, + "line" : 31, + "parent" : 0 + }, + { + "command" : 4, + "file" : 2, + "line" : 83, + "parent" : 5 + }, + { + "command" : 6, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 6, + "fragment" : "/utf-8" + }, + { + "backtrace" : 7, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 8, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 9, + "define" : "SETTING_API" + }, + { + "define" : "Settings_EXPORTS" + }, + { + "backtrace" : 10, + "define" : "UNICODE" + }, + { + "backtrace" : 10, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/Settings" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/Settings" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/Settings/Settings_autogen/include" + }, + { + "backtrace" : 11, + "path" : "D:/WBFZCPP/source/FastCAE/src/Settings/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19 + ] + } + ], + "dependencies" : + [ + { + "id" : "Settings_autogen_timestamp_deps::@733e6871ef4a824e534d" + }, + { + "backtrace" : 0, + "id" : "Settings_autogen::@733e6871ef4a824e534d" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "Settings::@733e6871ef4a824e534d", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "Settings", + "nameOnDisk" : "Settings.dll", + "paths" : + { + "build" : "src/Settings", + "source" : "src/Settings" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 20, + 21, + 22 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 23 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/Settings/Settings_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/Settings/ui_DialogGraphOption.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/Settings/ui_DialogWorkingDir.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Settings/BusAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Settings/ColorCombobox.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Settings/DialogGraphOption.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Settings/DialogWorkingDir.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Settings/Ecolorcombobox.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Settings/GraphOption.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Settings/MainSetting.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Settings/MessageSetting.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/Settings/SettingAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Settings/BusAPI.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Settings/ColorCombobox.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Settings/DialogGraphOption.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Settings/DialogWorkingDir.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Settings/Ecolorcombobox.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Settings/GraphOption.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Settings/MainSetting.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/Settings/MessageSetting.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Settings/Settings_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/Settings/DialogGraphOption.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/Settings/DialogWorkingDir.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Settings/Settings_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-Settings_autogen-Debug-82a028e5e8bab467dc02.json b/out/build/.cmake/api/v1/reply/target-Settings_autogen-Debug-82a028e5e8bab467dc02.json new file mode 100644 index 0000000..e504131 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-Settings_autogen-Debug-82a028e5e8bab467dc02.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/Settings/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "Settings_autogen_timestamp_deps::@733e6871ef4a824e534d" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "Settings_autogen::@733e6871ef4a824e534d", + "isGeneratorProvided" : true, + "name" : "Settings_autogen", + "paths" : + { + "build" : "src/Settings", + "source" : "src/Settings" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Settings/CMakeFiles/Settings_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Settings/CMakeFiles/Settings_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Settings/Settings_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-Settings_autogen_timestamp_deps-Debug-10760dfb04a7ccf0a99b.json b/out/build/.cmake/api/v1/reply/target-Settings_autogen_timestamp_deps-Debug-10760dfb04a7ccf0a99b.json new file mode 100644 index 0000000..2bb149e --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-Settings_autogen_timestamp_deps-Debug-10760dfb04a7ccf0a99b.json @@ -0,0 +1,62 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/Settings/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "Modules" + }, + "id" : "Settings_autogen_timestamp_deps::@733e6871ef4a824e534d", + "isGeneratorProvided" : true, + "name" : "Settings_autogen_timestamp_deps", + "paths" : + { + "build" : "src/Settings", + "source" : "src/Settings" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Settings/CMakeFiles/Settings_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/Settings/CMakeFiles/Settings_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-SolverControl-Debug-0a504d50d19bbd8d63a5.json b/out/build/.cmake/api/v1/reply/target-SolverControl-Debug-0a504d50d19bbd8d63a5.json new file mode 100644 index 0000000..c0feef0 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-SolverControl-Debug-0a504d50d19bbd8d63a5.json @@ -0,0 +1,567 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/SolverControl.dll" + }, + { + "path" : "Debug/SolverControl.lib" + }, + { + "path" : "Debug/SolverControl.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_dependencies", + "add_compile_options", + "add_definitions", + "target_compile_definitions", + "include_directories" + ], + "files" : + [ + "src/SolverControl/CMakeLists.txt", + "src/CMakeLists.txt", + "src/PythonModule/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 29, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 50, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 2, + "file" : 2, + "line" : 44, + "parent" : 5 + }, + { + "command" : 3, + "file" : 0, + "line" : 58, + "parent" : 0 + }, + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 85, + "parent" : 8 + }, + { + "command" : 4, + "file" : 3, + "line" : 86, + "parent" : 8 + }, + { + "command" : 5, + "file" : 3, + "line" : 118, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 39, + "parent" : 0 + }, + { + "command" : 5, + "file" : 3, + "line" : 83, + "parent" : 8 + }, + { + "command" : 7, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 9, + "fragment" : "/utf-8" + }, + { + "backtrace" : 10, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 11, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 12, + "define" : "SOLVERCONTROL_API" + }, + { + "define" : "SolverControl_EXPORTS" + }, + { + "backtrace" : 13, + "define" : "UNICODE" + }, + { + "backtrace" : 13, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/SolverControl" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/SolverControl" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/SolverControl/SolverControl_autogen/include" + }, + { + "backtrace" : 14, + "path" : "D:/WBFZCPP/source/FastCAE/src/SolverControl/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 1, + 2, + 10, + 11, + 12, + 13 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 7, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 7, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 7, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 7, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 7, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 7, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 7, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 7, + "id" : "PostWidgets::@93a5592897f957e6fa57" + }, + { + "backtrace" : 7, + "id" : "IO::@484b42e69e32e953bc79" + }, + { + "id" : "SolverControl_autogen_timestamp_deps::@4a18b637ce8bf6991ec0" + }, + { + "backtrace" : 0, + "id" : "SolverControl_autogen::@4a18b637ce8bf6991ec0" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "SolverControl::@4a18b637ce8bf6991ec0", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PostWidgets.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\IO.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModuleBase.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ModelData.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\ConfigOptions.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\SelfDefObject.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Settings.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\DataProperty.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PythonModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\Python\\libs\\python37.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "SolverControl", + "nameOnDisk" : "SolverControl.dll", + "paths" : + { + "build" : "src/SolverControl", + "source" : "src/SolverControl" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 10, + 11, + 12, + 13 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 14, + 15, + 16, + 17, + 18 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 19 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/SolverControl/SolverControl_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/SolverControl/qrc_qianfan.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/SolverControl/qrc_translations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/SolverControl/ui_DialogAddSolver.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/SolverControl/ui_DialogSolverManager.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SolverControl/DialogAddSolver.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SolverControl/DialogSolverManager.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SolverControl/MesherControlerBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SolverControl/SolverControlerBase.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/SolverControl/solverControlAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SolverControl/DialogAddSolver.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SolverControl/DialogSolverManager.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SolverControl/MesherControlerBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SolverControl/SolverControlerBase.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SolverControl/SolverControl_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/qianfan.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/translations.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/SolverControl/DialogAddSolver.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/SolverControl/DialogSolverManager.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SolverControl/SolverControl_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-SolverControl_autogen-Debug-fd4fed30b702707b5aa3.json b/out/build/.cmake/api/v1/reply/target-SolverControl_autogen-Debug-fd4fed30b702707b5aa3.json new file mode 100644 index 0000000..c3747fd --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-SolverControl_autogen-Debug-fd4fed30b702707b5aa3.json @@ -0,0 +1,111 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/SolverControl/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 0, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 0, + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "backtrace" : 0, + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "backtrace" : 0, + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "backtrace" : 0, + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "backtrace" : 0, + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "backtrace" : 0, + "id" : "PostWidgets::@93a5592897f957e6fa57" + }, + { + "backtrace" : 0, + "id" : "IO::@484b42e69e32e953bc79" + }, + { + "id" : "SolverControl_autogen_timestamp_deps::@4a18b637ce8bf6991ec0" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "SolverControl_autogen::@4a18b637ce8bf6991ec0", + "isGeneratorProvided" : true, + "name" : "SolverControl_autogen", + "paths" : + { + "build" : "src/SolverControl", + "source" : "src/SolverControl" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SolverControl/CMakeFiles/SolverControl_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SolverControl/CMakeFiles/SolverControl_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SolverControl/SolverControl_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-SolverControl_autogen_timestamp_deps-Debug-9f9b8da9be97a5cf17ab.json b/out/build/.cmake/api/v1/reply/target-SolverControl_autogen_timestamp_deps-Debug-9f9b8da9be97a5cf17ab.json new file mode 100644 index 0000000..90a2f7a --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-SolverControl_autogen_timestamp_deps-Debug-9f9b8da9be97a5cf17ab.json @@ -0,0 +1,92 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/SolverControl/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "id" : "DataProperty::@ec84555ffa827036bc26" + }, + { + "id" : "SelfDefObject::@17d93127ede5f3b478ed" + }, + { + "id" : "ConfigOptions::@1c9d458e4038aca43955" + }, + { + "id" : "ModelData::@8a6b2d9535e8b6cb6800" + }, + { + "id" : "ModuleBase::@53e1b14bc3636b2ea9de" + }, + { + "id" : "PostWidgets::@93a5592897f957e6fa57" + }, + { + "id" : "IO::@484b42e69e32e953bc79" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "SolverControl_autogen_timestamp_deps::@4a18b637ce8bf6991ec0", + "isGeneratorProvided" : true, + "name" : "SolverControl_autogen_timestamp_deps", + "paths" : + { + "build" : "src/SolverControl", + "source" : "src/SolverControl" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SolverControl/CMakeFiles/SolverControl_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/SolverControl/CMakeFiles/SolverControl_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-UserGuidence-Debug-b2ad728d7cda2c217487.json b/out/build/.cmake/api/v1/reply/target-UserGuidence-Debug-b2ad728d7cda2c217487.json new file mode 100644 index 0000000..3d9e799 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-UserGuidence-Debug-b2ad728d7cda2c217487.json @@ -0,0 +1,476 @@ +{ + "artifacts" : + [ + { + "path" : "Debug/UserGuidence.dll" + }, + { + "path" : "Debug/UserGuidence.lib" + }, + { + "path" : "Debug/UserGuidence.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "install", + "target_link_libraries", + "add_dependencies", + "add_compile_options", + "add_definitions", + "target_compile_definitions", + "include_directories" + ], + "files" : + [ + "src/UserGuidence/CMakeLists.txt", + "src/CMakeLists.txt", + "src/PythonModule/CMakeLists.txt", + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 29, + "parent" : 0 + }, + { + "file" : 1 + }, + { + "command" : 1, + "file" : 1, + "line" : 58, + "parent" : 2 + }, + { + "command" : 2, + "file" : 0, + "line" : 46, + "parent" : 0 + }, + { + "file" : 2 + }, + { + "command" : 2, + "file" : 2, + "line" : 44, + "parent" : 5 + }, + { + "command" : 3, + "file" : 0, + "line" : 54, + "parent" : 0 + }, + { + "file" : 3 + }, + { + "command" : 4, + "file" : 3, + "line" : 85, + "parent" : 8 + }, + { + "command" : 4, + "file" : 3, + "line" : 86, + "parent" : 8 + }, + { + "command" : 5, + "file" : 3, + "line" : 118, + "parent" : 8 + }, + { + "command" : 5, + "file" : 3, + "line" : 83, + "parent" : 8 + }, + { + "command" : 6, + "file" : 0, + "line" : 36, + "parent" : 0 + }, + { + "command" : 7, + "file" : 0, + "line" : 4, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd" + }, + { + "backtrace" : 9, + "fragment" : "/utf-8" + }, + { + "backtrace" : 10, + "fragment" : "/MDd" + } + ], + "defines" : + [ + { + "backtrace" : 11, + "define" : "OUTPUT_DEBUG_INFO" + }, + { + "backtrace" : 4, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 4, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 12, + "define" : "UNICODE" + }, + { + "backtrace" : 13, + "define" : "USERGUIDENCE_API" + }, + { + "define" : "UserGuidence_EXPORTS" + }, + { + "backtrace" : 12, + "define" : "_UNICODE" + } + ], + "includes" : + [ + { + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/UserGuidence" + }, + { + "path" : "D:/WBFZCPP/source/FastCAE/src/UserGuidence" + }, + { + "backtrace" : 0, + "path" : "D:/WBFZCPP/source/FastCAE/out/build/src/UserGuidence/UserGuidence_autogen/include" + }, + { + "backtrace" : 14, + "path" : "D:/WBFZCPP/source/FastCAE/src/UserGuidence/.." + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtCore" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/./mkspecs/win32-msvc" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtGui" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtANGLE" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "C:/Qt/5.15.2/msvc2019_64/include/QtWidgets" + }, + { + "backtrace" : 4, + "isSystem" : true, + "path" : "D:/WBFZCPP/source/FastCAE/extlib/Python/include" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 4 + ], + "standard" : "11" + }, + "sourceIndexes" : + [ + 0, + 1, + 2, + 8, + 9 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "Common::@29aabc9fbfb9b5406d55" + }, + { + "backtrace" : 7, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 7, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "backtrace" : 0, + "id" : "UserGuidence_autogen::@40175f0e8ac13e21fe7c" + }, + { + "id" : "UserGuidence_autogen_timestamp_deps::@40175f0e8ac13e21fe7c" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "UserGuidence::@40175f0e8ac13e21fe7c", + "install" : + { + "destinations" : + [ + { + "backtrace" : 3, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "D:/WBFZCPP/source/FastCAE/install" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "/machine:x64 /debug /INCREMENTAL", + "role" : "flags" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\Settings.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "Debug\\PythonModule.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Widgetsd.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Guid.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "D:\\WBFZCPP\\source\\FastCAE\\extlib\\Python\\libs\\python37.lib", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "Debug\\Common.lib", + "role" : "libraries" + }, + { + "backtrace" : 4, + "fragment" : "C:\\Qt\\5.15.2\\msvc2019_64\\lib\\Qt5Cored.lib", + "role" : "libraries" + }, + { + "fragment" : "kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "UserGuidence", + "nameOnDisk" : "UserGuidence.dll", + "paths" : + { + "build" : "src/UserGuidence", + "source" : "src/UserGuidence" + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2, + 8, + 9 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 4, + 5, + 6, + 7 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 10, + 11, + 12, + 13, + 14 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 15 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/UserGuidence/UserGuidence_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/UserGuidence/qrc_qianfan.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "out/build/src/UserGuidence/qrc_translations.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/UserGuidence/ui_DialogUserGuidence.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "isGenerated" : true, + "path" : "out/build/src/UserGuidence/ui_ExampleWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/UserGuidence/DialogUserGuidence.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/UserGuidence/ExampleWidget.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "path" : "src/UserGuidence/UserGuidenceAPI.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/UserGuidence/DialogUserGuidence.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/UserGuidence/ExampleWidget.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/UserGuidence/UserGuidence_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/qianfan.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/qrc/translations.qrc", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/UserGuidence/DialogUserGuidence.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "path" : "src/UserGuidence/ExampleWidget.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/UserGuidence/UserGuidence_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/out/build/.cmake/api/v1/reply/target-UserGuidence_autogen-Debug-f95f6abacacf44ef7ec9.json b/out/build/.cmake/api/v1/reply/target-UserGuidence_autogen-Debug-f95f6abacacf44ef7ec9.json new file mode 100644 index 0000000..ff00a7e --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-UserGuidence_autogen-Debug-f95f6abacacf44ef7ec9.json @@ -0,0 +1,83 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/UserGuidence/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "backtrace" : 0, + "id" : "Settings::@733e6871ef4a824e534d" + }, + { + "id" : "UserGuidence_autogen_timestamp_deps::@40175f0e8ac13e21fe7c" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "UserGuidence_autogen::@40175f0e8ac13e21fe7c", + "isGeneratorProvided" : true, + "name" : "UserGuidence_autogen", + "paths" : + { + "build" : "src/UserGuidence", + "source" : "src/UserGuidence" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/UserGuidence/CMakeFiles/UserGuidence_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/UserGuidence/CMakeFiles/UserGuidence_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/UserGuidence/UserGuidence_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/target-UserGuidence_autogen_timestamp_deps-Debug-6bd0d217bb37b698b434.json b/out/build/.cmake/api/v1/reply/target-UserGuidence_autogen_timestamp_deps-Debug-6bd0d217bb37b698b434.json new file mode 100644 index 0000000..5813cb4 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/target-UserGuidence_autogen_timestamp_deps-Debug-6bd0d217bb37b698b434.json @@ -0,0 +1,71 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "src/UserGuidence/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "PythonModule::@c600c49a22fbbbfcb8ff" + }, + { + "id" : "Settings::@733e6871ef4a824e534d" + } + ], + "folder" : + { + "name" : "Modules" + }, + "id" : "UserGuidence_autogen_timestamp_deps::@40175f0e8ac13e21fe7c", + "isGeneratorProvided" : true, + "name" : "UserGuidence_autogen_timestamp_deps", + "paths" : + { + "build" : "src/UserGuidence", + "source" : "src/UserGuidence" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/UserGuidence/CMakeFiles/UserGuidence_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "out/build/src/UserGuidence/CMakeFiles/UserGuidence_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/out/build/.cmake/api/v1/reply/toolchains-v1-2d3eac1e199c73b65707.json b/out/build/.cmake/api/v1/reply/toolchains-v1-2d3eac1e199c73b65707.json new file mode 100644 index 0000000..89cc398 --- /dev/null +++ b/out/build/.cmake/api/v1/reply/toolchains-v1-2d3eac1e199c73b65707.json @@ -0,0 +1,58 @@ +{ + "kind" : "toolchains", + "toolchains" : + [ + { + "compiler" : + { + "id" : "MSVC", + "implicit" : + { + "includeDirectories" : [], + "linkDirectories" : [], + "linkFrameworkDirectories" : [], + "linkLibraries" : [] + }, + "path" : "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/MSVC/14.39.33519/bin/Hostx64/x64/cl.exe", + "version" : "19.39.33522.0" + }, + "language" : "CXX", + "sourceFileExtensions" : + [ + "C", + "M", + "c++", + "cc", + "cpp", + "cxx", + "m", + "mm", + "mpp", + "CPP", + "ixx", + "cppm", + "ccm", + "cxxm", + "c++m" + ] + }, + { + "compiler" : + { + "implicit" : {}, + "path" : "C:/Program Files (x86)/Windows Kits/10/bin/10.0.22621.0/x64/rc.exe" + }, + "language" : "RC", + "sourceFileExtensions" : + [ + "rc", + "RC" + ] + } + ], + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/out/build/CMakeCache.txt b/out/build/CMakeCache.txt new file mode 100644 index 0000000..d1676e4 --- /dev/null +++ b/out/build/CMakeCache.txt @@ -0,0 +1,598 @@ +# This is the CMakeCache file. +# For build in directory: d:/WBFZCPP/source/FastCAE/out/build +# It was generated by CMake: C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a file. +CGNS_DIRS:PATH=D:/vcpkg/installed/x64-windows + +//Path to a file. +CGNS_INCLUDE_DIRS:PATH=D:/vcpkg/installed/x64-windows/include + +//Path to a file. +CGNS_LIBRARY_DIRS:PATH=D:/vcpkg/installed/x64-windows/lib + +//Path to a program. +CMAKE_AR:FILEPATH=C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/MSVC/14.39.33519/bin/Hostx64/x64/lib.exe + +//No help, variable specified on the command line. +CMAKE_BUILD_TYPE:STRING=Debug + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/MSVC/14.39.33519/bin/Hostx64/x64/cl.exe + +//No help, variable specified on the command line. +CMAKE_CXX_FLAGS:STRING=-DQT_QML_DEBUG + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=/Zi /Ob0 /Od /RTC1 + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=/O1 /Ob1 /DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=/O2 /Ob2 /DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=/Zi /O2 /Ob1 /DNDEBUG + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING=/machine:x64 + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=D:/WBFZCPP/source/FastCAE/out/build/CMakeFiles/pkgRedirects + +//User executables (bin) +CMAKE_INSTALL_BINDIR:PATH=bin + +//Read-only architecture-independent data (DATAROOTDIR) +CMAKE_INSTALL_DATADIR:PATH= + +//Read-only architecture-independent data root (share) +CMAKE_INSTALL_DATAROOTDIR:PATH=share + +//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) +CMAKE_INSTALL_DOCDIR:PATH= + +//C header files (include) +CMAKE_INSTALL_INCLUDEDIR:PATH=include + +//Info documentation (DATAROOTDIR/info) +CMAKE_INSTALL_INFODIR:PATH= + +//Object code libraries (lib) +CMAKE_INSTALL_LIBDIR:PATH=lib + +//Program executables (libexec) +CMAKE_INSTALL_LIBEXECDIR:PATH=libexec + +//Locale-dependent data (DATAROOTDIR/locale) +CMAKE_INSTALL_LOCALEDIR:PATH= + +//Modifiable single-machine data (var) +CMAKE_INSTALL_LOCALSTATEDIR:PATH=var + +//Man documentation (DATAROOTDIR/man) +CMAKE_INSTALL_MANDIR:PATH= + +//C header files for non-gcc (/usr/include) +CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include + +//LAMPCAE的安装路径 +CMAKE_INSTALL_PREFIX:PATH=c:/Program Files/LAMPCAE + +//Run-time variable data (LOCALSTATEDIR/run) +CMAKE_INSTALL_RUNSTATEDIR:PATH= + +//System admin executables (sbin) +CMAKE_INSTALL_SBINDIR:PATH=sbin + +//Modifiable architecture-independent data (com) +CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com + +//Read-only single-machine data (etc) +CMAKE_INSTALL_SYSCONFDIR:PATH=etc + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/MSVC/14.39.33519/bin/Hostx64/x64/link.exe + +//make program +CMAKE_MAKE_PROGRAM:FILEPATH=C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/Ninja/ninja.exe + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING=/machine:x64 + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL + +//Path to a program. +CMAKE_MT:FILEPATH=C:/Program Files (x86)/Windows Kits/10/bin/10.0.22621.0/x64/mt.exe + +//No help, variable specified on the command line. +CMAKE_PREFIX_PATH:STRING=C:/QT/5.15.2/MSVC2019_64 + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC=LAMPCAE ,基于 FastCAE,一款免费的CAE仿真软件研发支撑平台。 + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC=http://www.LAMPCAE.com/ + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=LAMPCAE + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=2.5.0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=2 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=5 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//RC compiler +CMAKE_RC_COMPILER:FILEPATH=C:/Program Files (x86)/Windows Kits/10/bin/10.0.22621.0/x64/rc.exe + +//Flags for Windows Resource Compiler during all build types. +CMAKE_RC_FLAGS:STRING=-DWIN32 + +//Flags for Windows Resource Compiler during DEBUG builds. +CMAKE_RC_FLAGS_DEBUG:STRING=-D_DEBUG + +//Flags for Windows Resource Compiler during MINSIZEREL builds. +CMAKE_RC_FLAGS_MINSIZEREL:STRING= + +//Flags for Windows Resource Compiler during RELEASE builds. +CMAKE_RC_FLAGS_RELEASE:STRING= + +//Flags for Windows Resource Compiler during RELWITHDEBINFO builds. +CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING= + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING=/machine:x64 + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING=/machine:x64 + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Enable to build 7-Zip packages +CPACK_BINARY_7Z:BOOL=OFF + +//Enable to build IFW packages +CPACK_BINARY_IFW:BOOL=OFF + +//Enable to build Inno Setup packages +CPACK_BINARY_INNOSETUP:BOOL=OFF + +//Enable to build NSIS packages +CPACK_BINARY_NSIS:BOOL=ON + +//Enable to build NuGet packages +CPACK_BINARY_NUGET:BOOL=OFF + +//Enable to build WiX packages +CPACK_BINARY_WIX:BOOL=OFF + +//Enable to build ZIP packages +CPACK_BINARY_ZIP:BOOL=OFF + +//Enable to build 7-Zip source packages +CPACK_SOURCE_7Z:BOOL=ON + +//Enable to build ZIP source packages +CPACK_SOURCE_ZIP:BOOL=ON + +//Dot tool for use with Doxygen +DOXYGEN_DOT_EXECUTABLE:FILEPATH=DOXYGEN_DOT_EXECUTABLE-NOTFOUND + +//Doxygen documentation generation tool (https://www.doxygen.nl) +DOXYGEN_EXECUTABLE:FILEPATH=C:/doxygen/bin/doxygen.exe + +//Path to a file. +Gmsh_DIRS:PATH=D:/WBFZCPP/source/FastCAE/extlib/Gmsh + +//Path to a file. +HDF5_DIRS:PATH=D:/WBFZCPP/source/FastCAE/extlib/HDF5 + +//Path to a file. +HDF5_INCLUDE_DIRS:PATH=D:/WBFZCPP/source/FastCAE/extlib/HDF5/include + +//Path to a file. +HDF5_LIBRARY_DIRS:PATH=D:/WBFZCPP/source/FastCAE/extlib/HDF5/lib + +//如果extlib不存在,则自动下载(git)依赖库 +LAMPCAE_AUTO_DOWNLOAD:BOOL=ON + +//Value Computed by CMake +LAMPCAE_BINARY_DIR:STATIC=D:/WBFZCPP/source/FastCAE/out/build + +//输出调试信息 +LAMPCAE_DEBUG_INFO:BOOL=ON + +//生成Doxygen文档 +LAMPCAE_DOXYGEN_DOC:BOOL=ON + +//ON:开启代码调试,OFF:仅安装程序 +LAMPCAE_ENABLE_DEV:BOOL=ON + +//使用MPI +LAMPCAE_ENABLE_MPI:BOOL=OFF + +//使用OpenMP +LAMPCAE_ENABLE_OPENMP:BOOL=OFF + +//开启单元测试(尚未开发完成) +LAMPCAE_ENABLE_TEST:BOOL=OFF + +//生成LAMPCAE安装包 +LAMPCAE_INSTALLATION_PACKAGE:BOOL=ON + +//Value Computed by CMake +LAMPCAE_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +LAMPCAE_SOURCE_DIR:STATIC=D:/WBFZCPP/source/FastCAE + +//Path to a program. +NSIS_EXECUTABLE:FILEPATH=NSIS_EXECUTABLE-NOTFOUND + +//Path to a file. +Python_DIRS:PATH=D:/WBFZCPP/source/FastCAE/extlib/Python + +//Path to a file. +Python_INCLUDE_DIRS:PATH=D:/WBFZCPP/source/FastCAE/extlib/Python/include + +//Path to a file. +Python_LIBRARY_DIRS:PATH=D:/WBFZCPP/source/FastCAE/extlib/Python/libs + +//The directory containing a CMake configuration file for Qt5Core. +Qt5Core_DIR:PATH=C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Core + +//The directory containing a CMake configuration file for Qt5DBus. +Qt5DBus_DIR:PATH=C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5DBus + +//The directory containing a CMake configuration file for Qt5Gui. +Qt5Gui_DIR:PATH=C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Gui + +//The directory containing a CMake configuration file for Qt5OpenGL. +Qt5OpenGL_DIR:PATH=C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5OpenGL + +//The directory containing a CMake configuration file for Qt5PrintSupport. +Qt5PrintSupport_DIR:PATH=C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5PrintSupport + +//The directory containing a CMake configuration file for Qt5Svg. +Qt5Svg_DIR:PATH=C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Svg + +//The directory containing a CMake configuration file for Qt5Widgets. +Qt5Widgets_DIR:PATH=C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Widgets + +//The directory containing a CMake configuration file for Qt5Xml. +Qt5Xml_DIR:PATH=C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5Xml + +//Qt5Config.cmake所在目录 +Qt5_DIR:PATH=C:/Qt/5.15.2/msvc2019_64/lib/cmake/Qt5 + +//Path to a file. +QuaZIP_BINARY_DIRS:PATH=D:/WBFZCPP/source/FastCAE/extlib/QuaZIP/lib + +//Path to a file. +QuaZIP_DIRS:PATH=D:/WBFZCPP/source/FastCAE/extlib/QuaZIP + +//Path to a file. +QuaZIP_INCLUDE_DIRS:PATH=D:/WBFZCPP/source/FastCAE/extlib/QuaZIP/include/quazip5 + +//Path to a file. +QuaZIP_LIBRARY_DIRS:PATH=D:/WBFZCPP/source/FastCAE/extlib/QuaZIP/lib + +//Path to a file. +Qwt_BINARY_DIRS:PATH=C:/Qwt/lib + +//Path to a file. +Qwt_INCLUDE_DIRS:PATH=C:/Qwt/include + +//Path to a file. +Qwt_LIBRARY_DIRS:PATH=C:/Qwt/lib + +//Path to a file. +TecIO_DIRS:PATH=D:/WBFZCPP/source/FastCAE/extlib/TecIO + +//Path to a file. +TecIO_INCLUDE_DIRS:PATH=D:/WBFZCPP/source/FastCAE/extlib/TecIO/include + +//Path to a file. +TecIO_LIBRARY_DIRS:PATH=D:/WBFZCPP/source/FastCAE/extlib/TecIO/lib + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=d:/WBFZCPP/source/FastCAE/out/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=28 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=0 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=D:/WBFZCPP/source/FastCAE +//ADVANCED property for variable: CMAKE_INSTALL_BINDIR +CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATADIR +CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR +CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR +CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR +CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INFODIR +CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR +CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR +CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR +CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR +CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_MANDIR +CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR +CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR +CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR +CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR +CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR +CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MT +CMAKE_MT-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=37 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//noop for ranlib +CMAKE_RANLIB:INTERNAL=: +//ADVANCED property for variable: CMAKE_RC_COMPILER +CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1 +CMAKE_RC_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS +CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG +CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL +CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE +CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO +CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_7Z +CPACK_BINARY_7Z-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_IFW +CPACK_BINARY_IFW-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_INNOSETUP +CPACK_BINARY_INNOSETUP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_NSIS +CPACK_BINARY_NSIS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_NUGET +CPACK_BINARY_NUGET-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_WIX +CPACK_BINARY_WIX-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_BINARY_ZIP +CPACK_BINARY_ZIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_7Z +CPACK_SOURCE_7Z-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CPACK_SOURCE_ZIP +CPACK_SOURCE_ZIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: DOXYGEN_DOT_EXECUTABLE +DOXYGEN_DOT_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: DOXYGEN_EXECUTABLE +DOXYGEN_EXECUTABLE-ADVANCED:INTERNAL=1 +//Details about finding CGNS +FIND_PACKAGE_MESSAGE_DETAILS_CGNS:INTERNAL=[D:/vcpkg/installed/x64-windows][D:/vcpkg/installed/x64-windows/include][D:/vcpkg/installed/x64-windows/lib][LAMPCAE::CGNS][v4.3.0()] +//Details about finding Doxygen +FIND_PACKAGE_MESSAGE_DETAILS_Doxygen:INTERNAL=[C:/doxygen/bin/doxygen.exe][cfound components: doxygen missing components: dot][v1.10.0()] +//Details about finding Gmsh +FIND_PACKAGE_MESSAGE_DETAILS_Gmsh:INTERNAL=[D:/WBFZCPP/source/FastCAE/extlib/Gmsh][D:/WBFZCPP/source/FastCAE/extlib/Gmsh/gmsh.exe][v4.8.0()] +//Details about finding HDF5 +FIND_PACKAGE_MESSAGE_DETAILS_HDF5:INTERNAL=[D:/WBFZCPP/source/FastCAE/extlib/HDF5][D:/WBFZCPP/source/FastCAE/extlib/HDF5/include][D:/WBFZCPP/source/FastCAE/extlib/HDF5/lib][LAMPCAE::HDF5;LAMPCAE::HDF5CPP;LAMPCAE::HDF5HL;LAMPCAE::HDF5HLCPP;LAMPCAE::HDF5TOOLS][v1.13.1()] +//Details about finding OpenCASCADE +FIND_PACKAGE_MESSAGE_DETAILS_OpenCASCADE:INTERNAL=[C:/OCCT][C:/OCCT/inc][C:/OCCT/win64/vc14/lib][OpenCASCADE::Freetype;OpenCASCADE::Tcl86;OpenCASCADE::Tk86;OpenCASCADE::TKernel;OpenCASCADE::TKMath;OpenCASCADE::TKG2d;OpenCASCADE::TKG3d;OpenCASCADE::TKGeomBase;OpenCASCADE::TKBRep;OpenCASCADE::TKGeomAlgo;OpenCASCADE::TKTopAlgo;OpenCASCADE::TKPrim;OpenCASCADE::TKBO;OpenCASCADE::TKShHealing;OpenCASCADE::TKBool;OpenCASCADE::TKHLR;OpenCASCADE::TKFillet;OpenCASCADE::TKOffset;OpenCASCADE::TKFeat;OpenCASCADE::TKMesh;OpenCASCADE::TKXMesh;OpenCASCADE::TKService;OpenCASCADE::TKV3d;OpenCASCADE::TKOpenGl;OpenCASCADE::TKMeshVS;OpenCASCADE::TKIVtk;OpenCASCADE::TKCDF;OpenCASCADE::TKLCAF;OpenCASCADE::TKCAF;OpenCASCADE::TKBinL;OpenCASCADE::TKXmlL;OpenCASCADE::TKBin;OpenCASCADE::TKXml;OpenCASCADE::TKStdL;OpenCASCADE::TKStd;OpenCASCADE::TKTObj;OpenCASCADE::TKBinTObj;OpenCASCADE::TKXmlTObj;OpenCASCADE::TKVCAF;OpenCASCADE::TKXSBase;OpenCASCADE::TKSTEPBase;OpenCASCADE::TKSTEPAttr;OpenCASCADE::TKSTEP209;OpenCASCADE::TKSTEP;OpenCASCADE::TKIGES;OpenCASCADE::TKXCAF;OpenCASCADE::TKXDEIGES;OpenCASCADE::TKXDESTEP;OpenCASCADE::TKSTL;OpenCASCADE::TKVRML;OpenCASCADE::TKXmlXCAF;OpenCASCADE::TKBinXCAF;OpenCASCADE::TKRWMesh;OpenCASCADE::TKDraw;OpenCASCADE::TKTopTest;OpenCASCADE::TKOpenGlTest;OpenCASCADE::TKViewerTest;OpenCASCADE::TKXSDRAW;OpenCASCADE::TKDCAF;OpenCASCADE::TKXDEDRAW;OpenCASCADE::TKTObjDRAW;OpenCASCADE::TKQADraw;OpenCASCADE::TKIVtkDraw][C:/OCCT/win64/vc14/bin][v7.6.0()] +//Details about finding Python +FIND_PACKAGE_MESSAGE_DETAILS_Python:INTERNAL=[D:/WBFZCPP/source/FastCAE/extlib/Python][D:/WBFZCPP/source/FastCAE/extlib/Python/include][D:/WBFZCPP/source/FastCAE/extlib/Python/libs][LAMPCAE::PYTHON][D:/WBFZCPP/source/FastCAE/extlib/Python/python.exe][v3.7.0()] +//Details about finding QuaZIP +FIND_PACKAGE_MESSAGE_DETAILS_QuaZIP:INTERNAL=[D:/WBFZCPP/source/FastCAE/extlib/QuaZIP][D:/WBFZCPP/source/FastCAE/extlib/QuaZIP/include/quazip5][D:/WBFZCPP/source/FastCAE/extlib/QuaZIP/lib][LAMPCAE::QUAZIP][D:/WBFZCPP/source/FastCAE/extlib/QuaZIP/lib][v0.7.3()] +//Details about finding Qwt +FIND_PACKAGE_MESSAGE_DETAILS_Qwt:INTERNAL=[C:/Qwt][C:/Qwt/include][C:/Qwt/lib][LAMPCAE::QWT;LAMPCAE::QWTPOLAR][C:/Qwt/lib][v6.2.0()] +//Details about finding TecIO +FIND_PACKAGE_MESSAGE_DETAILS_TecIO:INTERNAL=[D:/WBFZCPP/source/FastCAE/extlib/TecIO][D:/WBFZCPP/source/FastCAE/extlib/TecIO/include][D:/WBFZCPP/source/FastCAE/extlib/TecIO/lib][LAMPCAE::TECIO][v1.4.2()] +//Details about finding VTK +FIND_PACKAGE_MESSAGE_DETAILS_VTK:INTERNAL=[C:/VTK][C:/VTK/include/vtk-9.3][C:/VTK/lib][VTK::ChartsCore;VTK::CommonColor;VTK::CommonComputationalGeometry;VTK::CommonCore;VTK::CommonDataModel;VTK::CommonExecutionModel;VTK::CommonMath;VTK::CommonMisc;VTK::CommonSystem;VTK::CommonTransforms;VTK::DomainsChemistry;VTK::FiltersAMR;VTK::FiltersCore;VTK::FiltersExtraction;VTK::FiltersFlowPaths;VTK::FiltersGeneral;VTK::FiltersGeneric;VTK::FiltersGeometry;VTK::FiltersHybrid;VTK::FiltersHyperTree;VTK::FiltersImaging;VTK::FiltersModeling;VTK::FiltersParallel;VTK::FiltersParallelImaging;VTK::FiltersPoints;VTK::FiltersProgrammable;VTK::FiltersSelection;VTK::FiltersSMP;VTK::FiltersSources;VTK::FiltersStatistics;VTK::FiltersTexture;VTK::FiltersTopology;VTK::FiltersVerdict;VTK::GeovisCore;VTK::GUISupportQt;VTK::GUISupportQtSQL;VTK::ImagingColor;VTK::ImagingCore;VTK::ImagingFourier;VTK::ImagingGeneral;VTK::ImagingHybrid;VTK::ImagingMath;VTK::ImagingMorphological;VTK::ImagingSources;VTK::ImagingStatistics;VTK::ImagingStencil;VTK::InfovisCore;VTK::InfovisLayout;VTK::InteractionImage;VTK::InteractionStyle;VTK::InteractionWidgets;VTK::IOAsynchronous;VTK::IOCityGML;VTK::IOCore;VTK::IOEnSight;VTK::IOExport;VTK::IOExportGL2PS;VTK::IOExportPDF;VTK::IOGeometry;VTK::IOImage;VTK::IOImport;VTK::IOInfovis;VTK::IOLegacy;VTK::IOLSDyna;VTK::IOMotionFX;VTK::IOMovie;VTK::IOOggTheora;VTK::IOParallel;VTK::IOParallelXML;VTK::IOPLY;VTK::IOSegY;VTK::IOSQL;VTK::IOTecplotTable;VTK::IOVideo;VTK::IOXML;VTK::IOXMLParser;VTK::ParallelCore;VTK::ParallelDIY;VTK::RenderingAnnotation;VTK::RenderingContext2D;VTK::RenderingCore;VTK::RenderingFreeType;VTK::RenderingGL2PSOpenGL2;VTK::RenderingImage;VTK::RenderingLabel;VTK::RenderingLOD;VTK::RenderingOpenGL2;VTK::RenderingQt;VTK::RenderingSceneGraph;VTK::RenderingUI;VTK::RenderingVolume;VTK::RenderingVolumeOpenGL2;VTK::RenderingVtkJS;VTK::TestingRendering;VTK::doubleconversion;VTK::expat;VTK::freetype;VTK::gl2ps;VTK::glew;VTK::jpeg;VTK::jsoncpp;VTK::libharu;VTK::libproj;VTK::libxml2;VTK::loguru;VTK::lz4;VTK::lzma;VTK::ogg;VTK::png;VTK::pugixml;VTK::sqlite;VTK::theora;VTK::tiff;VTK::verdict;VTK::zlib;VTK::DICOMParser;VTK::sys;VTK::metaio;VTK::ViewsContext2D;VTK::ViewsCore;VTK::ViewsInfovis;VTK::ViewsQt;VTK::WrappingTools][C:/VTK/bin][v9.3.0()] +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=D:/WBFZCPP/source/FastCAE/install + diff --git a/out/build/CMakeDoxyfile.in b/out/build/CMakeDoxyfile.in new file mode 100644 index 0000000..02db1b0 --- /dev/null +++ b/out/build/CMakeDoxyfile.in @@ -0,0 +1,301 @@ +# +# DO NOT EDIT! THIS FILE WAS GENERATED BY CMAKE! +# + +DOXYFILE_ENCODING = @DOXYGEN_DOXYFILE_ENCODING@ +PROJECT_NAME = @DOXYGEN_PROJECT_NAME@ +PROJECT_NUMBER = @DOXYGEN_PROJECT_NUMBER@ +PROJECT_BRIEF = @DOXYGEN_PROJECT_BRIEF@ +PROJECT_LOGO = @DOXYGEN_PROJECT_LOGO@ +PROJECT_ICON = @DOXYGEN_PROJECT_ICON@ +OUTPUT_DIRECTORY = @DOXYGEN_OUTPUT_DIRECTORY@ +CREATE_SUBDIRS = @DOXYGEN_CREATE_SUBDIRS@ +CREATE_SUBDIRS_LEVEL = @DOXYGEN_CREATE_SUBDIRS_LEVEL@ +ALLOW_UNICODE_NAMES = @DOXYGEN_ALLOW_UNICODE_NAMES@ +OUTPUT_LANGUAGE = @DOXYGEN_OUTPUT_LANGUAGE@ +BRIEF_MEMBER_DESC = @DOXYGEN_BRIEF_MEMBER_DESC@ +REPEAT_BRIEF = @DOXYGEN_REPEAT_BRIEF@ +ABBREVIATE_BRIEF = @DOXYGEN_ABBREVIATE_BRIEF@ +ALWAYS_DETAILED_SEC = @DOXYGEN_ALWAYS_DETAILED_SEC@ +INLINE_INHERITED_MEMB = @DOXYGEN_INLINE_INHERITED_MEMB@ +FULL_PATH_NAMES = @DOXYGEN_FULL_PATH_NAMES@ +STRIP_FROM_PATH = @DOXYGEN_STRIP_FROM_PATH@ +STRIP_FROM_INC_PATH = @DOXYGEN_STRIP_FROM_INC_PATH@ +SHORT_NAMES = @DOXYGEN_SHORT_NAMES@ +JAVADOC_AUTOBRIEF = @DOXYGEN_JAVADOC_AUTOBRIEF@ +JAVADOC_BANNER = @DOXYGEN_JAVADOC_BANNER@ +QT_AUTOBRIEF = @DOXYGEN_QT_AUTOBRIEF@ +MULTILINE_CPP_IS_BRIEF = @DOXYGEN_MULTILINE_CPP_IS_BRIEF@ +PYTHON_DOCSTRING = @DOXYGEN_PYTHON_DOCSTRING@ +INHERIT_DOCS = @DOXYGEN_INHERIT_DOCS@ +SEPARATE_MEMBER_PAGES = @DOXYGEN_SEPARATE_MEMBER_PAGES@ +TAB_SIZE = @DOXYGEN_TAB_SIZE@ +ALIASES = @DOXYGEN_ALIASES@ +OPTIMIZE_OUTPUT_FOR_C = @DOXYGEN_OPTIMIZE_OUTPUT_FOR_C@ +OPTIMIZE_OUTPUT_JAVA = @DOXYGEN_OPTIMIZE_OUTPUT_JAVA@ +OPTIMIZE_FOR_FORTRAN = @DOXYGEN_OPTIMIZE_FOR_FORTRAN@ +OPTIMIZE_OUTPUT_VHDL = @DOXYGEN_OPTIMIZE_OUTPUT_VHDL@ +OPTIMIZE_OUTPUT_SLICE = @DOXYGEN_OPTIMIZE_OUTPUT_SLICE@ +EXTENSION_MAPPING = @DOXYGEN_EXTENSION_MAPPING@ +MARKDOWN_SUPPORT = @DOXYGEN_MARKDOWN_SUPPORT@ +TOC_INCLUDE_HEADINGS = @DOXYGEN_TOC_INCLUDE_HEADINGS@ +MARKDOWN_ID_STYLE = @DOXYGEN_MARKDOWN_ID_STYLE@ +AUTOLINK_SUPPORT = @DOXYGEN_AUTOLINK_SUPPORT@ +BUILTIN_STL_SUPPORT = @DOXYGEN_BUILTIN_STL_SUPPORT@ +CPP_CLI_SUPPORT = @DOXYGEN_CPP_CLI_SUPPORT@ +SIP_SUPPORT = @DOXYGEN_SIP_SUPPORT@ +IDL_PROPERTY_SUPPORT = @DOXYGEN_IDL_PROPERTY_SUPPORT@ +DISTRIBUTE_GROUP_DOC = @DOXYGEN_DISTRIBUTE_GROUP_DOC@ +GROUP_NESTED_COMPOUNDS = @DOXYGEN_GROUP_NESTED_COMPOUNDS@ +SUBGROUPING = @DOXYGEN_SUBGROUPING@ +INLINE_GROUPED_CLASSES = @DOXYGEN_INLINE_GROUPED_CLASSES@ +INLINE_SIMPLE_STRUCTS = @DOXYGEN_INLINE_SIMPLE_STRUCTS@ +TYPEDEF_HIDES_STRUCT = @DOXYGEN_TYPEDEF_HIDES_STRUCT@ +LOOKUP_CACHE_SIZE = @DOXYGEN_LOOKUP_CACHE_SIZE@ +NUM_PROC_THREADS = @DOXYGEN_NUM_PROC_THREADS@ +TIMESTAMP = @DOXYGEN_TIMESTAMP@ +EXTRACT_ALL = @DOXYGEN_EXTRACT_ALL@ +EXTRACT_PRIVATE = @DOXYGEN_EXTRACT_PRIVATE@ +EXTRACT_PRIV_VIRTUAL = @DOXYGEN_EXTRACT_PRIV_VIRTUAL@ +EXTRACT_PACKAGE = @DOXYGEN_EXTRACT_PACKAGE@ +EXTRACT_STATIC = @DOXYGEN_EXTRACT_STATIC@ +EXTRACT_LOCAL_CLASSES = @DOXYGEN_EXTRACT_LOCAL_CLASSES@ +EXTRACT_LOCAL_METHODS = @DOXYGEN_EXTRACT_LOCAL_METHODS@ +EXTRACT_ANON_NSPACES = @DOXYGEN_EXTRACT_ANON_NSPACES@ +RESOLVE_UNNAMED_PARAMS = @DOXYGEN_RESOLVE_UNNAMED_PARAMS@ +HIDE_UNDOC_MEMBERS = @DOXYGEN_HIDE_UNDOC_MEMBERS@ +HIDE_UNDOC_CLASSES = @DOXYGEN_HIDE_UNDOC_CLASSES@ +HIDE_FRIEND_COMPOUNDS = @DOXYGEN_HIDE_FRIEND_COMPOUNDS@ +HIDE_IN_BODY_DOCS = @DOXYGEN_HIDE_IN_BODY_DOCS@ +INTERNAL_DOCS = @DOXYGEN_INTERNAL_DOCS@ +CASE_SENSE_NAMES = @DOXYGEN_CASE_SENSE_NAMES@ +HIDE_SCOPE_NAMES = @DOXYGEN_HIDE_SCOPE_NAMES@ +HIDE_COMPOUND_REFERENCE= @DOXYGEN_HIDE_COMPOUND_REFERENCE@ +SHOW_HEADERFILE = @DOXYGEN_SHOW_HEADERFILE@ +SHOW_INCLUDE_FILES = @DOXYGEN_SHOW_INCLUDE_FILES@ +SHOW_GROUPED_MEMB_INC = @DOXYGEN_SHOW_GROUPED_MEMB_INC@ +FORCE_LOCAL_INCLUDES = @DOXYGEN_FORCE_LOCAL_INCLUDES@ +INLINE_INFO = @DOXYGEN_INLINE_INFO@ +SORT_MEMBER_DOCS = @DOXYGEN_SORT_MEMBER_DOCS@ +SORT_BRIEF_DOCS = @DOXYGEN_SORT_BRIEF_DOCS@ +SORT_MEMBERS_CTORS_1ST = @DOXYGEN_SORT_MEMBERS_CTORS_1ST@ +SORT_GROUP_NAMES = @DOXYGEN_SORT_GROUP_NAMES@ +SORT_BY_SCOPE_NAME = @DOXYGEN_SORT_BY_SCOPE_NAME@ +STRICT_PROTO_MATCHING = @DOXYGEN_STRICT_PROTO_MATCHING@ +GENERATE_TODOLIST = @DOXYGEN_GENERATE_TODOLIST@ +GENERATE_TESTLIST = @DOXYGEN_GENERATE_TESTLIST@ +GENERATE_BUGLIST = @DOXYGEN_GENERATE_BUGLIST@ +GENERATE_DEPRECATEDLIST= @DOXYGEN_GENERATE_DEPRECATEDLIST@ +ENABLED_SECTIONS = @DOXYGEN_ENABLED_SECTIONS@ +MAX_INITIALIZER_LINES = @DOXYGEN_MAX_INITIALIZER_LINES@ +SHOW_USED_FILES = @DOXYGEN_SHOW_USED_FILES@ +SHOW_FILES = @DOXYGEN_SHOW_FILES@ +SHOW_NAMESPACES = @DOXYGEN_SHOW_NAMESPACES@ +FILE_VERSION_FILTER = @DOXYGEN_FILE_VERSION_FILTER@ +LAYOUT_FILE = @DOXYGEN_LAYOUT_FILE@ +CITE_BIB_FILES = @DOXYGEN_CITE_BIB_FILES@ +QUIET = @DOXYGEN_QUIET@ +WARNINGS = @DOXYGEN_WARNINGS@ +WARN_IF_UNDOCUMENTED = @DOXYGEN_WARN_IF_UNDOCUMENTED@ +WARN_IF_DOC_ERROR = @DOXYGEN_WARN_IF_DOC_ERROR@ +WARN_IF_INCOMPLETE_DOC = @DOXYGEN_WARN_IF_INCOMPLETE_DOC@ +WARN_NO_PARAMDOC = @DOXYGEN_WARN_NO_PARAMDOC@ +WARN_IF_UNDOC_ENUM_VAL = @DOXYGEN_WARN_IF_UNDOC_ENUM_VAL@ +WARN_AS_ERROR = @DOXYGEN_WARN_AS_ERROR@ +WARN_FORMAT = @DOXYGEN_WARN_FORMAT@ +WARN_LINE_FORMAT = @DOXYGEN_WARN_LINE_FORMAT@ +WARN_LOGFILE = @DOXYGEN_WARN_LOGFILE@ +INPUT = @DOXYGEN_INPUT@ +INPUT_ENCODING = @DOXYGEN_INPUT_ENCODING@ +INPUT_FILE_ENCODING = @DOXYGEN_INPUT_FILE_ENCODING@ +FILE_PATTERNS = @DOXYGEN_FILE_PATTERNS@ +RECURSIVE = @DOXYGEN_RECURSIVE@ +EXCLUDE = @DOXYGEN_EXCLUDE@ +EXCLUDE_SYMLINKS = @DOXYGEN_EXCLUDE_SYMLINKS@ +EXCLUDE_PATTERNS = @DOXYGEN_EXCLUDE_PATTERNS@ +EXCLUDE_SYMBOLS = @DOXYGEN_EXCLUDE_SYMBOLS@ +EXAMPLE_PATH = @DOXYGEN_EXAMPLE_PATH@ +EXAMPLE_PATTERNS = @DOXYGEN_EXAMPLE_PATTERNS@ +EXAMPLE_RECURSIVE = @DOXYGEN_EXAMPLE_RECURSIVE@ +IMAGE_PATH = @DOXYGEN_IMAGE_PATH@ +INPUT_FILTER = @DOXYGEN_INPUT_FILTER@ +FILTER_PATTERNS = @DOXYGEN_FILTER_PATTERNS@ +FILTER_SOURCE_FILES = @DOXYGEN_FILTER_SOURCE_FILES@ +FILTER_SOURCE_PATTERNS = @DOXYGEN_FILTER_SOURCE_PATTERNS@ +USE_MDFILE_AS_MAINPAGE = @DOXYGEN_USE_MDFILE_AS_MAINPAGE@ +FORTRAN_COMMENT_AFTER = @DOXYGEN_FORTRAN_COMMENT_AFTER@ +SOURCE_BROWSER = @DOXYGEN_SOURCE_BROWSER@ +INLINE_SOURCES = @DOXYGEN_INLINE_SOURCES@ +STRIP_CODE_COMMENTS = @DOXYGEN_STRIP_CODE_COMMENTS@ +REFERENCED_BY_RELATION = @DOXYGEN_REFERENCED_BY_RELATION@ +REFERENCES_RELATION = @DOXYGEN_REFERENCES_RELATION@ +REFERENCES_LINK_SOURCE = @DOXYGEN_REFERENCES_LINK_SOURCE@ +SOURCE_TOOLTIPS = @DOXYGEN_SOURCE_TOOLTIPS@ +USE_HTAGS = @DOXYGEN_USE_HTAGS@ +VERBATIM_HEADERS = @DOXYGEN_VERBATIM_HEADERS@ +CLANG_ASSISTED_PARSING = @DOXYGEN_CLANG_ASSISTED_PARSING@ +CLANG_ADD_INC_PATHS = @DOXYGEN_CLANG_ADD_INC_PATHS@ +CLANG_OPTIONS = @DOXYGEN_CLANG_OPTIONS@ +CLANG_DATABASE_PATH = @DOXYGEN_CLANG_DATABASE_PATH@ +ALPHABETICAL_INDEX = @DOXYGEN_ALPHABETICAL_INDEX@ +IGNORE_PREFIX = @DOXYGEN_IGNORE_PREFIX@ +GENERATE_HTML = @DOXYGEN_GENERATE_HTML@ +HTML_OUTPUT = @DOXYGEN_HTML_OUTPUT@ +HTML_FILE_EXTENSION = @DOXYGEN_HTML_FILE_EXTENSION@ +HTML_HEADER = @DOXYGEN_HTML_HEADER@ +HTML_FOOTER = @DOXYGEN_HTML_FOOTER@ +HTML_STYLESHEET = @DOXYGEN_HTML_STYLESHEET@ +HTML_EXTRA_STYLESHEET = @DOXYGEN_HTML_EXTRA_STYLESHEET@ +HTML_EXTRA_FILES = @DOXYGEN_HTML_EXTRA_FILES@ +HTML_COLORSTYLE = @DOXYGEN_HTML_COLORSTYLE@ +HTML_COLORSTYLE_HUE = @DOXYGEN_HTML_COLORSTYLE_HUE@ +HTML_COLORSTYLE_SAT = @DOXYGEN_HTML_COLORSTYLE_SAT@ +HTML_COLORSTYLE_GAMMA = @DOXYGEN_HTML_COLORSTYLE_GAMMA@ +HTML_DYNAMIC_MENUS = @DOXYGEN_HTML_DYNAMIC_MENUS@ +HTML_DYNAMIC_SECTIONS = @DOXYGEN_HTML_DYNAMIC_SECTIONS@ +HTML_CODE_FOLDING = @DOXYGEN_HTML_CODE_FOLDING@ +HTML_COPY_CLIPBOARD = @DOXYGEN_HTML_COPY_CLIPBOARD@ +HTML_PROJECT_COOKIE = @DOXYGEN_HTML_PROJECT_COOKIE@ +HTML_INDEX_NUM_ENTRIES = @DOXYGEN_HTML_INDEX_NUM_ENTRIES@ +GENERATE_DOCSET = @DOXYGEN_GENERATE_DOCSET@ +DOCSET_FEEDNAME = @DOXYGEN_DOCSET_FEEDNAME@ +DOCSET_FEEDURL = @DOXYGEN_DOCSET_FEEDURL@ +DOCSET_BUNDLE_ID = @DOXYGEN_DOCSET_BUNDLE_ID@ +DOCSET_PUBLISHER_ID = @DOXYGEN_DOCSET_PUBLISHER_ID@ +DOCSET_PUBLISHER_NAME = @DOXYGEN_DOCSET_PUBLISHER_NAME@ +GENERATE_HTMLHELP = @DOXYGEN_GENERATE_HTMLHELP@ +CHM_FILE = @DOXYGEN_CHM_FILE@ +HHC_LOCATION = @DOXYGEN_HHC_LOCATION@ +GENERATE_CHI = @DOXYGEN_GENERATE_CHI@ +CHM_INDEX_ENCODING = @DOXYGEN_CHM_INDEX_ENCODING@ +BINARY_TOC = @DOXYGEN_BINARY_TOC@ +TOC_EXPAND = @DOXYGEN_TOC_EXPAND@ +SITEMAP_URL = @DOXYGEN_SITEMAP_URL@ +GENERATE_QHP = @DOXYGEN_GENERATE_QHP@ +QCH_FILE = @DOXYGEN_QCH_FILE@ +QHP_NAMESPACE = @DOXYGEN_QHP_NAMESPACE@ +QHP_VIRTUAL_FOLDER = @DOXYGEN_QHP_VIRTUAL_FOLDER@ +QHP_CUST_FILTER_NAME = @DOXYGEN_QHP_CUST_FILTER_NAME@ +QHP_CUST_FILTER_ATTRS = @DOXYGEN_QHP_CUST_FILTER_ATTRS@ +QHP_SECT_FILTER_ATTRS = @DOXYGEN_QHP_SECT_FILTER_ATTRS@ +QHG_LOCATION = @DOXYGEN_QHG_LOCATION@ +GENERATE_ECLIPSEHELP = @DOXYGEN_GENERATE_ECLIPSEHELP@ +ECLIPSE_DOC_ID = @DOXYGEN_ECLIPSE_DOC_ID@ +DISABLE_INDEX = @DOXYGEN_DISABLE_INDEX@ +GENERATE_TREEVIEW = @DOXYGEN_GENERATE_TREEVIEW@ +FULL_SIDEBAR = @DOXYGEN_FULL_SIDEBAR@ +ENUM_VALUES_PER_LINE = @DOXYGEN_ENUM_VALUES_PER_LINE@ +TREEVIEW_WIDTH = @DOXYGEN_TREEVIEW_WIDTH@ +EXT_LINKS_IN_WINDOW = @DOXYGEN_EXT_LINKS_IN_WINDOW@ +OBFUSCATE_EMAILS = @DOXYGEN_OBFUSCATE_EMAILS@ +HTML_FORMULA_FORMAT = @DOXYGEN_HTML_FORMULA_FORMAT@ +FORMULA_FONTSIZE = @DOXYGEN_FORMULA_FONTSIZE@ +FORMULA_MACROFILE = @DOXYGEN_FORMULA_MACROFILE@ +USE_MATHJAX = @DOXYGEN_USE_MATHJAX@ +MATHJAX_VERSION = @DOXYGEN_MATHJAX_VERSION@ +MATHJAX_FORMAT = @DOXYGEN_MATHJAX_FORMAT@ +MATHJAX_RELPATH = @DOXYGEN_MATHJAX_RELPATH@ +MATHJAX_EXTENSIONS = @DOXYGEN_MATHJAX_EXTENSIONS@ +MATHJAX_CODEFILE = @DOXYGEN_MATHJAX_CODEFILE@ +SEARCHENGINE = @DOXYGEN_SEARCHENGINE@ +SERVER_BASED_SEARCH = @DOXYGEN_SERVER_BASED_SEARCH@ +EXTERNAL_SEARCH = @DOXYGEN_EXTERNAL_SEARCH@ +SEARCHENGINE_URL = @DOXYGEN_SEARCHENGINE_URL@ +SEARCHDATA_FILE = @DOXYGEN_SEARCHDATA_FILE@ +EXTERNAL_SEARCH_ID = @DOXYGEN_EXTERNAL_SEARCH_ID@ +EXTRA_SEARCH_MAPPINGS = @DOXYGEN_EXTRA_SEARCH_MAPPINGS@ +GENERATE_LATEX = @DOXYGEN_GENERATE_LATEX@ +LATEX_OUTPUT = @DOXYGEN_LATEX_OUTPUT@ +LATEX_CMD_NAME = @DOXYGEN_LATEX_CMD_NAME@ +MAKEINDEX_CMD_NAME = @DOXYGEN_MAKEINDEX_CMD_NAME@ +LATEX_MAKEINDEX_CMD = @DOXYGEN_LATEX_MAKEINDEX_CMD@ +COMPACT_LATEX = @DOXYGEN_COMPACT_LATEX@ +PAPER_TYPE = @DOXYGEN_PAPER_TYPE@ +EXTRA_PACKAGES = @DOXYGEN_EXTRA_PACKAGES@ +LATEX_HEADER = @DOXYGEN_LATEX_HEADER@ +LATEX_FOOTER = @DOXYGEN_LATEX_FOOTER@ +LATEX_EXTRA_STYLESHEET = @DOXYGEN_LATEX_EXTRA_STYLESHEET@ +LATEX_EXTRA_FILES = @DOXYGEN_LATEX_EXTRA_FILES@ +PDF_HYPERLINKS = @DOXYGEN_PDF_HYPERLINKS@ +USE_PDFLATEX = @DOXYGEN_USE_PDFLATEX@ +LATEX_BATCHMODE = @DOXYGEN_LATEX_BATCHMODE@ +LATEX_HIDE_INDICES = @DOXYGEN_LATEX_HIDE_INDICES@ +LATEX_BIB_STYLE = @DOXYGEN_LATEX_BIB_STYLE@ +LATEX_EMOJI_DIRECTORY = @DOXYGEN_LATEX_EMOJI_DIRECTORY@ +GENERATE_RTF = @DOXYGEN_GENERATE_RTF@ +RTF_OUTPUT = @DOXYGEN_RTF_OUTPUT@ +COMPACT_RTF = @DOXYGEN_COMPACT_RTF@ +RTF_HYPERLINKS = @DOXYGEN_RTF_HYPERLINKS@ +RTF_STYLESHEET_FILE = @DOXYGEN_RTF_STYLESHEET_FILE@ +RTF_EXTENSIONS_FILE = @DOXYGEN_RTF_EXTENSIONS_FILE@ +GENERATE_MAN = @DOXYGEN_GENERATE_MAN@ +MAN_OUTPUT = @DOXYGEN_MAN_OUTPUT@ +MAN_EXTENSION = @DOXYGEN_MAN_EXTENSION@ +MAN_SUBDIR = @DOXYGEN_MAN_SUBDIR@ +MAN_LINKS = @DOXYGEN_MAN_LINKS@ +GENERATE_XML = @DOXYGEN_GENERATE_XML@ +XML_OUTPUT = @DOXYGEN_XML_OUTPUT@ +XML_PROGRAMLISTING = @DOXYGEN_XML_PROGRAMLISTING@ +XML_NS_MEMB_FILE_SCOPE = @DOXYGEN_XML_NS_MEMB_FILE_SCOPE@ +GENERATE_DOCBOOK = @DOXYGEN_GENERATE_DOCBOOK@ +DOCBOOK_OUTPUT = @DOXYGEN_DOCBOOK_OUTPUT@ +GENERATE_AUTOGEN_DEF = @DOXYGEN_GENERATE_AUTOGEN_DEF@ +GENERATE_SQLITE3 = @DOXYGEN_GENERATE_SQLITE3@ +SQLITE3_OUTPUT = @DOXYGEN_SQLITE3_OUTPUT@ +SQLITE3_RECREATE_DB = @DOXYGEN_SQLITE3_RECREATE_DB@ +GENERATE_PERLMOD = @DOXYGEN_GENERATE_PERLMOD@ +PERLMOD_LATEX = @DOXYGEN_PERLMOD_LATEX@ +PERLMOD_PRETTY = @DOXYGEN_PERLMOD_PRETTY@ +PERLMOD_MAKEVAR_PREFIX = @DOXYGEN_PERLMOD_MAKEVAR_PREFIX@ +ENABLE_PREPROCESSING = @DOXYGEN_ENABLE_PREPROCESSING@ +MACRO_EXPANSION = @DOXYGEN_MACRO_EXPANSION@ +EXPAND_ONLY_PREDEF = @DOXYGEN_EXPAND_ONLY_PREDEF@ +SEARCH_INCLUDES = @DOXYGEN_SEARCH_INCLUDES@ +INCLUDE_PATH = @DOXYGEN_INCLUDE_PATH@ +INCLUDE_FILE_PATTERNS = @DOXYGEN_INCLUDE_FILE_PATTERNS@ +PREDEFINED = @DOXYGEN_PREDEFINED@ +EXPAND_AS_DEFINED = @DOXYGEN_EXPAND_AS_DEFINED@ +SKIP_FUNCTION_MACROS = @DOXYGEN_SKIP_FUNCTION_MACROS@ +TAGFILES = @DOXYGEN_TAGFILES@ +GENERATE_TAGFILE = @DOXYGEN_GENERATE_TAGFILE@ +ALLEXTERNALS = @DOXYGEN_ALLEXTERNALS@ +EXTERNAL_GROUPS = @DOXYGEN_EXTERNAL_GROUPS@ +EXTERNAL_PAGES = @DOXYGEN_EXTERNAL_PAGES@ +HIDE_UNDOC_RELATIONS = @DOXYGEN_HIDE_UNDOC_RELATIONS@ +HAVE_DOT = @DOXYGEN_HAVE_DOT@ +DOT_NUM_THREADS = @DOXYGEN_DOT_NUM_THREADS@ +DOT_COMMON_ATTR = @DOXYGEN_DOT_COMMON_ATTR@ +DOT_EDGE_ATTR = @DOXYGEN_DOT_EDGE_ATTR@ +DOT_NODE_ATTR = @DOXYGEN_DOT_NODE_ATTR@ +DOT_FONTPATH = @DOXYGEN_DOT_FONTPATH@ +CLASS_GRAPH = @DOXYGEN_CLASS_GRAPH@ +COLLABORATION_GRAPH = @DOXYGEN_COLLABORATION_GRAPH@ +GROUP_GRAPHS = @DOXYGEN_GROUP_GRAPHS@ +UML_LOOK = @DOXYGEN_UML_LOOK@ +UML_LIMIT_NUM_FIELDS = @DOXYGEN_UML_LIMIT_NUM_FIELDS@ +DOT_UML_DETAILS = @DOXYGEN_DOT_UML_DETAILS@ +DOT_WRAP_THRESHOLD = @DOXYGEN_DOT_WRAP_THRESHOLD@ +TEMPLATE_RELATIONS = @DOXYGEN_TEMPLATE_RELATIONS@ +INCLUDE_GRAPH = @DOXYGEN_INCLUDE_GRAPH@ +INCLUDED_BY_GRAPH = @DOXYGEN_INCLUDED_BY_GRAPH@ +CALL_GRAPH = @DOXYGEN_CALL_GRAPH@ +CALLER_GRAPH = @DOXYGEN_CALLER_GRAPH@ +GRAPHICAL_HIERARCHY = @DOXYGEN_GRAPHICAL_HIERARCHY@ +DIRECTORY_GRAPH = @DOXYGEN_DIRECTORY_GRAPH@ +DIR_GRAPH_MAX_DEPTH = @DOXYGEN_DIR_GRAPH_MAX_DEPTH@ +DOT_IMAGE_FORMAT = @DOXYGEN_DOT_IMAGE_FORMAT@ +INTERACTIVE_SVG = @DOXYGEN_INTERACTIVE_SVG@ +DOT_PATH = @DOXYGEN_DOT_PATH@ +DOTFILE_DIRS = @DOXYGEN_DOTFILE_DIRS@ +DIA_PATH = @DOXYGEN_DIA_PATH@ +DIAFILE_DIRS = @DOXYGEN_DIAFILE_DIRS@ +PLANTUML_JAR_PATH = @DOXYGEN_PLANTUML_JAR_PATH@ +PLANTUML_CFG_FILE = @DOXYGEN_PLANTUML_CFG_FILE@ +PLANTUML_INCLUDE_PATH = @DOXYGEN_PLANTUML_INCLUDE_PATH@ +DOT_GRAPH_MAX_NODES = @DOXYGEN_DOT_GRAPH_MAX_NODES@ +MAX_DOT_GRAPH_DEPTH = @DOXYGEN_MAX_DOT_GRAPH_DEPTH@ +DOT_MULTI_TARGETS = @DOXYGEN_DOT_MULTI_TARGETS@ +GENERATE_LEGEND = @DOXYGEN_GENERATE_LEGEND@ +DOT_CLEANUP = @DOXYGEN_DOT_CLEANUP@ +MSCGEN_TOOL = @DOXYGEN_MSCGEN_TOOL@ +MSCFILE_DIRS = @DOXYGEN_MSCFILE_DIRS@ diff --git a/out/build/CMakeDoxygenDefaults.cmake b/out/build/CMakeDoxygenDefaults.cmake new file mode 100644 index 0000000..bdaa5ff --- /dev/null +++ b/out/build/CMakeDoxygenDefaults.cmake @@ -0,0 +1,721 @@ +# +# DO NOT EDIT! THIS FILE WAS GENERATED BY CMAKE! +# + +if(NOT DEFINED DOXYGEN_DOXYFILE_ENCODING) + set(DOXYGEN_DOXYFILE_ENCODING UTF-8) +endif() +if(NOT DEFINED DOXYGEN_PROJECT_NAME) + set(DOXYGEN_PROJECT_NAME "My Project") +endif() +if(NOT DEFINED DOXYGEN_CREATE_SUBDIRS) + set(DOXYGEN_CREATE_SUBDIRS NO) +endif() +if(NOT DEFINED DOXYGEN_CREATE_SUBDIRS_LEVEL) + set(DOXYGEN_CREATE_SUBDIRS_LEVEL 8) +endif() +if(NOT DEFINED DOXYGEN_ALLOW_UNICODE_NAMES) + set(DOXYGEN_ALLOW_UNICODE_NAMES NO) +endif() +if(NOT DEFINED DOXYGEN_OUTPUT_LANGUAGE) + set(DOXYGEN_OUTPUT_LANGUAGE English) +endif() +if(NOT DEFINED DOXYGEN_BRIEF_MEMBER_DESC) + set(DOXYGEN_BRIEF_MEMBER_DESC YES) +endif() +if(NOT DEFINED DOXYGEN_REPEAT_BRIEF) + set(DOXYGEN_REPEAT_BRIEF YES) +endif() +if(NOT DEFINED DOXYGEN_ABBREVIATE_BRIEF) + set(DOXYGEN_ABBREVIATE_BRIEF "The $name class" + "The $name widget" + "The $name file" + is + provides + specifies + contains + represents + a + an + the) +endif() +if(NOT DEFINED DOXYGEN_ALWAYS_DETAILED_SEC) + set(DOXYGEN_ALWAYS_DETAILED_SEC NO) +endif() +if(NOT DEFINED DOXYGEN_INLINE_INHERITED_MEMB) + set(DOXYGEN_INLINE_INHERITED_MEMB NO) +endif() +if(NOT DEFINED DOXYGEN_FULL_PATH_NAMES) + set(DOXYGEN_FULL_PATH_NAMES YES) +endif() +if(NOT DEFINED DOXYGEN_SHORT_NAMES) + set(DOXYGEN_SHORT_NAMES NO) +endif() +if(NOT DEFINED DOXYGEN_JAVADOC_AUTOBRIEF) + set(DOXYGEN_JAVADOC_AUTOBRIEF NO) +endif() +if(NOT DEFINED DOXYGEN_JAVADOC_BANNER) + set(DOXYGEN_JAVADOC_BANNER NO) +endif() +if(NOT DEFINED DOXYGEN_QT_AUTOBRIEF) + set(DOXYGEN_QT_AUTOBRIEF NO) +endif() +if(NOT DEFINED DOXYGEN_MULTILINE_CPP_IS_BRIEF) + set(DOXYGEN_MULTILINE_CPP_IS_BRIEF NO) +endif() +if(NOT DEFINED DOXYGEN_PYTHON_DOCSTRING) + set(DOXYGEN_PYTHON_DOCSTRING YES) +endif() +if(NOT DEFINED DOXYGEN_INHERIT_DOCS) + set(DOXYGEN_INHERIT_DOCS YES) +endif() +if(NOT DEFINED DOXYGEN_SEPARATE_MEMBER_PAGES) + set(DOXYGEN_SEPARATE_MEMBER_PAGES NO) +endif() +if(NOT DEFINED DOXYGEN_TAB_SIZE) + set(DOXYGEN_TAB_SIZE 4) +endif() +if(NOT DEFINED DOXYGEN_OPTIMIZE_OUTPUT_FOR_C) + set(DOXYGEN_OPTIMIZE_OUTPUT_FOR_C NO) +endif() +if(NOT DEFINED DOXYGEN_OPTIMIZE_OUTPUT_JAVA) + set(DOXYGEN_OPTIMIZE_OUTPUT_JAVA NO) +endif() +if(NOT DEFINED DOXYGEN_OPTIMIZE_FOR_FORTRAN) + set(DOXYGEN_OPTIMIZE_FOR_FORTRAN NO) +endif() +if(NOT DEFINED DOXYGEN_OPTIMIZE_OUTPUT_VHDL) + set(DOXYGEN_OPTIMIZE_OUTPUT_VHDL NO) +endif() +if(NOT DEFINED DOXYGEN_OPTIMIZE_OUTPUT_SLICE) + set(DOXYGEN_OPTIMIZE_OUTPUT_SLICE NO) +endif() +if(NOT DEFINED DOXYGEN_MARKDOWN_SUPPORT) + set(DOXYGEN_MARKDOWN_SUPPORT YES) +endif() +if(NOT DEFINED DOXYGEN_TOC_INCLUDE_HEADINGS) + set(DOXYGEN_TOC_INCLUDE_HEADINGS 5) +endif() +if(NOT DEFINED DOXYGEN_MARKDOWN_ID_STYLE) + set(DOXYGEN_MARKDOWN_ID_STYLE DOXYGEN) +endif() +if(NOT DEFINED DOXYGEN_AUTOLINK_SUPPORT) + set(DOXYGEN_AUTOLINK_SUPPORT YES) +endif() +if(NOT DEFINED DOXYGEN_BUILTIN_STL_SUPPORT) + set(DOXYGEN_BUILTIN_STL_SUPPORT NO) +endif() +if(NOT DEFINED DOXYGEN_CPP_CLI_SUPPORT) + set(DOXYGEN_CPP_CLI_SUPPORT NO) +endif() +if(NOT DEFINED DOXYGEN_SIP_SUPPORT) + set(DOXYGEN_SIP_SUPPORT NO) +endif() +if(NOT DEFINED DOXYGEN_IDL_PROPERTY_SUPPORT) + set(DOXYGEN_IDL_PROPERTY_SUPPORT YES) +endif() +if(NOT DEFINED DOXYGEN_DISTRIBUTE_GROUP_DOC) + set(DOXYGEN_DISTRIBUTE_GROUP_DOC NO) +endif() +if(NOT DEFINED DOXYGEN_GROUP_NESTED_COMPOUNDS) + set(DOXYGEN_GROUP_NESTED_COMPOUNDS NO) +endif() +if(NOT DEFINED DOXYGEN_SUBGROUPING) + set(DOXYGEN_SUBGROUPING YES) +endif() +if(NOT DEFINED DOXYGEN_INLINE_GROUPED_CLASSES) + set(DOXYGEN_INLINE_GROUPED_CLASSES NO) +endif() +if(NOT DEFINED DOXYGEN_INLINE_SIMPLE_STRUCTS) + set(DOXYGEN_INLINE_SIMPLE_STRUCTS NO) +endif() +if(NOT DEFINED DOXYGEN_TYPEDEF_HIDES_STRUCT) + set(DOXYGEN_TYPEDEF_HIDES_STRUCT NO) +endif() +if(NOT DEFINED DOXYGEN_LOOKUP_CACHE_SIZE) + set(DOXYGEN_LOOKUP_CACHE_SIZE 0) +endif() +if(NOT DEFINED DOXYGEN_NUM_PROC_THREADS) + set(DOXYGEN_NUM_PROC_THREADS 1) +endif() +if(NOT DEFINED DOXYGEN_TIMESTAMP) + set(DOXYGEN_TIMESTAMP NO) +endif() +if(NOT DEFINED DOXYGEN_EXTRACT_ALL) + set(DOXYGEN_EXTRACT_ALL NO) +endif() +if(NOT DEFINED DOXYGEN_EXTRACT_PRIVATE) + set(DOXYGEN_EXTRACT_PRIVATE NO) +endif() +if(NOT DEFINED DOXYGEN_EXTRACT_PRIV_VIRTUAL) + set(DOXYGEN_EXTRACT_PRIV_VIRTUAL NO) +endif() +if(NOT DEFINED DOXYGEN_EXTRACT_PACKAGE) + set(DOXYGEN_EXTRACT_PACKAGE NO) +endif() +if(NOT DEFINED DOXYGEN_EXTRACT_STATIC) + set(DOXYGEN_EXTRACT_STATIC NO) +endif() +if(NOT DEFINED DOXYGEN_EXTRACT_LOCAL_CLASSES) + set(DOXYGEN_EXTRACT_LOCAL_CLASSES YES) +endif() +if(NOT DEFINED DOXYGEN_EXTRACT_LOCAL_METHODS) + set(DOXYGEN_EXTRACT_LOCAL_METHODS NO) +endif() +if(NOT DEFINED DOXYGEN_EXTRACT_ANON_NSPACES) + set(DOXYGEN_EXTRACT_ANON_NSPACES NO) +endif() +if(NOT DEFINED DOXYGEN_RESOLVE_UNNAMED_PARAMS) + set(DOXYGEN_RESOLVE_UNNAMED_PARAMS YES) +endif() +if(NOT DEFINED DOXYGEN_HIDE_UNDOC_MEMBERS) + set(DOXYGEN_HIDE_UNDOC_MEMBERS NO) +endif() +if(NOT DEFINED DOXYGEN_HIDE_UNDOC_CLASSES) + set(DOXYGEN_HIDE_UNDOC_CLASSES NO) +endif() +if(NOT DEFINED DOXYGEN_HIDE_FRIEND_COMPOUNDS) + set(DOXYGEN_HIDE_FRIEND_COMPOUNDS NO) +endif() +if(NOT DEFINED DOXYGEN_HIDE_IN_BODY_DOCS) + set(DOXYGEN_HIDE_IN_BODY_DOCS NO) +endif() +if(NOT DEFINED DOXYGEN_INTERNAL_DOCS) + set(DOXYGEN_INTERNAL_DOCS NO) +endif() +if(NOT DEFINED DOXYGEN_CASE_SENSE_NAMES) + set(DOXYGEN_CASE_SENSE_NAMES SYSTEM) +endif() +if(NOT DEFINED DOXYGEN_HIDE_SCOPE_NAMES) + set(DOXYGEN_HIDE_SCOPE_NAMES NO) +endif() +if(NOT DEFINED DOXYGEN_HIDE_COMPOUND_REFERENCE) + set(DOXYGEN_HIDE_COMPOUND_REFERENCE NO) +endif() +if(NOT DEFINED DOXYGEN_SHOW_HEADERFILE) + set(DOXYGEN_SHOW_HEADERFILE YES) +endif() +if(NOT DEFINED DOXYGEN_SHOW_INCLUDE_FILES) + set(DOXYGEN_SHOW_INCLUDE_FILES YES) +endif() +if(NOT DEFINED DOXYGEN_SHOW_GROUPED_MEMB_INC) + set(DOXYGEN_SHOW_GROUPED_MEMB_INC NO) +endif() +if(NOT DEFINED DOXYGEN_FORCE_LOCAL_INCLUDES) + set(DOXYGEN_FORCE_LOCAL_INCLUDES NO) +endif() +if(NOT DEFINED DOXYGEN_INLINE_INFO) + set(DOXYGEN_INLINE_INFO YES) +endif() +if(NOT DEFINED DOXYGEN_SORT_MEMBER_DOCS) + set(DOXYGEN_SORT_MEMBER_DOCS YES) +endif() +if(NOT DEFINED DOXYGEN_SORT_BRIEF_DOCS) + set(DOXYGEN_SORT_BRIEF_DOCS NO) +endif() +if(NOT DEFINED DOXYGEN_SORT_MEMBERS_CTORS_1ST) + set(DOXYGEN_SORT_MEMBERS_CTORS_1ST NO) +endif() +if(NOT DEFINED DOXYGEN_SORT_GROUP_NAMES) + set(DOXYGEN_SORT_GROUP_NAMES NO) +endif() +if(NOT DEFINED DOXYGEN_SORT_BY_SCOPE_NAME) + set(DOXYGEN_SORT_BY_SCOPE_NAME NO) +endif() +if(NOT DEFINED DOXYGEN_STRICT_PROTO_MATCHING) + set(DOXYGEN_STRICT_PROTO_MATCHING NO) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_TODOLIST) + set(DOXYGEN_GENERATE_TODOLIST YES) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_TESTLIST) + set(DOXYGEN_GENERATE_TESTLIST YES) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_BUGLIST) + set(DOXYGEN_GENERATE_BUGLIST YES) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_DEPRECATEDLIST) + set(DOXYGEN_GENERATE_DEPRECATEDLIST YES) +endif() +if(NOT DEFINED DOXYGEN_MAX_INITIALIZER_LINES) + set(DOXYGEN_MAX_INITIALIZER_LINES 30) +endif() +if(NOT DEFINED DOXYGEN_SHOW_USED_FILES) + set(DOXYGEN_SHOW_USED_FILES YES) +endif() +if(NOT DEFINED DOXYGEN_SHOW_FILES) + set(DOXYGEN_SHOW_FILES YES) +endif() +if(NOT DEFINED DOXYGEN_SHOW_NAMESPACES) + set(DOXYGEN_SHOW_NAMESPACES YES) +endif() +if(NOT DEFINED DOXYGEN_QUIET) + set(DOXYGEN_QUIET NO) +endif() +if(NOT DEFINED DOXYGEN_WARNINGS) + set(DOXYGEN_WARNINGS YES) +endif() +if(NOT DEFINED DOXYGEN_WARN_IF_UNDOCUMENTED) + set(DOXYGEN_WARN_IF_UNDOCUMENTED YES) +endif() +if(NOT DEFINED DOXYGEN_WARN_IF_DOC_ERROR) + set(DOXYGEN_WARN_IF_DOC_ERROR YES) +endif() +if(NOT DEFINED DOXYGEN_WARN_IF_INCOMPLETE_DOC) + set(DOXYGEN_WARN_IF_INCOMPLETE_DOC YES) +endif() +if(NOT DEFINED DOXYGEN_WARN_NO_PARAMDOC) + set(DOXYGEN_WARN_NO_PARAMDOC NO) +endif() +if(NOT DEFINED DOXYGEN_WARN_IF_UNDOC_ENUM_VAL) + set(DOXYGEN_WARN_IF_UNDOC_ENUM_VAL NO) +endif() +if(NOT DEFINED DOXYGEN_WARN_AS_ERROR) + set(DOXYGEN_WARN_AS_ERROR NO) +endif() +if(NOT DEFINED DOXYGEN_WARN_FORMAT) + set(DOXYGEN_WARN_FORMAT "$file:$line: $text") +endif() +if(NOT DEFINED DOXYGEN_WARN_LINE_FORMAT) + set(DOXYGEN_WARN_LINE_FORMAT "at line $line of file $file") +endif() +if(NOT DEFINED DOXYGEN_INPUT_ENCODING) + set(DOXYGEN_INPUT_ENCODING UTF-8) +endif() +if(NOT DEFINED DOXYGEN_FILE_PATTERNS) + set(DOXYGEN_FILE_PATTERNS *.c + *.cc + *.cxx + *.cxxm + *.cpp + *.cppm + *.ccm + *.c++ + *.c++m + *.java + *.ii + *.ixx + *.ipp + *.i++ + *.inl + *.idl + *.ddl + *.odl + *.h + *.hh + *.hxx + *.hpp + *.h++ + *.ixx + *.l + *.cs + *.d + *.php + *.php4 + *.php5 + *.phtml + *.inc + *.m + *.markdown + *.md + *.mm + *.dox + *.py + *.pyw + *.f90 + *.f95 + *.f03 + *.f08 + *.f18 + *.f + *.for + *.vhd + *.vhdl + *.ucf + *.qsf + *.ice) +endif() +if(NOT DEFINED DOXYGEN_RECURSIVE) + set(DOXYGEN_RECURSIVE NO) +endif() +if(NOT DEFINED DOXYGEN_EXCLUDE_SYMLINKS) + set(DOXYGEN_EXCLUDE_SYMLINKS NO) +endif() +if(NOT DEFINED DOXYGEN_EXAMPLE_PATTERNS) + set(DOXYGEN_EXAMPLE_PATTERNS *) +endif() +if(NOT DEFINED DOXYGEN_EXAMPLE_RECURSIVE) + set(DOXYGEN_EXAMPLE_RECURSIVE NO) +endif() +if(NOT DEFINED DOXYGEN_FILTER_SOURCE_FILES) + set(DOXYGEN_FILTER_SOURCE_FILES NO) +endif() +if(NOT DEFINED DOXYGEN_FORTRAN_COMMENT_AFTER) + set(DOXYGEN_FORTRAN_COMMENT_AFTER 72) +endif() +if(NOT DEFINED DOXYGEN_SOURCE_BROWSER) + set(DOXYGEN_SOURCE_BROWSER NO) +endif() +if(NOT DEFINED DOXYGEN_INLINE_SOURCES) + set(DOXYGEN_INLINE_SOURCES NO) +endif() +if(NOT DEFINED DOXYGEN_STRIP_CODE_COMMENTS) + set(DOXYGEN_STRIP_CODE_COMMENTS YES) +endif() +if(NOT DEFINED DOXYGEN_REFERENCED_BY_RELATION) + set(DOXYGEN_REFERENCED_BY_RELATION NO) +endif() +if(NOT DEFINED DOXYGEN_REFERENCES_RELATION) + set(DOXYGEN_REFERENCES_RELATION NO) +endif() +if(NOT DEFINED DOXYGEN_REFERENCES_LINK_SOURCE) + set(DOXYGEN_REFERENCES_LINK_SOURCE YES) +endif() +if(NOT DEFINED DOXYGEN_SOURCE_TOOLTIPS) + set(DOXYGEN_SOURCE_TOOLTIPS YES) +endif() +if(NOT DEFINED DOXYGEN_USE_HTAGS) + set(DOXYGEN_USE_HTAGS NO) +endif() +if(NOT DEFINED DOXYGEN_VERBATIM_HEADERS) + set(DOXYGEN_VERBATIM_HEADERS YES) +endif() +if(NOT DEFINED DOXYGEN_CLANG_ASSISTED_PARSING) + set(DOXYGEN_CLANG_ASSISTED_PARSING NO) +endif() +if(NOT DEFINED DOXYGEN_CLANG_ADD_INC_PATHS) + set(DOXYGEN_CLANG_ADD_INC_PATHS YES) +endif() +if(NOT DEFINED DOXYGEN_ALPHABETICAL_INDEX) + set(DOXYGEN_ALPHABETICAL_INDEX YES) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_HTML) + set(DOXYGEN_GENERATE_HTML YES) +endif() +if(NOT DEFINED DOXYGEN_HTML_OUTPUT) + set(DOXYGEN_HTML_OUTPUT html) +endif() +if(NOT DEFINED DOXYGEN_HTML_FILE_EXTENSION) + set(DOXYGEN_HTML_FILE_EXTENSION .html) +endif() +if(NOT DEFINED DOXYGEN_HTML_COLORSTYLE) + set(DOXYGEN_HTML_COLORSTYLE AUTO_LIGHT) +endif() +if(NOT DEFINED DOXYGEN_HTML_COLORSTYLE_HUE) + set(DOXYGEN_HTML_COLORSTYLE_HUE 220) +endif() +if(NOT DEFINED DOXYGEN_HTML_COLORSTYLE_SAT) + set(DOXYGEN_HTML_COLORSTYLE_SAT 100) +endif() +if(NOT DEFINED DOXYGEN_HTML_COLORSTYLE_GAMMA) + set(DOXYGEN_HTML_COLORSTYLE_GAMMA 80) +endif() +if(NOT DEFINED DOXYGEN_HTML_DYNAMIC_MENUS) + set(DOXYGEN_HTML_DYNAMIC_MENUS YES) +endif() +if(NOT DEFINED DOXYGEN_HTML_DYNAMIC_SECTIONS) + set(DOXYGEN_HTML_DYNAMIC_SECTIONS NO) +endif() +if(NOT DEFINED DOXYGEN_HTML_CODE_FOLDING) + set(DOXYGEN_HTML_CODE_FOLDING YES) +endif() +if(NOT DEFINED DOXYGEN_HTML_COPY_CLIPBOARD) + set(DOXYGEN_HTML_COPY_CLIPBOARD YES) +endif() +if(NOT DEFINED DOXYGEN_HTML_INDEX_NUM_ENTRIES) + set(DOXYGEN_HTML_INDEX_NUM_ENTRIES 100) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_DOCSET) + set(DOXYGEN_GENERATE_DOCSET NO) +endif() +if(NOT DEFINED DOXYGEN_DOCSET_FEEDNAME) + set(DOXYGEN_DOCSET_FEEDNAME "Doxygen generated docs") +endif() +if(NOT DEFINED DOXYGEN_DOCSET_BUNDLE_ID) + set(DOXYGEN_DOCSET_BUNDLE_ID org.doxygen.Project) +endif() +if(NOT DEFINED DOXYGEN_DOCSET_PUBLISHER_ID) + set(DOXYGEN_DOCSET_PUBLISHER_ID org.doxygen.Publisher) +endif() +if(NOT DEFINED DOXYGEN_DOCSET_PUBLISHER_NAME) + set(DOXYGEN_DOCSET_PUBLISHER_NAME Publisher) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_HTMLHELP) + set(DOXYGEN_GENERATE_HTMLHELP NO) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_CHI) + set(DOXYGEN_GENERATE_CHI NO) +endif() +if(NOT DEFINED DOXYGEN_BINARY_TOC) + set(DOXYGEN_BINARY_TOC NO) +endif() +if(NOT DEFINED DOXYGEN_TOC_EXPAND) + set(DOXYGEN_TOC_EXPAND NO) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_QHP) + set(DOXYGEN_GENERATE_QHP NO) +endif() +if(NOT DEFINED DOXYGEN_QHP_NAMESPACE) + set(DOXYGEN_QHP_NAMESPACE org.doxygen.Project) +endif() +if(NOT DEFINED DOXYGEN_QHP_VIRTUAL_FOLDER) + set(DOXYGEN_QHP_VIRTUAL_FOLDER doc) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_ECLIPSEHELP) + set(DOXYGEN_GENERATE_ECLIPSEHELP NO) +endif() +if(NOT DEFINED DOXYGEN_ECLIPSE_DOC_ID) + set(DOXYGEN_ECLIPSE_DOC_ID org.doxygen.Project) +endif() +if(NOT DEFINED DOXYGEN_DISABLE_INDEX) + set(DOXYGEN_DISABLE_INDEX NO) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_TREEVIEW) + set(DOXYGEN_GENERATE_TREEVIEW NO) +endif() +if(NOT DEFINED DOXYGEN_FULL_SIDEBAR) + set(DOXYGEN_FULL_SIDEBAR NO) +endif() +if(NOT DEFINED DOXYGEN_ENUM_VALUES_PER_LINE) + set(DOXYGEN_ENUM_VALUES_PER_LINE 4) +endif() +if(NOT DEFINED DOXYGEN_TREEVIEW_WIDTH) + set(DOXYGEN_TREEVIEW_WIDTH 250) +endif() +if(NOT DEFINED DOXYGEN_EXT_LINKS_IN_WINDOW) + set(DOXYGEN_EXT_LINKS_IN_WINDOW NO) +endif() +if(NOT DEFINED DOXYGEN_OBFUSCATE_EMAILS) + set(DOXYGEN_OBFUSCATE_EMAILS YES) +endif() +if(NOT DEFINED DOXYGEN_HTML_FORMULA_FORMAT) + set(DOXYGEN_HTML_FORMULA_FORMAT png) +endif() +if(NOT DEFINED DOXYGEN_FORMULA_FONTSIZE) + set(DOXYGEN_FORMULA_FONTSIZE 10) +endif() +if(NOT DEFINED DOXYGEN_USE_MATHJAX) + set(DOXYGEN_USE_MATHJAX NO) +endif() +if(NOT DEFINED DOXYGEN_MATHJAX_VERSION) + set(DOXYGEN_MATHJAX_VERSION MathJax_2) +endif() +if(NOT DEFINED DOXYGEN_MATHJAX_FORMAT) + set(DOXYGEN_MATHJAX_FORMAT HTML-CSS) +endif() +if(NOT DEFINED DOXYGEN_SEARCHENGINE) + set(DOXYGEN_SEARCHENGINE YES) +endif() +if(NOT DEFINED DOXYGEN_SERVER_BASED_SEARCH) + set(DOXYGEN_SERVER_BASED_SEARCH NO) +endif() +if(NOT DEFINED DOXYGEN_EXTERNAL_SEARCH) + set(DOXYGEN_EXTERNAL_SEARCH NO) +endif() +if(NOT DEFINED DOXYGEN_SEARCHDATA_FILE) + set(DOXYGEN_SEARCHDATA_FILE searchdata.xml) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_LATEX) + set(DOXYGEN_GENERATE_LATEX YES) +endif() +if(NOT DEFINED DOXYGEN_LATEX_OUTPUT) + set(DOXYGEN_LATEX_OUTPUT latex) +endif() +if(NOT DEFINED DOXYGEN_MAKEINDEX_CMD_NAME) + set(DOXYGEN_MAKEINDEX_CMD_NAME makeindex) +endif() +if(NOT DEFINED DOXYGEN_LATEX_MAKEINDEX_CMD) + set(DOXYGEN_LATEX_MAKEINDEX_CMD makeindex) +endif() +if(NOT DEFINED DOXYGEN_COMPACT_LATEX) + set(DOXYGEN_COMPACT_LATEX NO) +endif() +if(NOT DEFINED DOXYGEN_PAPER_TYPE) + set(DOXYGEN_PAPER_TYPE a4) +endif() +if(NOT DEFINED DOXYGEN_PDF_HYPERLINKS) + set(DOXYGEN_PDF_HYPERLINKS YES) +endif() +if(NOT DEFINED DOXYGEN_USE_PDFLATEX) + set(DOXYGEN_USE_PDFLATEX YES) +endif() +if(NOT DEFINED DOXYGEN_LATEX_BATCHMODE) + set(DOXYGEN_LATEX_BATCHMODE NO) +endif() +if(NOT DEFINED DOXYGEN_LATEX_HIDE_INDICES) + set(DOXYGEN_LATEX_HIDE_INDICES NO) +endif() +if(NOT DEFINED DOXYGEN_LATEX_BIB_STYLE) + set(DOXYGEN_LATEX_BIB_STYLE plain) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_RTF) + set(DOXYGEN_GENERATE_RTF NO) +endif() +if(NOT DEFINED DOXYGEN_RTF_OUTPUT) + set(DOXYGEN_RTF_OUTPUT rtf) +endif() +if(NOT DEFINED DOXYGEN_COMPACT_RTF) + set(DOXYGEN_COMPACT_RTF NO) +endif() +if(NOT DEFINED DOXYGEN_RTF_HYPERLINKS) + set(DOXYGEN_RTF_HYPERLINKS NO) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_MAN) + set(DOXYGEN_GENERATE_MAN NO) +endif() +if(NOT DEFINED DOXYGEN_MAN_OUTPUT) + set(DOXYGEN_MAN_OUTPUT man) +endif() +if(NOT DEFINED DOXYGEN_MAN_EXTENSION) + set(DOXYGEN_MAN_EXTENSION .3) +endif() +if(NOT DEFINED DOXYGEN_MAN_LINKS) + set(DOXYGEN_MAN_LINKS NO) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_XML) + set(DOXYGEN_GENERATE_XML NO) +endif() +if(NOT DEFINED DOXYGEN_XML_OUTPUT) + set(DOXYGEN_XML_OUTPUT xml) +endif() +if(NOT DEFINED DOXYGEN_XML_PROGRAMLISTING) + set(DOXYGEN_XML_PROGRAMLISTING YES) +endif() +if(NOT DEFINED DOXYGEN_XML_NS_MEMB_FILE_SCOPE) + set(DOXYGEN_XML_NS_MEMB_FILE_SCOPE NO) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_DOCBOOK) + set(DOXYGEN_GENERATE_DOCBOOK NO) +endif() +if(NOT DEFINED DOXYGEN_DOCBOOK_OUTPUT) + set(DOXYGEN_DOCBOOK_OUTPUT docbook) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_AUTOGEN_DEF) + set(DOXYGEN_GENERATE_AUTOGEN_DEF NO) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_SQLITE3) + set(DOXYGEN_GENERATE_SQLITE3 NO) +endif() +if(NOT DEFINED DOXYGEN_SQLITE3_OUTPUT) + set(DOXYGEN_SQLITE3_OUTPUT sqlite3) +endif() +if(NOT DEFINED DOXYGEN_SQLITE3_RECREATE_DB) + set(DOXYGEN_SQLITE3_RECREATE_DB YES) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_PERLMOD) + set(DOXYGEN_GENERATE_PERLMOD NO) +endif() +if(NOT DEFINED DOXYGEN_PERLMOD_LATEX) + set(DOXYGEN_PERLMOD_LATEX NO) +endif() +if(NOT DEFINED DOXYGEN_PERLMOD_PRETTY) + set(DOXYGEN_PERLMOD_PRETTY YES) +endif() +if(NOT DEFINED DOXYGEN_ENABLE_PREPROCESSING) + set(DOXYGEN_ENABLE_PREPROCESSING YES) +endif() +if(NOT DEFINED DOXYGEN_MACRO_EXPANSION) + set(DOXYGEN_MACRO_EXPANSION NO) +endif() +if(NOT DEFINED DOXYGEN_EXPAND_ONLY_PREDEF) + set(DOXYGEN_EXPAND_ONLY_PREDEF NO) +endif() +if(NOT DEFINED DOXYGEN_SEARCH_INCLUDES) + set(DOXYGEN_SEARCH_INCLUDES YES) +endif() +if(NOT DEFINED DOXYGEN_SKIP_FUNCTION_MACROS) + set(DOXYGEN_SKIP_FUNCTION_MACROS YES) +endif() +if(NOT DEFINED DOXYGEN_ALLEXTERNALS) + set(DOXYGEN_ALLEXTERNALS NO) +endif() +if(NOT DEFINED DOXYGEN_EXTERNAL_GROUPS) + set(DOXYGEN_EXTERNAL_GROUPS YES) +endif() +if(NOT DEFINED DOXYGEN_EXTERNAL_PAGES) + set(DOXYGEN_EXTERNAL_PAGES YES) +endif() +if(NOT DEFINED DOXYGEN_HIDE_UNDOC_RELATIONS) + set(DOXYGEN_HIDE_UNDOC_RELATIONS YES) +endif() +if(NOT DEFINED DOXYGEN_HAVE_DOT) + set(DOXYGEN_HAVE_DOT NO) +endif() +if(NOT DEFINED DOXYGEN_DOT_NUM_THREADS) + set(DOXYGEN_DOT_NUM_THREADS 0) +endif() +if(NOT DEFINED DOXYGEN_DOT_COMMON_ATTR) + set(DOXYGEN_DOT_COMMON_ATTR "fontname=Helvetica,fontsize=10") +endif() +if(NOT DEFINED DOXYGEN_DOT_EDGE_ATTR) + set(DOXYGEN_DOT_EDGE_ATTR "labelfontname=Helvetica,labelfontsize=10") +endif() +if(NOT DEFINED DOXYGEN_DOT_NODE_ATTR) + set(DOXYGEN_DOT_NODE_ATTR "shape=box,height=0.2,width=0.4") +endif() +if(NOT DEFINED DOXYGEN_CLASS_GRAPH) + set(DOXYGEN_CLASS_GRAPH YES) +endif() +if(NOT DEFINED DOXYGEN_COLLABORATION_GRAPH) + set(DOXYGEN_COLLABORATION_GRAPH YES) +endif() +if(NOT DEFINED DOXYGEN_GROUP_GRAPHS) + set(DOXYGEN_GROUP_GRAPHS YES) +endif() +if(NOT DEFINED DOXYGEN_UML_LOOK) + set(DOXYGEN_UML_LOOK NO) +endif() +if(NOT DEFINED DOXYGEN_UML_LIMIT_NUM_FIELDS) + set(DOXYGEN_UML_LIMIT_NUM_FIELDS 10) +endif() +if(NOT DEFINED DOXYGEN_DOT_UML_DETAILS) + set(DOXYGEN_DOT_UML_DETAILS NO) +endif() +if(NOT DEFINED DOXYGEN_DOT_WRAP_THRESHOLD) + set(DOXYGEN_DOT_WRAP_THRESHOLD 17) +endif() +if(NOT DEFINED DOXYGEN_TEMPLATE_RELATIONS) + set(DOXYGEN_TEMPLATE_RELATIONS NO) +endif() +if(NOT DEFINED DOXYGEN_INCLUDE_GRAPH) + set(DOXYGEN_INCLUDE_GRAPH YES) +endif() +if(NOT DEFINED DOXYGEN_INCLUDED_BY_GRAPH) + set(DOXYGEN_INCLUDED_BY_GRAPH YES) +endif() +if(NOT DEFINED DOXYGEN_CALL_GRAPH) + set(DOXYGEN_CALL_GRAPH NO) +endif() +if(NOT DEFINED DOXYGEN_CALLER_GRAPH) + set(DOXYGEN_CALLER_GRAPH NO) +endif() +if(NOT DEFINED DOXYGEN_GRAPHICAL_HIERARCHY) + set(DOXYGEN_GRAPHICAL_HIERARCHY YES) +endif() +if(NOT DEFINED DOXYGEN_DIRECTORY_GRAPH) + set(DOXYGEN_DIRECTORY_GRAPH YES) +endif() +if(NOT DEFINED DOXYGEN_DIR_GRAPH_MAX_DEPTH) + set(DOXYGEN_DIR_GRAPH_MAX_DEPTH 1) +endif() +if(NOT DEFINED DOXYGEN_DOT_IMAGE_FORMAT) + set(DOXYGEN_DOT_IMAGE_FORMAT png) +endif() +if(NOT DEFINED DOXYGEN_INTERACTIVE_SVG) + set(DOXYGEN_INTERACTIVE_SVG NO) +endif() +if(NOT DEFINED DOXYGEN_DOT_GRAPH_MAX_NODES) + set(DOXYGEN_DOT_GRAPH_MAX_NODES 50) +endif() +if(NOT DEFINED DOXYGEN_MAX_DOT_GRAPH_DEPTH) + set(DOXYGEN_MAX_DOT_GRAPH_DEPTH 0) +endif() +if(NOT DEFINED DOXYGEN_DOT_MULTI_TARGETS) + set(DOXYGEN_DOT_MULTI_TARGETS NO) +endif() +if(NOT DEFINED DOXYGEN_GENERATE_LEGEND) + set(DOXYGEN_GENERATE_LEGEND YES) +endif() +if(NOT DEFINED DOXYGEN_DOT_CLEANUP) + set(DOXYGEN_DOT_CLEANUP YES) +endif() diff --git a/out/build/CMakeFiles/3.28.0-msvc1/CMakeCXXCompiler.cmake b/out/build/CMakeFiles/3.28.0-msvc1/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..298bb61 --- /dev/null +++ b/out/build/CMakeFiles/3.28.0-msvc1/CMakeCXXCompiler.cmake @@ -0,0 +1,85 @@ +set(CMAKE_CXX_COMPILER "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/MSVC/14.39.33519/bin/Hostx64/x64/cl.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "MSVC") +set(CMAKE_CXX_COMPILER_VERSION "19.39.33522.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "OFF") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "Windows") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "MSVC") +set(CMAKE_CXX_SIMULATE_VERSION "") +set(CMAKE_CXX_COMPILER_ARCHITECTURE_ID x64) + +set(MSVC_CXX_ARCHITECTURE_ID x64) + +set(CMAKE_AR "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/MSVC/14.39.33519/bin/Hostx64/x64/lib.exe") +set(CMAKE_CXX_COMPILER_AR "") +set(CMAKE_RANLIB ":") +set(CMAKE_CXX_COMPILER_RANLIB "") +set(CMAKE_LINKER "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/MSVC/14.39.33519/bin/Hostx64/x64/link.exe") +set(CMAKE_MT "C:/Program Files (x86)/Windows Kits/10/bin/10.0.22621.0/x64/mt.exe") +set(CMAKE_TAPI "") +set(CMAKE_COMPILER_IS_GNUCXX ) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED ) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "注意: 包含文件: ") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/out/build/CMakeFiles/3.28.0-msvc1/CMakeDetermineCompilerABI_CXX.bin b/out/build/CMakeFiles/3.28.0-msvc1/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..f690a46 Binary files /dev/null and b/out/build/CMakeFiles/3.28.0-msvc1/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/out/build/CMakeFiles/3.28.0-msvc1/CMakeRCCompiler.cmake b/out/build/CMakeFiles/3.28.0-msvc1/CMakeRCCompiler.cmake new file mode 100644 index 0000000..4c9d9a8 --- /dev/null +++ b/out/build/CMakeFiles/3.28.0-msvc1/CMakeRCCompiler.cmake @@ -0,0 +1,6 @@ +set(CMAKE_RC_COMPILER "C:/Program Files (x86)/Windows Kits/10/bin/10.0.22621.0/x64/rc.exe") +set(CMAKE_RC_COMPILER_ARG1 "") +set(CMAKE_RC_COMPILER_LOADED 1) +set(CMAKE_RC_SOURCE_FILE_EXTENSIONS rc;RC) +set(CMAKE_RC_OUTPUT_EXTENSION .res) +set(CMAKE_RC_COMPILER_ENV_VAR "RC") diff --git a/out/build/CMakeFiles/3.28.0-msvc1/CMakeSystem.cmake b/out/build/CMakeFiles/3.28.0-msvc1/CMakeSystem.cmake new file mode 100644 index 0000000..909db20 --- /dev/null +++ b/out/build/CMakeFiles/3.28.0-msvc1/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.19045") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.19045") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + + + +set(CMAKE_SYSTEM "Windows-10.0.19045") +set(CMAKE_SYSTEM_NAME "Windows") +set(CMAKE_SYSTEM_VERSION "10.0.19045") +set(CMAKE_SYSTEM_PROCESSOR "AMD64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/out/build/CMakeFiles/3.28.0-msvc1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/out/build/CMakeFiles/3.28.0-msvc1/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..9c9c90e --- /dev/null +++ b/out/build/CMakeFiles/3.28.0-msvc1/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,869 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/out/build/CMakeFiles/3.28.0-msvc1/CompilerIdCXX/CMakeCXXCompilerId.exe b/out/build/CMakeFiles/3.28.0-msvc1/CompilerIdCXX/CMakeCXXCompilerId.exe new file mode 100644 index 0000000..01dd394 Binary files /dev/null and b/out/build/CMakeFiles/3.28.0-msvc1/CompilerIdCXX/CMakeCXXCompilerId.exe differ diff --git a/out/build/CMakeFiles/3.28.0-msvc1/CompilerIdCXX/CMakeCXXCompilerId.obj b/out/build/CMakeFiles/3.28.0-msvc1/CompilerIdCXX/CMakeCXXCompilerId.obj new file mode 100644 index 0000000..eb690fb Binary files /dev/null and b/out/build/CMakeFiles/3.28.0-msvc1/CompilerIdCXX/CMakeCXXCompilerId.obj differ diff --git a/out/build/CMakeFiles/CMakeConfigureLog.yaml b/out/build/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..6f6e55d --- /dev/null +++ b/out/build/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,83 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake:233 (message)" + - "CMakeLists.txt:7 (project)" + message: | + The system is: Windows - 10.0.19045 - AMD64 + - + kind: "message-v1" + backtrace: + - "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:7 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/MSVC/14.39.33519/bin/Hostx64/x64/cl.exe + Build flags: -DQT_QML_DEBUG + Id flags: + + The output was: + 0 + 用于 x64 的 Microsoft (R) C/C++ 优化编译器 19.39.33522 版 + 版权所有(C) Microsoft Corporation。保留所有权利。 + + CMakeCXXCompilerId.cpp + Microsoft (R) Incremental Linker Version 14.39.33522.0 + Copyright (C) Microsoft Corporation. All rights reserved. + + /out:CMakeCXXCompilerId.exe + CMakeCXXCompilerId.obj + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.exe" + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.obj" + + The CXX compiler identification is MSVC, found in: + D:/WBFZCPP/source/FastCAE/out/build/CMakeFiles/3.28.0-msvc1/CompilerIdCXX/CMakeCXXCompilerId.exe + + - + kind: "message-v1" + backtrace: + - "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:1182 (message)" + - "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake:247 (CMAKE_DETERMINE_MSVC_SHOWINCLUDES_PREFIX)" + - "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:7 (project)" + message: | + Detecting CXX compiler /showIncludes prefix: + main.c + 注意: 包含文件: D:\\WBFZCPP\\source\\FastCAE\\out\\build\\CMakeFiles\\ShowIncludes\\foo.h + + Found prefix "注意: 包含文件: " + - + kind: "try_compile-v1" + backtrace: + - "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake:57 (try_compile)" + - "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:7 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "D:/WBFZCPP/source/FastCAE/out/build/CMakeFiles/CMakeScratch/TryCompile-wc908r" + binary: "D:/WBFZCPP/source/FastCAE/out/build/CMakeFiles/CMakeScratch/TryCompile-wc908r" + cmakeVariables: + CMAKE_CXX_FLAGS: "-DQT_QML_DEBUG" + CMAKE_CXX_FLAGS_DEBUG: "/Zi /Ob0 /Od /RTC1" + CMAKE_EXE_LINKER_FLAGS: "/machine:x64" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'D:/WBFZCPP/source/FastCAE/out/build/CMakeFiles/CMakeScratch/TryCompile-wc908r' + + Run Build Command(s): "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/Ninja/ninja.exe" -v cmTC_8bbfa + [1/2] C:\\PROGRA~1\\MICROS~4\\2022\\ENTERP~1\\VC\\Tools\\MSVC\\1439~1.335\\bin\\Hostx64\\x64\\cl.exe /nologo /TP -DQT_QML_DEBUG /Zi /Ob0 /Od /RTC1 -MDd /showIncludes /FoCMakeFiles\\cmTC_8bbfa.dir\\CMakeCXXCompilerABI.cpp.obj /FdCMakeFiles\\cmTC_8bbfa.dir\\ /FS -c "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\Common7\\IDE\\CommonExtensions\\Microsoft\\CMake\\CMake\\share\\cmake-3.28\\Modules\\CMakeCXXCompilerABI.cpp" + [2/2] C:\\WINDOWS\\system32\\cmd.exe /C "cd . && "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\Common7\\IDE\\CommonExtensions\\Microsoft\\CMake\\CMake\\bin\\cmake.exe" -E vs_link_exe --intdir=CMakeFiles\\cmTC_8bbfa.dir --rc=C:\\PROGRA~2\\WI3CF2~1\\10\\bin\\100226~1.0\\x64\\rc.exe --mt=C:\\PROGRA~2\\WI3CF2~1\\10\\bin\\100226~1.0\\x64\\mt.exe --manifests -- C:\\PROGRA~1\\MICROS~4\\2022\\ENTERP~1\\VC\\Tools\\MSVC\\1439~1.335\\bin\\Hostx64\\x64\\link.exe /nologo CMakeFiles\\cmTC_8bbfa.dir\\CMakeCXXCompilerABI.cpp.obj /out:cmTC_8bbfa.exe /implib:cmTC_8bbfa.lib /pdb:cmTC_8bbfa.pdb /version:0.0 /machine:x64 /debug /INCREMENTAL /subsystem:console kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib && cd ." + + exitCode: 0 +... diff --git a/out/build/CMakeFiles/ShowIncludes/foo.h b/out/build/CMakeFiles/ShowIncludes/foo.h new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/out/build/CMakeFiles/ShowIncludes/foo.h @@ -0,0 +1 @@ + diff --git a/out/build/CMakeFiles/ShowIncludes/main.c b/out/build/CMakeFiles/ShowIncludes/main.c new file mode 100644 index 0000000..cd3cbc1 --- /dev/null +++ b/out/build/CMakeFiles/ShowIncludes/main.c @@ -0,0 +1,2 @@ +#include "foo.h" +int main(){} diff --git a/out/build/CMakeFiles/ShowIncludes/main.obj b/out/build/CMakeFiles/ShowIncludes/main.obj new file mode 100644 index 0000000..c2c2132 Binary files /dev/null and b/out/build/CMakeFiles/ShowIncludes/main.obj differ diff --git a/out/build/CMakeFiles/TargetDirectories.txt b/out/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..5557f8c --- /dev/null +++ b/out/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,365 @@ +D:/WBFZCPP/source/FastCAE/out/build/CMakeFiles/Doxygen.dir +D:/WBFZCPP/source/FastCAE/out/build/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Common/CMakeFiles/Common.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Common/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Common/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Common/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Common/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Common/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Common/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Common/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Common/CMakeFiles/Common_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Common/CMakeFiles/Common_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PythonModule/CMakeFiles/PythonModule.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PythonModule/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PythonModule/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PythonModule/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PythonModule/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PythonModule/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PythonModule/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PythonModule/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PythonModule/CMakeFiles/PythonModule_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PythonModule/CMakeFiles/PythonModule_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SARibbonBar/CMakeFiles/SARibbonBar.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SARibbonBar/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SARibbonBar/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SARibbonBar/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SARibbonBar/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SARibbonBar/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SARibbonBar/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SARibbonBar/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SARibbonBar/CMakeFiles/SARibbonBar_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SARibbonBar/CMakeFiles/SARibbonBar_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Settings/CMakeFiles/Settings.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Settings/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Settings/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Settings/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Settings/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Settings/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Settings/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Settings/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Settings/CMakeFiles/Settings_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Settings/CMakeFiles/Settings_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/DataProperty/CMakeFiles/DataProperty.dir +D:/WBFZCPP/source/FastCAE/out/build/src/DataProperty/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/DataProperty/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/DataProperty/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/DataProperty/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/DataProperty/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/DataProperty/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/DataProperty/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/DataProperty/CMakeFiles/DataProperty_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/DataProperty/CMakeFiles/DataProperty_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MeshData/CMakeFiles/MeshData.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MeshData/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MeshData/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MeshData/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MeshData/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MeshData/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MeshData/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MeshData/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MeshData/CMakeFiles/MeshData_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MeshData/CMakeFiles/MeshData_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SelfDefObject/CMakeFiles/SelfDefObject.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SelfDefObject/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SelfDefObject/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SelfDefObject/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SelfDefObject/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SelfDefObject/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SelfDefObject/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SelfDefObject/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SelfDefObject/CMakeFiles/SelfDefObject_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SelfDefObject/CMakeFiles/SelfDefObject_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Material/CMakeFiles/Material.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Material/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Material/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Material/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Material/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Material/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Material/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Material/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Material/CMakeFiles/Material_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Material/CMakeFiles/Material_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Geometry/CMakeFiles/Geometry.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Geometry/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Geometry/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Geometry/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Geometry/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Geometry/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Geometry/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Geometry/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Geometry/CMakeFiles/Geometry_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/Geometry/CMakeFiles/Geometry_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/BCBase/CMakeFiles/BCBase.dir +D:/WBFZCPP/source/FastCAE/out/build/src/BCBase/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/BCBase/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/BCBase/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/BCBase/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/BCBase/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/BCBase/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/BCBase/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/BCBase/CMakeFiles/BCBase_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/BCBase/CMakeFiles/BCBase_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ConfigOptions/CMakeFiles/ConfigOptions.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ConfigOptions/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ConfigOptions/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ConfigOptions/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ConfigOptions/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ConfigOptions/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ConfigOptions/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ConfigOptions/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ConfigOptions/CMakeFiles/ConfigOptions_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ConfigOptions/CMakeFiles/ConfigOptions_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ParaClassFactory/CMakeFiles/ParaClassFactory.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ParaClassFactory/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ParaClassFactory/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ParaClassFactory/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ParaClassFactory/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ParaClassFactory/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ParaClassFactory/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ParaClassFactory/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ParaClassFactory/CMakeFiles/ParaClassFactory_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ParaClassFactory/CMakeFiles/ParaClassFactory_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ModelData/CMakeFiles/ModelData.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ModelData/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ModelData/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ModelData/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ModelData/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ModelData/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ModelData/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ModelData/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ModelData/CMakeFiles/ModelData_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ModelData/CMakeFiles/ModelData_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ModuleBase/CMakeFiles/ModuleBase.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ModuleBase/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ModuleBase/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ModuleBase/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ModuleBase/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ModuleBase/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ModuleBase/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ModuleBase/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ModuleBase/CMakeFiles/ModuleBase_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ModuleBase/CMakeFiles/ModuleBase_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostAlgorithm/CMakeFiles/PostAlgorithm.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostAlgorithm/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostAlgorithm/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostAlgorithm/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostAlgorithm/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostAlgorithm/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostAlgorithm/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostAlgorithm/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostAlgorithm/CMakeFiles/PostAlgorithm_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostAlgorithm/CMakeFiles/PostAlgorithm_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostRenderData/CMakeFiles/PostRenderData.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostRenderData/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostRenderData/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostRenderData/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostRenderData/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostRenderData/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostRenderData/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostRenderData/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostRenderData/CMakeFiles/PostRenderData_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostRenderData/CMakeFiles/PostRenderData_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostInterface/CMakeFiles/PostInterface.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostInterface/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostInterface/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostInterface/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostInterface/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostInterface/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostInterface/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostInterface/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostInterface/CMakeFiles/PostInterface_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostInterface/CMakeFiles/PostInterface_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostCurveDataManager/CMakeFiles/PostCurveDataManager.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostCurveDataManager/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostCurveDataManager/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostCurveDataManager/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostCurveDataManager/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostCurveDataManager/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostCurveDataManager/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostCurveDataManager/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostCurveDataManager/CMakeFiles/PostCurveDataManager_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostCurveDataManager/CMakeFiles/PostCurveDataManager_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostPlotWidget/CMakeFiles/PostPlotWidget.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostPlotWidget/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostPlotWidget/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostPlotWidget/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostPlotWidget/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostPlotWidget/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostPlotWidget/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostPlotWidget/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostPlotWidget/CMakeFiles/PostPlotWidget_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostPlotWidget/CMakeFiles/PostPlotWidget_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostWidgets/CMakeFiles/PostWidgets.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostWidgets/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostWidgets/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostWidgets/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostWidgets/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostWidgets/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostWidgets/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostWidgets/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostWidgets/CMakeFiles/PostWidgets_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PostWidgets/CMakeFiles/PostWidgets_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryDataExchange/CMakeFiles/GeometryDataExchange.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryDataExchange/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryDataExchange/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryDataExchange/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryDataExchange/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryDataExchange/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryDataExchange/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryDataExchange/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryDataExchange/CMakeFiles/GeometryDataExchange_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryDataExchange/CMakeFiles/GeometryDataExchange_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTree/CMakeFiles/ProjectTree.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTree/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTree/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTree/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTree/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTree/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTree/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTree/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTree/CMakeFiles/ProjectTree_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTree/CMakeFiles/ProjectTree_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTreeExtend/CMakeFiles/ProjectTreeExtend.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTreeExtend/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTreeExtend/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTreeExtend/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTreeExtend/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTreeExtend/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTreeExtend/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTreeExtend/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTreeExtend/CMakeFiles/ProjectTreeExtend_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/ProjectTreeExtend/CMakeFiles/ProjectTreeExtend_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryCommand/CMakeFiles/GeometryCommand.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryCommand/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryCommand/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryCommand/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryCommand/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryCommand/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryCommand/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryCommand/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryCommand/CMakeFiles/GeometryCommand_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryCommand/CMakeFiles/GeometryCommand_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryWidgets/CMakeFiles/GeometryWidgets.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryWidgets/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryWidgets/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryWidgets/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryWidgets/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryWidgets/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryWidgets/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryWidgets/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryWidgets/CMakeFiles/GeometryWidgets_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GeometryWidgets/CMakeFiles/GeometryWidgets_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginManager/CMakeFiles/PluginManager.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginManager/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginManager/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginManager/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginManager/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginManager/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginManager/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginManager/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginManager/CMakeFiles/PluginManager_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginManager/CMakeFiles/PluginManager_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GmshModule/CMakeFiles/GmshModule.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GmshModule/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GmshModule/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GmshModule/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GmshModule/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GmshModule/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GmshModule/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GmshModule/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GmshModule/CMakeFiles/GmshModule_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/GmshModule/CMakeFiles/GmshModule_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/IO/CMakeFiles/IO.dir +D:/WBFZCPP/source/FastCAE/out/build/src/IO/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/IO/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/IO/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/IO/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/IO/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/IO/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/IO/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/IO/CMakeFiles/IO_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/IO/CMakeFiles/IO_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SolverControl/CMakeFiles/SolverControl.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SolverControl/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SolverControl/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SolverControl/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SolverControl/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SolverControl/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SolverControl/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SolverControl/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SolverControl/CMakeFiles/SolverControl_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/SolverControl/CMakeFiles/SolverControl_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MainWidgets/CMakeFiles/MainWidgets.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MainWidgets/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MainWidgets/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MainWidgets/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MainWidgets/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MainWidgets/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MainWidgets/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MainWidgets/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MainWidgets/CMakeFiles/MainWidgets_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MainWidgets/CMakeFiles/MainWidgets_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/UserGuidence/CMakeFiles/UserGuidence.dir +D:/WBFZCPP/source/FastCAE/out/build/src/UserGuidence/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/UserGuidence/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/UserGuidence/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/UserGuidence/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/UserGuidence/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/UserGuidence/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/UserGuidence/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/UserGuidence/CMakeFiles/UserGuidence_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/UserGuidence/CMakeFiles/UserGuidence_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MainWindow/CMakeFiles/MainWindow.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MainWindow/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MainWindow/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MainWindow/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MainWindow/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MainWindow/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MainWindow/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MainWindow/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MainWindow/CMakeFiles/MainWindow_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/MainWindow/CMakeFiles/MainWindow_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/LAMPCAE/CMakeFiles/LAMPCAE.dir +D:/WBFZCPP/source/FastCAE/out/build/src/LAMPCAE/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/LAMPCAE/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/LAMPCAE/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/LAMPCAE/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/LAMPCAE/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/LAMPCAE/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/LAMPCAE/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/LAMPCAE/CMakeFiles/LAMPCAE_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/LAMPCAE/CMakeFiles/LAMPCAE_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginCustomizer/CMakeFiles/PluginCustomizer.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginCustomizer/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginCustomizer/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginCustomizer/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginCustomizer/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginCustomizer/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginCustomizer/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginCustomizer/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginCustomizer/CMakeFiles/PluginCustomizer_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginCustomizer/CMakeFiles/PluginCustomizer_autogen.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginMeshDataExchange/CMakeFiles/PluginMeshDataExchange.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginMeshDataExchange/CMakeFiles/package.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginMeshDataExchange/CMakeFiles/package_source.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginMeshDataExchange/CMakeFiles/edit_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginMeshDataExchange/CMakeFiles/rebuild_cache.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginMeshDataExchange/CMakeFiles/list_install_components.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginMeshDataExchange/CMakeFiles/install.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginMeshDataExchange/CMakeFiles/install/local.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginMeshDataExchange/CMakeFiles/PluginMeshDataExchange_autogen_timestamp_deps.dir +D:/WBFZCPP/source/FastCAE/out/build/src/PluginMeshDataExchange/CMakeFiles/PluginMeshDataExchange_autogen.dir diff --git a/out/build/CMakeFiles/clean_additional.cmake b/out/build/CMakeFiles/clean_additional.cmake new file mode 100644 index 0000000..5f81300 --- /dev/null +++ b/out/build/CMakeFiles/clean_additional.cmake @@ -0,0 +1,112 @@ +# Additional clean files +cmake_minimum_required(VERSION 3.16) + +if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "Debug") + file(REMOVE_RECURSE + "src\\BCBase\\BCBase_autogen" + "src\\BCBase\\CMakeFiles\\BCBase_autogen.dir\\AutogenUsed.txt" + "src\\BCBase\\CMakeFiles\\BCBase_autogen.dir\\ParseCache.txt" + "src\\Common\\CMakeFiles\\Common_autogen.dir\\AutogenUsed.txt" + "src\\Common\\CMakeFiles\\Common_autogen.dir\\ParseCache.txt" + "src\\Common\\Common_autogen" + "src\\ConfigOptions\\CMakeFiles\\ConfigOptions_autogen.dir\\AutogenUsed.txt" + "src\\ConfigOptions\\CMakeFiles\\ConfigOptions_autogen.dir\\ParseCache.txt" + "src\\ConfigOptions\\ConfigOptions_autogen" + "src\\DataProperty\\CMakeFiles\\DataProperty_autogen.dir\\AutogenUsed.txt" + "src\\DataProperty\\CMakeFiles\\DataProperty_autogen.dir\\ParseCache.txt" + "src\\DataProperty\\DataProperty_autogen" + "src\\Geometry\\CMakeFiles\\Geometry_autogen.dir\\AutogenUsed.txt" + "src\\Geometry\\CMakeFiles\\Geometry_autogen.dir\\ParseCache.txt" + "src\\Geometry\\Geometry_autogen" + "src\\GeometryCommand\\CMakeFiles\\GeometryCommand_autogen.dir\\AutogenUsed.txt" + "src\\GeometryCommand\\CMakeFiles\\GeometryCommand_autogen.dir\\ParseCache.txt" + "src\\GeometryCommand\\GeometryCommand_autogen" + "src\\GeometryDataExchange\\CMakeFiles\\GeometryDataExchange_autogen.dir\\AutogenUsed.txt" + "src\\GeometryDataExchange\\CMakeFiles\\GeometryDataExchange_autogen.dir\\ParseCache.txt" + "src\\GeometryDataExchange\\GeometryDataExchange_autogen" + "src\\GeometryWidgets\\CMakeFiles\\GeometryWidgets_autogen.dir\\AutogenUsed.txt" + "src\\GeometryWidgets\\CMakeFiles\\GeometryWidgets_autogen.dir\\ParseCache.txt" + "src\\GeometryWidgets\\GeometryWidgets_autogen" + "src\\GmshModule\\CMakeFiles\\GmshModule_autogen.dir\\AutogenUsed.txt" + "src\\GmshModule\\CMakeFiles\\GmshModule_autogen.dir\\ParseCache.txt" + "src\\GmshModule\\GmshModule_autogen" + "src\\IO\\CMakeFiles\\IO_autogen.dir\\AutogenUsed.txt" + "src\\IO\\CMakeFiles\\IO_autogen.dir\\ParseCache.txt" + "src\\IO\\IO_autogen" + "src\\LAMPCAE\\CMakeFiles\\LAMPCAE_autogen.dir\\AutogenUsed.txt" + "src\\LAMPCAE\\CMakeFiles\\LAMPCAE_autogen.dir\\ParseCache.txt" + "src\\LAMPCAE\\LAMPCAE_autogen" + "src\\MainWidgets\\CMakeFiles\\MainWidgets_autogen.dir\\AutogenUsed.txt" + "src\\MainWidgets\\CMakeFiles\\MainWidgets_autogen.dir\\ParseCache.txt" + "src\\MainWidgets\\MainWidgets_autogen" + "src\\MainWindow\\CMakeFiles\\MainWindow_autogen.dir\\AutogenUsed.txt" + "src\\MainWindow\\CMakeFiles\\MainWindow_autogen.dir\\ParseCache.txt" + "src\\MainWindow\\MainWindow_autogen" + "src\\Material\\CMakeFiles\\Material_autogen.dir\\AutogenUsed.txt" + "src\\Material\\CMakeFiles\\Material_autogen.dir\\ParseCache.txt" + "src\\Material\\Material_autogen" + "src\\MeshData\\CMakeFiles\\MeshData_autogen.dir\\AutogenUsed.txt" + "src\\MeshData\\CMakeFiles\\MeshData_autogen.dir\\ParseCache.txt" + "src\\MeshData\\MeshData_autogen" + "src\\ModelData\\CMakeFiles\\ModelData_autogen.dir\\AutogenUsed.txt" + "src\\ModelData\\CMakeFiles\\ModelData_autogen.dir\\ParseCache.txt" + "src\\ModelData\\ModelData_autogen" + "src\\ModuleBase\\CMakeFiles\\ModuleBase_autogen.dir\\AutogenUsed.txt" + "src\\ModuleBase\\CMakeFiles\\ModuleBase_autogen.dir\\ParseCache.txt" + "src\\ModuleBase\\ModuleBase_autogen" + "src\\ParaClassFactory\\CMakeFiles\\ParaClassFactory_autogen.dir\\AutogenUsed.txt" + "src\\ParaClassFactory\\CMakeFiles\\ParaClassFactory_autogen.dir\\ParseCache.txt" + "src\\ParaClassFactory\\ParaClassFactory_autogen" + "src\\PluginCustomizer\\CMakeFiles\\PluginCustomizer_autogen.dir\\AutogenUsed.txt" + "src\\PluginCustomizer\\CMakeFiles\\PluginCustomizer_autogen.dir\\ParseCache.txt" + "src\\PluginCustomizer\\PluginCustomizer_autogen" + "src\\PluginManager\\CMakeFiles\\PluginManager_autogen.dir\\AutogenUsed.txt" + "src\\PluginManager\\CMakeFiles\\PluginManager_autogen.dir\\ParseCache.txt" + "src\\PluginManager\\PluginManager_autogen" + "src\\PluginMeshDataExchange\\CMakeFiles\\PluginMeshDataExchange_autogen.dir\\AutogenUsed.txt" + "src\\PluginMeshDataExchange\\CMakeFiles\\PluginMeshDataExchange_autogen.dir\\ParseCache.txt" + "src\\PluginMeshDataExchange\\PluginMeshDataExchange_autogen" + "src\\PostAlgorithm\\CMakeFiles\\PostAlgorithm_autogen.dir\\AutogenUsed.txt" + "src\\PostAlgorithm\\CMakeFiles\\PostAlgorithm_autogen.dir\\ParseCache.txt" + "src\\PostAlgorithm\\PostAlgorithm_autogen" + "src\\PostCurveDataManager\\CMakeFiles\\PostCurveDataManager_autogen.dir\\AutogenUsed.txt" + "src\\PostCurveDataManager\\CMakeFiles\\PostCurveDataManager_autogen.dir\\ParseCache.txt" + "src\\PostCurveDataManager\\PostCurveDataManager_autogen" + "src\\PostInterface\\CMakeFiles\\PostInterface_autogen.dir\\AutogenUsed.txt" + "src\\PostInterface\\CMakeFiles\\PostInterface_autogen.dir\\ParseCache.txt" + "src\\PostInterface\\PostInterface_autogen" + "src\\PostPlotWidget\\CMakeFiles\\PostPlotWidget_autogen.dir\\AutogenUsed.txt" + "src\\PostPlotWidget\\CMakeFiles\\PostPlotWidget_autogen.dir\\ParseCache.txt" + "src\\PostPlotWidget\\PostPlotWidget_autogen" + "src\\PostRenderData\\CMakeFiles\\PostRenderData_autogen.dir\\AutogenUsed.txt" + "src\\PostRenderData\\CMakeFiles\\PostRenderData_autogen.dir\\ParseCache.txt" + "src\\PostRenderData\\PostRenderData_autogen" + "src\\PostWidgets\\CMakeFiles\\PostWidgets_autogen.dir\\AutogenUsed.txt" + "src\\PostWidgets\\CMakeFiles\\PostWidgets_autogen.dir\\ParseCache.txt" + "src\\PostWidgets\\PostWidgets_autogen" + "src\\ProjectTree\\CMakeFiles\\ProjectTree_autogen.dir\\AutogenUsed.txt" + "src\\ProjectTree\\CMakeFiles\\ProjectTree_autogen.dir\\ParseCache.txt" + "src\\ProjectTree\\ProjectTree_autogen" + "src\\ProjectTreeExtend\\CMakeFiles\\ProjectTreeExtend_autogen.dir\\AutogenUsed.txt" + "src\\ProjectTreeExtend\\CMakeFiles\\ProjectTreeExtend_autogen.dir\\ParseCache.txt" + "src\\ProjectTreeExtend\\ProjectTreeExtend_autogen" + "src\\PythonModule\\CMakeFiles\\PythonModule_autogen.dir\\AutogenUsed.txt" + "src\\PythonModule\\CMakeFiles\\PythonModule_autogen.dir\\ParseCache.txt" + "src\\PythonModule\\PythonModule_autogen" + "src\\SARibbonBar\\CMakeFiles\\SARibbonBar_autogen.dir\\AutogenUsed.txt" + "src\\SARibbonBar\\CMakeFiles\\SARibbonBar_autogen.dir\\ParseCache.txt" + "src\\SARibbonBar\\SARibbonBar_autogen" + "src\\SelfDefObject\\CMakeFiles\\SelfDefObject_autogen.dir\\AutogenUsed.txt" + "src\\SelfDefObject\\CMakeFiles\\SelfDefObject_autogen.dir\\ParseCache.txt" + "src\\SelfDefObject\\SelfDefObject_autogen" + "src\\Settings\\CMakeFiles\\Settings_autogen.dir\\AutogenUsed.txt" + "src\\Settings\\CMakeFiles\\Settings_autogen.dir\\ParseCache.txt" + "src\\Settings\\Settings_autogen" + "src\\SolverControl\\CMakeFiles\\SolverControl_autogen.dir\\AutogenUsed.txt" + "src\\SolverControl\\CMakeFiles\\SolverControl_autogen.dir\\ParseCache.txt" + "src\\SolverControl\\SolverControl_autogen" + "src\\UserGuidence\\CMakeFiles\\UserGuidence_autogen.dir\\AutogenUsed.txt" + "src\\UserGuidence\\CMakeFiles\\UserGuidence_autogen.dir\\ParseCache.txt" + "src\\UserGuidence\\UserGuidence_autogen" + ) +endif() diff --git a/out/build/CMakeFiles/cmake.check_cache b/out/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/out/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/out/build/CMakeFiles/rules.ninja b/out/build/CMakeFiles/rules.ninja new file mode 100644 index 0000000..f36c6ed --- /dev/null +++ b/out/build/CMakeFiles/rules.ninja @@ -0,0 +1,713 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.28 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: LAMPCAE +# Configurations: Debug +# ============================================================================= +# ============================================================================= + +############################################# +# localized /showIncludes string + +msvc_deps_prefix = ע: ļ: + + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__Common_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__Common_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__PythonModule_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__PythonModule_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__SARibbonBar_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__SARibbonBar_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__Settings_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__Settings_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__DataProperty_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__DataProperty_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__MeshData_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__MeshData_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__SelfDefObject_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__SelfDefObject_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__Material_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__Material_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__Geometry_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__Geometry_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo @$RSP_FILE /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + rspfile = $RSP_FILE + rspfile_content = $in_newline $LINK_PATH $LINK_LIBRARIES + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__BCBase_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__BCBase_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__ConfigOptions_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__ConfigOptions_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__ParaClassFactory_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__ParaClassFactory_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__ModelData_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__ModelData_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__ModuleBase_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__ModuleBase_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo @$RSP_FILE /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + rspfile = $RSP_FILE + rspfile_content = $in_newline $LINK_PATH $LINK_LIBRARIES + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__PostAlgorithm_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__PostAlgorithm_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__PostRenderData_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__PostRenderData_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__PostInterface_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__PostInterface_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo @$RSP_FILE /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + rspfile = $RSP_FILE + rspfile_content = $in_newline $LINK_PATH $LINK_LIBRARIES + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__PostCurveDataManager_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__PostCurveDataManager_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__PostPlotWidget_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__PostPlotWidget_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__PostWidgets_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__PostWidgets_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__GeometryDataExchange_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__GeometryDataExchange_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__ProjectTree_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__ProjectTree_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__ProjectTreeExtend_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__ProjectTreeExtend_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__GeometryCommand_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__GeometryCommand_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo @$RSP_FILE /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + rspfile = $RSP_FILE + rspfile_content = $in_newline $LINK_PATH $LINK_LIBRARIES + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__GeometryWidgets_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__GeometryWidgets_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo @$RSP_FILE /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + rspfile = $RSP_FILE + rspfile_content = $in_newline $LINK_PATH $LINK_LIBRARIES + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__PluginManager_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__PluginManager_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__GmshModule_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__GmshModule_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__IO_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__IO_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__SolverControl_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__SolverControl_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__MainWidgets_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__MainWidgets_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo @$RSP_FILE /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + rspfile = $RSP_FILE + rspfile_content = $in_newline $LINK_PATH $LINK_LIBRARIES + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__UserGuidence_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__UserGuidence_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__MainWindow_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__MainWindow_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__LAMPCAE_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for compiling RC files. + +rule RC_COMPILER__LAMPCAE_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = C:/PROGRA~1/MICROS~4/2022/ENTERP~1/Common7/IDE/COMMON~1/MICROS~1/CMake/CMake/bin/cmcldeps.exe RC $in $DEP_FILE $out "注意: 包含文件: " "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/MSVC/14.39.33519/bin/Hostx64/x64/cl.exe" ${LAUNCHER}${CODE_CHECK}C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe $DEFINES $INCLUDES $FLAGS /fo $out $in + description = Building RC object $out + + +############################################# +# Rule for linking CXX executable. + +rule CXX_EXECUTABLE_LINKER__LAMPCAE_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_exe --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /version:2.5 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX executable $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__PluginCustomizer_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__PluginCustomizer_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo @$RSP_FILE /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:0.0 $LINK_FLAGS && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + rspfile = $RSP_FILE + rspfile_content = $in_newline $LINK_PATH $LINK_LIBRARIES + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__PluginMeshDataExchange_unscanned_Debug + deps = msvc + command = ${LAUNCHER}${CODE_CHECK}C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\cl.exe /nologo /TP $DEFINES $INCLUDES $FLAGS /showIncludes /Fo$out /Fd$TARGET_COMPILE_PDB /FS -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__PluginMeshDataExchange_Debug + command = C:\WINDOWS\system32\cmd.exe /C "$PRE_LINK && "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -E vs_link_dll --intdir=$OBJECT_DIR --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests $MANIFESTS -- C:\PROGRA~1\MICROS~4\2022\ENTERP~1\VC\Tools\MSVC\1439~1.335\bin\Hostx64\x64\link.exe /nologo $in /out:$TARGET_FILE /implib:$TARGET_IMPLIB /pdb:$TARGET_PDB /dll /version:0.0 $LINK_FLAGS $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" --regenerate-during-build -SD:\WBFZCPP\source\FastCAE -BD:\WBFZCPP\source\FastCAE\out\build + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning additional files. + +rule CLEAN_ADDITIONAL + command = "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe" -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake + description = Cleaning additional files... + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\Ninja\ninja.exe" $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\Ninja\ninja.exe" -t targets + description = All primary targets available: + diff --git a/out/build/CPackConfig.cmake b/out/build/CPackConfig.cmake new file mode 100644 index 0000000..4297e87 --- /dev/null +++ b/out/build/CPackConfig.cmake @@ -0,0 +1,72 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +set(CPACK_BINARY_7Z "OFF") +set(CPACK_BINARY_IFW "OFF") +set(CPACK_BINARY_INNOSETUP "OFF") +set(CPACK_BINARY_NSIS "ON") +set(CPACK_BINARY_NUGET "OFF") +set(CPACK_BINARY_WIX "OFF") +set(CPACK_BINARY_ZIP "OFF") +set(CPACK_BUILD_SOURCE_DIRS "D:/WBFZCPP/source/FastCAE;D:/WBFZCPP/source/FastCAE/out/build") +set(CPACK_CMAKE_GENERATOR "Ninja") +set(CPACK_COMPONENTS_ALL "Unspecified;bin;lib") +set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Templates/CPack.GenericDescription.txt") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "LAMPCAE built using CMake") +set(CPACK_GENERATOR "NSIS") +set(CPACK_INNOSETUP_ARCHITECTURE "x64") +set(CPACK_INSTALL_CMAKE_PROJECTS "D:/WBFZCPP/source/FastCAE/out/build;LAMPCAE;ALL;/") +set(CPACK_INSTALL_PREFIX "D:/WBFZCPP/source/FastCAE/install") +set(CPACK_MODULE_PATH "D:/WBFZCPP/source/FastCAE/cmake") +set(CPACK_NSIS_DISPLAY_NAME "LAMPCAE 2.5.0") +set(CPACK_NSIS_INSTALLER_ICON_CODE "") +set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES64") +set(CPACK_NSIS_PACKAGE_NAME "LAMPCAE 2.5.0") +set(CPACK_NSIS_UNINSTALL_NAME "Uninstall") +set(CPACK_OUTPUT_CONFIG_FILE "D:/WBFZCPP/source/FastCAE/out/build/CPackConfig.cmake") +set(CPACK_PACKAGE_DEFAULT_LOCATION "/") +set(CPACK_PACKAGE_DESCRIPTION_FILE "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Templates/CPack.GenericDescription.txt") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "LAMPCAE ,基于 FastCAE,一款免费的CAE仿真软件研发支撑平台。") +set(CPACK_PACKAGE_FILE_NAME "LAMPCAE-2.5.0-win64") +set(CPACK_PACKAGE_HOMEPAGE_URL "http://www.LAMPCAE.com/") +set(CPACK_PACKAGE_INSTALL_DIRECTORY "LAMPCAE 2.5.0") +set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "LAMPCAE 2.5.0") +set(CPACK_PACKAGE_NAME "LAMPCAE") +set(CPACK_PACKAGE_RELOCATABLE "true") +set(CPACK_PACKAGE_VENDOR "Humanity") +set(CPACK_PACKAGE_VERSION "2.5.0") +set(CPACK_PACKAGE_VERSION_MAJOR "2") +set(CPACK_PACKAGE_VERSION_MINOR "5") +set(CPACK_PACKAGE_VERSION_PATCH "0") +set(CPACK_RESOURCE_FILE_LICENSE "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Templates/CPack.GenericLicense.txt") +set(CPACK_RESOURCE_FILE_README "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Templates/CPack.GenericDescription.txt") +set(CPACK_RESOURCE_FILE_WELCOME "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Templates/CPack.GenericWelcome.txt") +set(CPACK_SET_DESTDIR "OFF") +set(CPACK_SOURCE_7Z "ON") +set(CPACK_SOURCE_GENERATOR "7Z;ZIP") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "D:/WBFZCPP/source/FastCAE/out/build/CPackSourceConfig.cmake") +set(CPACK_SOURCE_ZIP "ON") +set(CPACK_SYSTEM_NAME "win64") +set(CPACK_THREADS "1") +set(CPACK_TOPLEVEL_TAG "win64") +set(CPACK_WIX_SIZEOF_VOID_P "8") + +if(NOT CPACK_PROPERTIES_FILE) + set(CPACK_PROPERTIES_FILE "D:/WBFZCPP/source/FastCAE/out/build/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/out/build/CPackSourceConfig.cmake b/out/build/CPackSourceConfig.cmake new file mode 100644 index 0000000..beb0a8e --- /dev/null +++ b/out/build/CPackSourceConfig.cmake @@ -0,0 +1,80 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +set(CPACK_BINARY_7Z "OFF") +set(CPACK_BINARY_IFW "OFF") +set(CPACK_BINARY_INNOSETUP "OFF") +set(CPACK_BINARY_NSIS "ON") +set(CPACK_BINARY_NUGET "OFF") +set(CPACK_BINARY_WIX "OFF") +set(CPACK_BINARY_ZIP "OFF") +set(CPACK_BUILD_SOURCE_DIRS "D:/WBFZCPP/source/FastCAE;D:/WBFZCPP/source/FastCAE/out/build") +set(CPACK_CMAKE_GENERATOR "Ninja") +set(CPACK_COMPONENTS_ALL "Unspecified;bin;lib") +set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Templates/CPack.GenericDescription.txt") +set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "LAMPCAE built using CMake") +set(CPACK_GENERATOR "7Z;ZIP") +set(CPACK_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") +set(CPACK_INNOSETUP_ARCHITECTURE "x64") +set(CPACK_INSTALLED_DIRECTORIES "D:/WBFZCPP/source/FastCAE;/") +set(CPACK_INSTALL_CMAKE_PROJECTS "") +set(CPACK_INSTALL_PREFIX "D:/WBFZCPP/source/FastCAE/install") +set(CPACK_MODULE_PATH "D:/WBFZCPP/source/FastCAE/cmake") +set(CPACK_NSIS_DISPLAY_NAME "LAMPCAE 2.5.0") +set(CPACK_NSIS_INSTALLER_ICON_CODE "") +set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES64") +set(CPACK_NSIS_PACKAGE_NAME "LAMPCAE 2.5.0") +set(CPACK_NSIS_UNINSTALL_NAME "Uninstall") +set(CPACK_OUTPUT_CONFIG_FILE "D:/WBFZCPP/source/FastCAE/out/build/CPackConfig.cmake") +set(CPACK_PACKAGE_DEFAULT_LOCATION "/") +set(CPACK_PACKAGE_DESCRIPTION_FILE "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Templates/CPack.GenericDescription.txt") +set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "LAMPCAE ,基于 FastCAE,一款免费的CAE仿真软件研发支撑平台。") +set(CPACK_PACKAGE_FILE_NAME "LAMPCAE-2.5.0-Source") +set(CPACK_PACKAGE_HOMEPAGE_URL "http://www.LAMPCAE.com/") +set(CPACK_PACKAGE_INSTALL_DIRECTORY "LAMPCAE 2.5.0") +set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "LAMPCAE 2.5.0") +set(CPACK_PACKAGE_NAME "LAMPCAE") +set(CPACK_PACKAGE_RELOCATABLE "true") +set(CPACK_PACKAGE_VENDOR "Humanity") +set(CPACK_PACKAGE_VERSION "2.5.0") +set(CPACK_PACKAGE_VERSION_MAJOR "2") +set(CPACK_PACKAGE_VERSION_MINOR "5") +set(CPACK_PACKAGE_VERSION_PATCH "0") +set(CPACK_RESOURCE_FILE_LICENSE "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Templates/CPack.GenericLicense.txt") +set(CPACK_RESOURCE_FILE_README "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Templates/CPack.GenericDescription.txt") +set(CPACK_RESOURCE_FILE_WELCOME "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.28/Templates/CPack.GenericWelcome.txt") +set(CPACK_RPM_PACKAGE_SOURCES "ON") +set(CPACK_SET_DESTDIR "OFF") +set(CPACK_SOURCE_7Z "ON") +set(CPACK_SOURCE_GENERATOR "7Z;ZIP") +set(CPACK_SOURCE_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#") +set(CPACK_SOURCE_INSTALLED_DIRECTORIES "D:/WBFZCPP/source/FastCAE;/") +set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "D:/WBFZCPP/source/FastCAE/out/build/CPackSourceConfig.cmake") +set(CPACK_SOURCE_PACKAGE_FILE_NAME "LAMPCAE-2.5.0-Source") +set(CPACK_SOURCE_TOPLEVEL_TAG "win64-Source") +set(CPACK_SOURCE_ZIP "ON") +set(CPACK_STRIP_FILES "") +set(CPACK_SYSTEM_NAME "win64") +set(CPACK_THREADS "1") +set(CPACK_TOPLEVEL_TAG "win64-Source") +set(CPACK_WIX_SIZEOF_VOID_P "8") + +if(NOT CPACK_PROPERTIES_FILE) + set(CPACK_PROPERTIES_FILE "D:/WBFZCPP/source/FastCAE/out/build/CPackProperties.cmake") +endif() + +if(EXISTS ${CPACK_PROPERTIES_FILE}) + include(${CPACK_PROPERTIES_FILE}) +endif() diff --git a/out/build/Documentation/Doxygen/Doxyfile b/out/build/Documentation/Doxygen/Doxyfile new file mode 100644 index 0000000..15190a9 --- /dev/null +++ b/out/build/Documentation/Doxygen/Doxyfile @@ -0,0 +1,2533 @@ +# Doxyfile 1.9.1 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the configuration +# file that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# https://www.gnu.org/software/libiconv/ for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = LAMPCAE + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = 2.5.0 + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = LAMPCAE ,基于 FastCAE,一款免费的CAE仿真软件研发支撑平台。 + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = http://www.LAMPCAE.com/static/images/logo.png + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = + +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = Chinese + +# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = "The $name class" \ + "The $name widget" \ + "The $name file" \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line +# such as +# /*************** +# as being the beginning of a Javadoc-style comment "banner". If set to NO, the +# Javadoc-style will behave just like regular comments and it will not be +# interpreted by doxygen. +# The default value is: NO. + +JAVADOC_BANNER = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# By default Python docstrings are displayed as preformatted text and doxygen's +# special commands cannot be used. By setting PYTHON_DOCSTRING to NO the +# doxygen's special commands can be used and the contents of the docstring +# documentation blocks is shown as doxygen documentation. +# The default value is: YES. + +PYTHON_DOCSTRING = YES + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines (in the resulting output). You can put ^^ in the value part of an +# alias to insert a newline as if a physical newline was in the original file. +# When you need a literal { or } or , in the value part of an alias you have to +# escape them by means of a backslash (\), this can lead to conflicts with the +# commands \{ and \} for these it is advised to use the version @{ and @} or use +# a double escape (\\{ and \\}) + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice +# sources only. Doxygen will then generate output that is more tailored for that +# language. For instance, namespaces will be presented as modules, types will be +# separated into more groups, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_SLICE = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, JavaScript, +# Csharp (C#), C, C++, D, PHP, md (Markdown), Objective-C, Python, Slice, VHDL, +# Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: +# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser +# tries to guess whether the code is fixed or free formatted code, this is the +# default for Fortran type files). For instance to make doxygen treat .inc files +# as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. When specifying no_extension you should add +# * to the FILE_PATTERNS. +# +# Note see also the list of default file extension mappings. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See https://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up +# to that level are automatically included in the table of contents, even if +# they do not have an id attribute. +# Note: This feature currently applies only to Markdown headings. +# Minimum value: 0, maximum value: 99, default value: 5. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +TOC_INCLUDE_HEADINGS = 5 + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# If one adds a struct or class to a group and this option is enabled, then also +# any nested class or struct is added to the same group. By default this option +# is disabled and one has to add nested compounds explicitly via \ingroup. +# The default value is: NO. + +GROUP_NESTED_COMPOUNDS = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +# The NUM_PROC_THREADS specifies the number threads doxygen is allowed to use +# during processing. When set to 0 doxygen will based this on the number of +# cores available in the system. You can set it explicitly to a value larger +# than 0 to get more control over the balance between CPU load and processing +# speed. At this moment only the input processing can be done using multiple +# threads. Since this is still an experimental feature the default is set to 1, +# which efficively disables parallel processing. Please report any issues you +# encounter. Generating dot graphs in parallel is controlled by the +# DOT_NUM_THREADS setting. +# Minimum value: 0, maximum value: 32, default value: 1. + +NUM_PROC_THREADS = 1 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual +# methods of a class will be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIV_VIRTUAL = YES + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = YES + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = YES + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = YES + +# If this flag is set to YES, the name of an unnamed parameter in a declaration +# will be determined by the corresponding definition. By default unnamed +# parameters remain unnamed in the output. +# The default value is: YES. + +RESOLVE_UNNAMED_PARAMS = YES + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# declarations. If set to NO, these declarations will be included in the +# documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# With the correct setting of option CASE_SENSE_NAMES doxygen will better be +# able to match the capabilities of the underlying filesystem. In case the +# filesystem is case sensitive (i.e. it supports files in the same directory +# whose names only differ in casing), the option must be set to YES to properly +# deal with such files in case they appear in the input. For filesystems that +# are not case sensitive the option should be be set to NO to properly deal with +# output files written for symbols that only differ in casing, such as for two +# classes, one named CLASS and the other named Class, and to also support +# references to files without having to specify the exact matching casing. On +# Windows (including Cygwin) and MacOS, users should typically set this option +# to NO, whereas on Linux or other Unix flavors it should typically be set to +# YES. +# The default value is: system dependent. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = YES + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = YES + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = YES + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = YES + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, doxygen will only warn about wrong or incomplete +# parameter documentation, but not about the absence of documentation. If +# EXTRACT_ALL is set to YES then this flag will automatically be disabled. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when +# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS +# then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but +# at the end of the doxygen process doxygen will return with a non-zero status. +# Possible values are: NO, YES and FAIL_ON_WARNINGS. +# The default value is: NO. + +WARN_AS_ERROR = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING +# Note: If this tag is empty the current directory is searched. + +INPUT = D:/WBFZCPP/source/FastCAE/src + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: +# https://www.gnu.org/software/libiconv/) for the list of possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# read by doxygen. +# +# Note the list of default checked file patterns might differ from the list of +# default file extension mappings. +# +# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, +# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, +# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, +# *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C comment), +# *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, *.vhdl, +# *.ucf, *.qsf and *.ice. + +FILE_PATTERNS = *.cpp \ + *.h \ + *.hxx \ + *.hpp + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = */IO/rapidjson/* \ + */IO/rapidxml/* + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = * + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# entity all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see https://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the +# clang parser (see: +# http://clang.llvm.org/) for more accurate parsing at the cost of reduced +# performance. This can be particularly helpful with template rich C++ code for +# which doxygen's built-in parser lacks the necessary type information. +# Note: The availability of this option depends on whether or not doxygen was +# generated with the -Duse_libclang=ON option for CMake. +# The default value is: NO. + +CLANG_ASSISTED_PARSING = NO + +# If clang assisted parsing is enabled and the CLANG_ADD_INC_PATHS tag is set to +# YES then doxygen will add the directory of each input to the include path. +# The default value is: YES. + +CLANG_ADD_INC_PATHS = YES + +# If clang assisted parsing is enabled you can provide the compiler with command +# line options that you would normally use when invoking the compiler. Note that +# the include paths will already be set by doxygen for the files and directories +# specified with INPUT and INCLUDE_PATH. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. + +CLANG_OPTIONS = + +# If clang assisted parsing is enabled you can provide the clang parser with the +# path to the directory containing a file called compile_commands.json. This +# file is the compilation database (see: +# http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html) containing the +# options used when the source files were built. This is equivalent to +# specifying the -p option to a clang tool, such as clang-check. These options +# will then be passed to the parser. Any options specified with CLANG_OPTIONS +# will be added as well. +# Note: The availability of this option depends on whether or not doxygen was +# generated with the -Duse_libclang=ON option for CMake. + +CLANG_DATABASE_PATH = + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# https://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to YES can help to show when doxygen was last run and thus if the +# documentation is up to date. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = NO + +# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML +# documentation will contain a main index with vertical navigation menus that +# are dynamically created via JavaScript. If disabled, the navigation index will +# consists of multiple levels of tabs that are statically embedded in every HTML +# page. Disable this option to support browsers that do not have JavaScript, +# like the Qt help browser. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_MENUS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: +# https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To +# create a documentation set, doxygen will generate a Makefile in the HTML +# output directory. Running make will produce the docset in that directory and +# running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy +# genXcode/_index.html for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: +# https://www.microsoft.com/en-us/download/details.aspx?id=21138) on Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the main .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location (absolute path +# including file name) of Qt's qhelpgenerator. If non-empty doxygen will try to +# run qhelpgenerator on the generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg +# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see +# https://inkscape.org) to generate formulas as SVG images instead of PNGs for +# the HTML output. These images will generally look nicer at scaled resolutions. +# Possible values are: png (the default) and svg (looks nicer but requires the +# pdf2svg or inkscape tool). +# The default value is: png. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FORMULA_FORMAT = png + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands +# to create new LaTeX commands to be used in formulas as building blocks. See +# the section "Including formulas" for details. + +FORMULA_MACROFILE = + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# https://www.mathjax.org) which uses client side JavaScript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = YES + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from https://www.mathjax.org before deployment. +# The default value is: https://cdn.jsdelivr.net/npm/mathjax@2. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = https://cdn.jsdelivr.net/npm/mathjax@2 + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: +# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /