From 733a296c6fae945a0e51d975edb046e52bbd0a2d Mon Sep 17 00:00:00 2001 From: SeongTae Jeong Date: Mon, 10 Jun 2024 09:56:16 +0900 Subject: [PATCH 01/67] Prepare to build v3.13.0-rc2 --- .github/workflows/build-appimage.yml | 2 +- .github/workflows/build-macos.yml | 19 +----- .github/workflows/build-ubuntu.yml | 60 ------------------- .github/workflows/build-windows.yml | 22 +------ .github/workflows/codeql.yml | 80 -------------------------- .github/workflows/coverity.yml | 34 ----------- .github/workflows/cppcmake-nightly.yml | 26 --------- .github/workflows/cppcmake.yml | 11 +--- .github/workflows/release.yml | 8 +-- .github/workflows/winget.yml | 16 ------ installer/macos/nightly.json | 3 +- installer/macos/notarize.sh | 24 ++------ installer/macos/sqlcipher-nightly.json | 3 +- 13 files changed, 14 insertions(+), 294 deletions(-) delete mode 100644 .github/workflows/build-ubuntu.yml delete mode 100644 .github/workflows/codeql.yml delete mode 100644 .github/workflows/coverity.yml delete mode 100644 .github/workflows/cppcmake-nightly.yml delete mode 100644 .github/workflows/winget.yml diff --git a/.github/workflows/build-appimage.yml b/.github/workflows/build-appimage.yml index 091d572cb..4bcfb1573 100644 --- a/.github/workflows/build-appimage.yml +++ b/.github/workflows/build-appimage.yml @@ -47,7 +47,7 @@ jobs: run: | wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage" chmod a+x linuxdeployqt-continuous-x86_64.AppImage - export VERSION=$(printf "dev-`git -C . rev-parse --short HEAD`") + export VERSION=3.13.0-rc2 ./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -appimage - name: Rename a file diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 5a84db930..3e4abf254 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -2,10 +2,6 @@ name: Build - macOS on: workflow_call: - inputs: - NIGHTLY: - default: false - type: boolean jobs: build: @@ -37,18 +33,10 @@ jobs: - name: Configure build run: | - if [ "${{ inputs.NIGHTLY }}" = "true" ]; then - if [ "${{ matrix.sqlcipher }}" = "1" ]; then - sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLCipher Nightly"/' CMakeLists.txt - else - sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLite Nightly"/' CMakeLists.txt - fi + if [ "${{ matrix.sqlcipher }}" = "1" ]; then + sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLCipher-v3.13.0-rc2"/' CMakeLists.txt else - if [ "${{ matrix.sqlcipher }}" = "1" ]; then - sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLCipher-dev-'$(git rev-parse --short --verify HEAD)'"/' CMakeLists.txt - else - sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLite-dev-'$(git rev-parse --short --verify HEAD)'"/' CMakeLists.txt - fi + sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLite-v3.13.0-rc2"/' CMakeLists.txt fi mkdir build && cd build @@ -76,7 +64,6 @@ jobs: KEYCHAIN_PW: ${{ secrets.MACOS_CODESIGN_KEYCHAIN_PW }} P12: ${{ secrets.MACOS_CODESIGN_P12 }} P12_PW: ${{ secrets.MACOS_CODESIGN_P12_PW }} - NIGHTLY: ${{ inputs.NIGHTLY }} SQLCIPHER: ${{ matrix.sqlcipher }} TEAM_ID: ${{ secrets.MACOS_CODESIGN_TEAM_ID }} diff --git a/.github/workflows/build-ubuntu.yml b/.github/workflows/build-ubuntu.yml deleted file mode 100644 index 5cdaec181..000000000 --- a/.github/workflows/build-ubuntu.yml +++ /dev/null @@ -1,60 +0,0 @@ -name: Build - Ubuntu - -on: - release: - types: [created] - workflow_call: - -jobs: - build: - name: ${{ matrix.os }} - SQLCipher ${{ matrix.sqlcipher }} - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-20.04] - sqlcipher: ["0", "1"] - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Install and cache dependencies - uses: awalsh128/cache-apt-pkgs-action@v1.4.2 - with: - packages: libqcustomplot-dev libqscintilla2-qt5-dev libqt5svg5 libsqlcipher-dev libsqlite3-dev qttools5-dev - - - name: Configure CMake - run: | - cmake -S . -B build -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX=${PWD}/install \ - -DCPACK_PACKAGE_DIRECTORY=${PWD}/package \ - -DENABLE_TESTING=ON \ - -Dsqlcipher=${{ matrix.sqlcipher }} - - - name: Run make - run: cmake --build build --config Release -j --target install - - - name: Run tests - run: ctest -V -C Release --test-dir build - - - if: github.event_name == 'release' - name: Package - run: | - cmake --build build --config Release -j --target package - cmake -E remove_directory package/_CPack_Packages - - - if: github.event_name == 'release' - name: Upload package - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - TAG: ${{ github.event.release.tag_name }} - UPLOAD_URL: ${{ github.event.release.upload_url }} - run: | - set the env var TAG: - $GITHUB_API_URL/repos/$GITHUB_REPOSITORY/releases/tags/$TAG | jq -r .upload_url) - UPLOAD_URL=${UPLOAD_URL%\{*} # remove "{name,label}" suffix - for pkg in package/*.*; do - NAME=$(basename $pkg) - MIME=$(file --mime-type $pkg|cut -d ' ' -f2) - curl -X POST -H "Accept: application/vnd.github.v3+json" -H "Authorization: token $GITHUB_TOKEN" -H "Content-Type: $MIME" --data-binary @$pkg $UPLOAD_URL?name=$NAME - done diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 7144c4b5e..09c7ef170 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -2,10 +2,6 @@ name: Build - Windows on: workflow_call: - inputs: - NIGHTLY: - default: false - type: boolean jobs: build: @@ -89,12 +85,6 @@ jobs: cd C:\dev\SQLite-${{ matrix.arch}}\ cl /MD extension-formats.c -link -dll -def:extension-formats.def -out:formats.dll cl /MD extension-functions.c -link -dll -def:extension-functions.def -out:math.dll - # FIXME: Disable building the 'fileio' extension for now (#3488) - # If this issue is resolved, be sure to delete the related patch for WiX - # curl -L -o fileio.c "https://sqlite.org/src/raw?filename=ext/misc/fileio.c&ci=trunk" - # curl -L -o test_windirent.c "https://sqlite.org/src/raw?filename=src/test_windirent.c&ci=trunk" - # curl -L -o test_windirent.h "https://sqlite.org/src/raw?filename=src/test_windirent.h&ci=trunk" - # cl /MD fileio.c test_windirent.c -link sqlite3.lib -dll -out:fileio.dll - name: Install SQLCipher run: | @@ -153,11 +143,7 @@ jobs: ./build.cmd "${{ matrix.arch }}".ToLower() $ARCH="${{ matrix.arch }}".ToLower() $DATE=$(Get-Date -Format "yyyy-MM-dd") - if ("${{ inputs.NIGHTLY }}" -eq "true") { - mv DB.Browser.for.SQLite-*.msi "DB.Browser.for.SQLite-$DATE-$ARCH.msi" - } else { - mv DB.Browser.for.SQLite-*.msi "DB.Browser.for.SQLite-dev-$(git rev-parse --short HEAD)-$ARCH.msi" - } + mv DB.Browser.for.SQLite-*.msi "DB.Browser.for.SQLite-v3.13.0-rc2-$ARCH.msi" - name: Upload artifacts for code signing with SignPath id: unsigned-artifacts @@ -182,11 +168,7 @@ jobs: run: | $ARCH="${{ matrix.arch }}".ToLower() $DATE=$(Get-Date -Format "yyyy-MM-dd") - if ("${{ inputs.NIGHTLY }}" -eq "true") { - $FILENAME_FORMAT="DB.Browser.for.SQLite-$DATE-$ARCH.zip" - } else { - $FILENAME_FORMAT="DB.Browser.for.SQLite-dev-$(git rev-parse --short HEAD)-$ARCH.zip" - } + $FILENAME_FORMAT="DB.Browser.for.SQLite-v3.13.0-rc2-$ARCH.zip" Start-Process msiexec.exe -ArgumentList "/a $(dir installer\windows\DB.Browser.for.SQLite-*.msi) /q TARGETDIR=$PWD\target\" -Wait if ("${{ matrix.arch }}" -eq "Win32") { move target\System\* "target\DB Browser for SQLite\" diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml deleted file mode 100644 index d776b78cd..000000000 --- a/.github/workflows/codeql.yml +++ /dev/null @@ -1,80 +0,0 @@ -name: "CodeQL" - -on: - push: - branches: ["master"] - pull_request: - # The branches below must be a subset of the branches above - branches: ["master"] - schedule: - - cron: "14 22 * * 6" - -jobs: - analyze: - name: Analyze - runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} - timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }} - permissions: - actions: read - contents: read - security-events: write - - strategy: - fail-fast: false - matrix: - language: ["cpp", "python"] - # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] - # Use only 'java' to analyze code written in Java, Kotlin or both - # Use only 'javascript' to analyze code written in JavaScript, TypeScript or both - # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - if: matrix.language == 'cpp' - name: Install dependencies - run: | - sudo apt-get update - sudo apt install build-essential git cmake libsqlite3-dev qtchooser qt5-qmake qtbase5-dev-tools qttools5-dev-tools libsqlcipher-dev qtbase5-dev libqt5scintilla2-dev libqcustomplot-dev qttools5-dev - - # Initializes the CodeQL tools for scanning. - - name: Initialize CodeQL - uses: github/codeql-action/init@v3 - with: - languages: ${{ matrix.language }} - # If you wish to specify custom queries, you can do so here or in a config file. - # By default, queries listed here will override any specified in a config file. - # Prefix the list here with "+" to use these queries and those in the config file. - - # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs - # queries: security-extended,security-and-quality - - - if: matrix.language == 'cpp' - name: Build C++ - run: | - mkdir build && cd build - cmake -Dsqlcipher=1 -Wno-dev .. - make - sudo make install - - # Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift). - # If this step fails, then you should remove it and run the build manually (see below) - - if: matrix.language != 'cpp' - name: Autobuild - uses: github/codeql-action/autobuild@v3 - - # ℹ️ Command-line programs to run using the OS shell. - # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun - - # If the Autobuild fails above, remove it and uncomment the following three lines. - # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. - - # - run: | - # echo "Run, Build Application using script" - # ./location_of_script_within_repo/buildscript.sh - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 - with: - category: "/language:${{matrix.language}}" diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml deleted file mode 100644 index 00fdb93ee..000000000 --- a/.github/workflows/coverity.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Coverity - -on: - push: - branches: [coverity_scan] - -defaults: - run: - shell: bash - -jobs: - build: - name: Coverity Scan - runs-on: ubuntu-20.04 - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Install dependencies - run: | - sudo apt-get update - sudo apt-get install qttools5-dev libqt5scintilla2-dev libqcustomplot-dev libsqlite3-dev libqt5svg5 libsqlcipher-dev qt5-default - - - name: Configure cmake - run: | - cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DENABLE_TESTING=ON -Dsqlcipher=1 . - - - name: Build and scan - uses: vapier/coverity-scan-action@v1 - with: - project: sqlitebrowser%2Fsqlitebrowser - token: ${{ secrets.COVERITY_TOKEN }} - email: "github@mkleusberg.de" - command: make diff --git a/.github/workflows/cppcmake-nightly.yml b/.github/workflows/cppcmake-nightly.yml deleted file mode 100644 index f824c7406..000000000 --- a/.github/workflows/cppcmake-nightly.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Build and Deploy Nightly Builds - -on: - schedule: - - cron: '0 0 * * *' # Every day at midnight UTC - workflow_dispatch: - -jobs: - build-macos: - uses: ./.github/workflows/build-macos.yml - secrets: inherit - with: - NIGHTLY: true - - build-windows: - uses: ./.github/workflows/build-windows.yml - secrets: inherit - with: - NIGHTLY: true - - release: - needs: [build-macos, build-windows] - uses: ./.github/workflows/release.yml - secrets: inherit - with: - NIGHTLY: true diff --git a/.github/workflows/cppcmake.yml b/.github/workflows/cppcmake.yml index 9c66c0e72..884dbbe4e 100644 --- a/.github/workflows/cppcmake.yml +++ b/.github/workflows/cppcmake.yml @@ -1,9 +1,6 @@ -name: CI +name: Build v3.13.0-rc2 on: - push: - branches: [master] - pull_request: workflow_dispatch: permissions: @@ -11,23 +8,17 @@ permissions: jobs: build-appimage: - if: github.event_name != 'pull_request' uses: ./.github/workflows/build-appimage.yml build-macos: uses: ./.github/workflows/build-macos.yml secrets: inherit - build-ubuntu: - uses: ./.github/workflows/build-ubuntu.yml - secrets: inherit - build-windows: uses: ./.github/workflows/build-windows.yml secrets: inherit release: - if: github.event_name != 'pull_request' needs: [build-appimage, build-macos, build-windows] uses: ./.github/workflows/release.yml secrets: inherit diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 80e773889..661937230 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,13 +2,9 @@ name: Release on: workflow_call: - inputs: - NIGHTLY: - default: false - type: boolean env: - tag_name: ${{ inputs.NIGHTLY == true && 'nightly' || 'continuous' }} + tag_name: "v3.13.0-rc2" jobs: release: @@ -45,5 +41,3 @@ jobs: files: target/* prerelease: true tag_name: ${{ env.tag_name }} - - # For reference: Uploading nightly builds to the nightly server is processed on the nightly server side. diff --git a/.github/workflows/winget.yml b/.github/workflows/winget.yml deleted file mode 100644 index 0bfa84771..000000000 --- a/.github/workflows/winget.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Publish to WinGet - -on: - release: - types: [released] - -jobs: - publish: - # Action can only be run on windows - runs-on: windows-latest - steps: - - uses: vedantmgoyal2009/winget-releaser@v2 - with: - identifier: DBBrowserForSQLite.DBBrowserForSQLite - installers-regex: '\.msi$' # Only .msi files - token: ${{ secrets.WINGET_TOKEN }} diff --git a/installer/macos/nightly.json b/installer/macos/nightly.json index 61651ad19..5b8dac3c0 100644 --- a/installer/macos/nightly.json +++ b/installer/macos/nightly.json @@ -1,5 +1,5 @@ { - "title": "Install DB4S Nightly build", + "title": "Install DB4S", "icon": "macapp-nightly.icns", "icon-size": 128, "background": "background.png", @@ -20,4 +20,3 @@ { "x": 90, "y": 530, "type": "position", "path": ".Trashes" } ] } - diff --git a/installer/macos/notarize.sh b/installer/macos/notarize.sh index 0b9928969..a7ed3298d 100644 --- a/installer/macos/notarize.sh +++ b/installer/macos/notarize.sh @@ -58,13 +58,8 @@ done # Copy the icon file to the app bundle for TARGET in $(find build -name "DB Browser for SQL*.app" | sed -e 's/ /_/g'); do TARGET=$(echo $TARGET | sed -e 's/_/ /g') - if [ "$NIGHTLY" = "false" ]; then cp installer/macos/macapp.icns "$TARGET/Contents/Resources/" /usr/libexec/PlistBuddy -c "Set :CFBundleIconFile macapp.icns" "$TARGET/Contents/Info.plist" - else - cp installer/macos/macapp-nightly.icns "$TARGET/Contents/Resources/" - /usr/libexec/PlistBuddy -c "Set :CFBundleIconFile macapp-nightly.icns" "$TARGET/Contents/Info.plist" - fi done # Sign the manually added extensions @@ -82,24 +77,13 @@ mv build/*.app installer/macos export DATE=$(date +%Y%m%d) if [ "$SQLCIPHER" = "1" ]; then - if [ "$NIGHTLY" = "false" ]; then - # Continuous with SQLCipher - sed -i "" 's/"DB Browser for SQLCipher Nightly.app"/"DB Browser for SQLCipher-dev-'$(git rev-parse --short --verify HEAD)'.app"/' installer/macos/sqlcipher-nightly.json - TARGET="DB.Browser.for.SQLCipher-dev-$(git rev-parse --short --verify HEAD).dmg" - else - # Nightly with SQLCipher - TARGET="DB.Browser.for.SQLCipher-universal_$DATE.dmg" - fi + sed -i "" 's/"DB Browser for SQLCipher Nightly.app"/"DB Browser for SQLCipher-v3.13.0-rc2.app"/' installer/macos/sqlcipher-nightly.json + TARGET="DB.Browser.for.SQLCipher-v3.13.0-rc2.dmg" appdmg --quiet installer/macos/sqlcipher-nightly.json "$TARGET" else - if [ "$NIGHTLY" = "false" ]; then # Continuous without SQLCipher - sed -i "" 's/"DB Browser for SQLite Nightly.app"/"DB Browser for SQLite-dev-'$(git rev-parse --short --verify HEAD)'.app"/' installer/macos/nightly.json - TARGET="DB.Browser.for.SQLite-dev-$(git rev-parse --short --verify HEAD).dmg" - else - # Nightly without SQLCipher - TARGET="DB.Browser.for.SQLite-universal_$DATE.dmg" - fi + sed -i "" 's/"DB Browser for SQLite Nightly.app"/"DB Browser for SQLite-v3.13.0-rc2.app"/' installer/macos/nightly.json + TARGET="DB.Browser.for.SQLite-v3.13.0-rc2.dmg" appdmg --quiet installer/macos/nightly.json "$TARGET" fi diff --git a/installer/macos/sqlcipher-nightly.json b/installer/macos/sqlcipher-nightly.json index 7334aae4b..793a97cc7 100644 --- a/installer/macos/sqlcipher-nightly.json +++ b/installer/macos/sqlcipher-nightly.json @@ -1,5 +1,5 @@ { - "title": "Install DB4S Nightly build", + "title": "Install DB4S", "icon": "macapp-nightly.icns", "icon-size": 128, "background": "background.png", @@ -20,4 +20,3 @@ { "x": 90, "y": 530, "type": "position", "path": ".Trashes" } ] } - From 2b0976c8fd76940c9c97de3bb316eb64072d7b03 Mon Sep 17 00:00:00 2001 From: GortiZ Date: Mon, 10 Jun 2024 12:16:37 +0200 Subject: [PATCH 02/67] Updated Italian translation (#3656) Related: #3452 Co-authored-by: Giuseppe Zizza Co-authored-by: SeongTae Jeong --- src/translations/sqlb_it.ts | 2165 +++++++++++++++++++++++++++++++---- 1 file changed, 1912 insertions(+), 253 deletions(-) diff --git a/src/translations/sqlb_it.ts b/src/translations/sqlb_it.ts index d238593d3..b947824f0 100644 --- a/src/translations/sqlb_it.ts +++ b/src/translations/sqlb_it.ts @@ -16,7 +16,7 @@ <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> - + <html><head/><body><p>DB Browser for SQLite è uno strumento visuale open source e freeware utilizzato per creare, progettare ed editare files di database SQLite.</p><p>È licenziato sia sotto la Mozilla Public License Version 2, che la GNU General Public License Version 3 o successive. Puoi modificare o redistribuirlo rispettando le condizioni di queste licenze.</p><p>Visita <a href="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> e <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> per i dettagli.</p><p>Per ulteriori informazioni su questo applicativo si prega di visitare il nostro sito: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">Questo software utilizza la versione GPL/LGPL del Toolkit Qt da: </span><a href="http://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>Visita: </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> per i termini della licenza ed informazioni.</span></p><p><span style=" font-size:8pt;">Utilizziamo la libreria nalgeon/sqlean per il supporto alle estensioni SQLite.<br/>Questa libreria è licenziata tramite la licenza MIT, per ulteriori informazioni visita:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">Utilizziamo anche il set di icone Pastel SVG di Michael Buckley tramite la licenza Creative Commons Attribution Share Alike 4.0.<br/>Visita: </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> per i dettagli.</span></p></body></html> @@ -495,12 +495,12 @@ Se una qualunque altra impostazione è stata modificata per l'inserimento d WebKit / Chromium epoch to date - + WebKit / Chromium epoch ad oggi WebKit / Chromium epoch to local time - + WebKit / Chromium epoch a ora locale @@ -881,7 +881,7 @@ Messaggio dal DB: Error loading built-in extension: %1 - + Errore nel caricamento dell'esensione inclusa: %1 @@ -1440,7 +1440,7 @@ Vuoi applicare i dati modificati alla riga=%1, colonna=%2? Make this a 'WITHOUT ROWID' table. Setting this flag requires specifying a PRIMARY KEY (which can be of any type, and can be composite), and forbids the AUTOINCREMENT flag. - + Rendi questa tavola 'WITHOUT ROWID'. Abilitare questo flag obbliga a specificare una PRIMARY KEY (che può essere di qualsiasi tipo, anche composita), e vieta il flag AUTOINCREMENT. @@ -4091,7 +4091,7 @@ Sei sicuro? Automatically load the last opened DB file at startup - + Carica automaticamente l'ultimo file DB aperto all'avvio @@ -4293,7 +4293,7 @@ Se rispondi di no proveremo ad importare i dati del file SQL all'interno de Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. - + Seleziona l'azione da applicare al file scartato. <br/>Nota: solo 'Importa' processa più di un file. Seleziona l'azione da applicare ai files scartati. <br/>Nota: solo 'Importa' processa più di un file. @@ -5363,7 +5363,7 @@ Può essere impostato a 0 per disabilitare il completamento. Select built-in extensions to load for every database: - + Seleziona quali estensioni incluse caricare per ogni database: @@ -5782,492 +5782,492 @@ Si prega di ricontrollare. Move down one line - + Sposta in basso di una riga Extend selection down one line - + Estendi la selezione in basso di una riga Extend rectangular selection down one line - + Estendi la selezione rettangolare in basso di una riga Scroll view down one line - + Scorri la vista in basso di una riga Move up one line - + Muovi in alto di una riga Extend selection up one line - + Estendi la selezione in alto di una riga Extend rectangular selection up one line - + Estendi la selezione rettangolare in alto di una riga Scroll view up one line - + Scorri la vista in alto di una riga Scroll to start of document - + Scorri all'inizio del documento Scroll to end of document - + Scorri alla fine del documento Scroll vertically to centre current line - + Scorri verticalmente per centrare la riga corrente Move down one paragraph - + Muovi in basso di un paragrafo Extend selection down one paragraph - + Estendi la selezione in basso di un paragrafo Move up one paragraph - + Muovi in alto di un paragrafo Extend selection up one paragraph - + Estendi la selezione in alto di un paragrafo Move left one character - + Muovi a sinistra di un carattere Extend selection left one character - + Estendi la selezione a sinistra di un carattere Extend rectangular selection left one character - + Estendi la selezione rettangolare a sinistra di un carattere Move right one character - + Muovi a destra di un carattere Extend selection right one character - + Estendi la selezione a destra di un carattere Extend rectangular selection right one character - + Estendi la selezione rettangolare a destra di un carattere Move left one word - + Muovi a sinistra di una parola Extend selection left one word - + Estendi la selezione a sinistra di una parola Move right one word - + Muovi a destra di una parola Extend selection right one word - + Estendi la selezione a destra di una parola Move to end of previous word - + Muovi alla fine della parola precedente Extend selection to end of previous word - + Estendi la selezione alla fine della parola precedente Move to end of next word - + Muovi alla fine della prossima parola Extend selection to end of next word - + Estendi la selezione alla fine della prossima parola Move left one word part - + Muovi a sinistra di una parte di parola Extend selection left one word part - + Estendi la selezione a sinistra di una parte di parola Move right one word part - + Muovi a destra di una parte di parola Extend selection right one word part - + Estendi la selezione a destra di una parte di parola Move to start of document line - + Muovi all'inizio della riga Extend selection to start of document line - + Estendi la selezione all'inizio della riga Extend rectangular selection to start of document line - + Estendi la selezione rettangolare all'inizio della riga Move to start of display line - + Muovi all'inizio della riga mostrata Extend selection to start of display line - + Estendi la selezione all'inizio della riga mostrata Move to start of display or document line - + Muovi all'inizio della riga mostrata o del documento Extend selection to start of display or document line - + Estendi la selezione all'inizio della riga mostrata o del documento Move to first visible character in document line - + Muovi al primo carattere visibile nella riga Extend selection to first visible character in document line - + Estendi la selezione al primo carattere visibile della riga Extend rectangular selection to first visible character in document line - + Estendi la selezione rettangolare al primo carattere visibile nella riga Move to first visible character of display in document line - + Muovi al primo carattere visibile nella riga mostrata Extend selection to first visible character in display or document line - + Estendi la selezione al primo carattere visibile nella riga mostrata Move to end of document line - + Muovi alla fine della riga Extend selection to end of document line - + Estendi la selezione alla fine della riga Extend rectangular selection to end of document line - + Estendi la selezione rettangolare alla fine della riga Move to end of display line - + Muovi alla fine della riga mostrata Extend selection to end of display line - + Estendi la selezione alla fine della riga mostrata Move to end of display or document line - + Muovi alla fine della riga mostrata o del documento Extend selection to end of display or document line - + Estendi la selezione alla fine della riga mostrata o del documento Move to start of document - + Muovi all'inizio del documento Extend selection to start of document - + Estendi la selezione all'inizio del documento Move to end of document - + Muovi alla fine del documento Extend selection to end of document - + Estendi la selezione alla fine del documento Move up one page - + Muovi su di una pagina Extend selection up one page - + Estendi la selezione in su di una pagina Extend rectangular selection up one page - + Estendi la selezione rettangolare in su di una pagina Move down one page - + Muovi in basso di una pagina Extend selection down one page - + Estendi la selezione in basso di una pagina Extend rectangular selection down one page - + Estendi la selezione rettangolare in basso di una pagina Stuttered move up one page - + Muovi in alto a scatti di una pagina Stuttered extend selection up one page - + Estendi la selezione in alto a scatti di una pagina Stuttered move down one page - + Muovi in basso a scatti di una pagina Stuttered extend selection down one page - + Estendi la selezione in basso a scatti di una pagina Delete current character - + Elimina il carattere corrente Delete previous character - + Elimina il carattere precedente Delete previous character if not at start of line - + Elimina il carattere precedente se non corrisponde all'inizio di riga Delete word to left - + Elimina la parola a sinistra Delete word to right - + Elimina la parola a destra Delete right to end of next word - + Elimina da destra alla fine della prossima parola Delete line to left - + Elimina la riga a sinsitra Delete line to right - + Elimina la riga a destra Delete current line - + Elimina la riga corrente Cut current line - + Taglia la riga corrente Copy current line - + Copia la riga corrente Transpose current and previous lines - + Trasponi la riga corrente e quella precedente Duplicate the current line - + Duplica la riga corrente Select all - + Seleziona tutto Move selected lines up one line - + Muovi le righe selezionate in alto di una riga Move selected lines down one line - + Muovi le righe selezionate in basso di una riga Duplicate selection - + Duplica la selezione Convert selection to lower case - + Converti la selezione in minuscolo Convert selection to upper case - + Converti la selezione in maiuscolo Cut selection - + Taglia la selezione Copy selection - + Copia la selezione Paste - Incolla + Incolla Toggle insert/overtype - + Alterna inserisci/sovrascrivi Insert newline - + Inserisci una nuova riga Formfeed - + Separatore di pagina Indent one level - + Indenta di un livello De-indent one level - + Rimuovi l'indentazione di un livello Cancel - Annulla + Annulla Undo last command - + Annulla l'ultimo comando Redo last command - + Ripristina l'ultimo comando Zoom in - + Ingrandisci Zoom out - + Rimpicciolisci @@ -6275,282 +6275,282 @@ Si prega di ricontrollare. Default - Default + Default Inactive default - + Default inattivo C comment - + Commento C Inactive C comment - + Commento C inattivo C++ comment - + Commento C++ Inactive C++ comment - + Commento C++ inattivo JavaDoc style C comment - + Commento JavaDoc in stile C Inactive JavaDoc style C comment - + Commento JavaDoc in stile C inattivo Number - + Numero Inactive number - + Numero inattivo Keyword - Parola chiave + Parola chiave Inactive keyword - + Parola chiave inattiva Double-quoted string - + Stringa tra virgolette Inactive double-quoted string - + Stringa tra virgolette inattiva Single-quoted string - + Stringa tra singoli apici Inactive single-quoted string - + Stringa tra singoli apici inattiva IDL UUID - + IDL UUID Inactive IDL UUID - + IDL UUID inattivo Pre-processor block - + Blocco di pre-processore Inactive pre-processor block - + Blocco di pre-processore inattivo Operator - + Operatore Inactive operator - + Operatore inattivo Identifier - Identificatore + Identificatore Inactive identifier - + Identificatore inattivo Unclosed string - + Stringa non terminata Inactive unclosed string - + Stringa non terminata inattiva C# verbatim string - + Stringa verbatim in C# Inactive C# verbatim string - + Stringa verbatim in C# inattiva JavaScript regular expression - + Espressione regolare JavaScript Inactive JavaScript regular expression - + Espressione regolare JavaScript inattiva JavaDoc style C++ comment - + Commmento JavaDoc in stile C++ Inactive JavaDoc style C++ comment - + Commento JavaDoc in stile C++ inattivo Secondary keywords and identifiers - + Parole chiave e identificatori secondari Inactive secondary keywords and identifiers - + Parole chiave e identificatori secondari inattivi JavaDoc keyword - + Parola chiave JavaDoc Inactive JavaDoc keyword - + Parola chiave JavaDoc inattiva JavaDoc keyword error - + Parola chiave JavaDoc errata Inactive JavaDoc keyword error - + Parola chiava JavaDoc errata inattiva Global classes and typedefs - + Classi globali e typedefs Inactive global classes and typedefs - + Classi globali e typedefs inattive C++ raw string - + Stringa grezza C++ Inactive C++ raw string - + Stringa grezza C++ inattiva Vala triple-quoted verbatim string - + Stringa Vala tri-apicata verbatim Inactive Vala triple-quoted verbatim string - + Stringa Vala tri-apicata verbatim inattiva Pike hash-quoted string - + Stringa Pike tra hash Inactive Pike hash-quoted string - + Stringa Pike tra hash inattiva Pre-processor C comment - + Commento di pre-processore C Inactive pre-processor C comment - + Commento di pre-processore C inattivo JavaDoc style pre-processor comment - + Commento di pre-processore in stile JavaDoc Inactive JavaDoc style pre-processor comment - + Commento di pre-processore in stile JavaDoc inattivo User-defined literal - + Letterale definito dall'utente Inactive user-defined literal - + Letterale definito dall'utente inattivo Task marker - + Segno di Task Inactive task marker - + Segno di Task inattivo Escape sequence - + Sequenza di escape Inactive escape sequence - + Sequenza di escape inattiva @@ -6558,442 +6558,2101 @@ Si prega di ricontrollare. HTML default - + Default HTML Tag - + Tag Unknown tag - + Tag sconosciuto Attribute - + Attributo Unknown attribute - + Attributo sconosciuto HTML number - + Numero HTML HTML double-quoted string - + Stringa tra virgolette in HTML HTML single-quoted string - + Stringa tra apici in HTML Other text in a tag - + Altro test in un tag HTML comment - + Commento HTML Entity - + Entità End of a tag - + Fine di un tag Start of an XML fragment - + Inizio di un frammento XML End of an XML fragment - + Fine di un frammento XML Script tag - + Tag di script Start of an ASP fragment with @ - + Inizio di un frammento ASP con @ Start of an ASP fragment - + Inizio di un frammento ASP CDATA - + CDATA Start of a PHP fragment - + Inizio di un frammento PHP Unquoted HTML value - + Valore HTML senza apici ASP X-Code comment - + Commento di codice ASP X SGML default - + Default SGML SGML command - + Comando SGML First parameter of an SGML command - + Primo parametro di un comando SGML SGML double-quoted string - + Stringa tra virgolette SGML SGML single-quoted string - + Stringa tra apici SGML SGML error - + Errore SGML SGML special entity - + Entità speciale SGML SGML comment - + Commento SGML First parameter comment of an SGML command - + Primo parametro di un comando SGML SGML block default - + Blocco di default SGML Start of a JavaScript fragment - + Inizio di un frammento JavaScript JavaScript default - + Default JavaScript JavaScript comment - + Commento JavaScript JavaScript line comment - + Commento di riga JavaScript JavaDoc style JavaScript comment - + Commento JavaScript in stile JavaDoc JavaScript number - + Numero JavaScript JavaScript word - + Parola JavaScript JavaScript keyword - + Parola chiave JavaScript JavaScript double-quoted string - + Stringa tra virgolette JavaScript JavaScript single-quoted string - + Stringa tra apici JavaScript JavaScript symbol - + Simbolo JavaScript JavaScript unclosed string - + Stringa non delimitata JavaScript JavaScript regular expression - + Espressione regolare JavaScript Start of an ASP JavaScript fragment - + Inizio di un frammento ASP in JavaScript ASP JavaScript default - + Default ASP JavaScript ASP JavaScript comment - + Commento ASP JavaScript ASP JavaScript line comment - + Line di commento ASP JavaScript JavaDoc style ASP JavaScript comment - + Commento ASP JavaScript in stile JavaDoc ASP JavaScript number - + Numero ASP JavaScript ASP JavaScript word - + Parola ASP JavaScript ASP JavaScript keyword - + Parola chiave ASP JavaScript ASP JavaScript double-quoted string - + Stringa ASP JavaScript tra virgolette ASP JavaScript single-quoted string - + Stringa ASP JavaScript tra apici ASP JavaScript symbol - + Simbolo ASP JavaScript ASP JavaScript unclosed string - + Stringa non delimitata ASP JavaScript ASP JavaScript regular expression - + Espressione regolare ASP JavaScript Start of a VBScript fragment - + Inizio di un frammento VBScript VBScript default - + Default VBScript VBScript comment - + Commento VBScript VBScript number - + Numero VBScript VBScript keyword - + Parola chiave VBScript VBScript string - + Stringa VBScript VBScript identifier - + Identificatore VBScript VBScript unclosed string - + Stringa non delimitata VBScript Start of an ASP VBScript fragment - + Inizio di un frammento ASP VBScript ASP VBScript default - + Default ASP VBScript ASP VBScript comment - + Commento ASP VBScript ASP VBScript number - + Numero ASP VBScript ASP VBScript keyword - + Parola chiave ASP VBScript ASP VBScript string - + Stringa ASP VBScript ASP VBScript identifier - + Identificatore ASP VBScript ASP VBScript unclosed string - + Stringa non delimitata ASP VBScript Start of a Python fragment - + Inizio di un frammento Python Python default - + Default Python Python comment - + Commento Python Python number - + Numero Python Python double-quoted string - + Stringa tra virgolette Python Python single-quoted string - + Stringa tra apici Python Python keyword - + Parola chiave Python Python triple double-quoted string - + Stringa tra tripilci virgolette Python Python triple single-quoted string - + Stringa tra triplici apici Python Python class name - + Nome di classe Python Python function or method name - + Funzione o nome di metodo Python Python operator - + Operatore Python Python identifier - + Identificatore Python Start of an ASP Python fragment - + Inizio di un frammento ASP Python ASP Python default - + Default ASP Python + + + + ASP Python comment + Commento ASP Python + + + + ASP Python number + Numero ASP Python + + + + ASP Python double-quoted string + Stringa tra virgolette ASP Python + + + + ASP Python single-quoted string + Stringa tra apici ASP Python + + + + ASP Python keyword + Parola chiave ASP Python + + + + ASP Python triple double-quoted string + Stringa tra triplici virgolette ASP Python + + + + ASP Python triple single-quoted string + Stringa tra triplici apici ASP Python + + + + ASP Python class name + Nome di classe ASP Python + + + + ASP Python function or method name + Nome di funzione o metodo ASP Python + + + + ASP Python operator + Operatore ASP Python + + + + ASP Python identifier + Identificatore ASP Python + + + + PHP default + Default PHP + + + + PHP double-quoted string + Stringa tra virgolette PHP + + + + PHP single-quoted string + Stringa tra apici PHP + + + + PHP keyword + Parola chiave PHP + + + + PHP number + Numero PHP + + + + PHP variable + Variabile PHP + + + + PHP comment + Commento PHP + + + + PHP line comment + Commento di linea PHP + + + + PHP double-quoted variable + Variabile tra virgolette PHP + + + + PHP operator + Operatore PHP + + + + QsciLexerJSON + + + Default + Default + + + + Number + Numero + + + + String + Stringa + + + + Unclosed string + Stringa non delimitata + + + + Property + Proprietà + + + + Escape sequence + Sequenza di escape + + + + Line comment + Commento di linea + + + + Block comment + Commento in blocco + + + + Operator + Operatore + + + + IRI + IRI + + + + JSON-LD compact IRI + JSON-LD IRI compatto + + + + JSON keyword + Parola chiave JSON + + + + JSON-LD keyword + Parola chiave JSON-LD + + + + Parsing error + Errore di analisi + + + + QsciLexerJavaScript + + + Regular expression + Espressione regolare + + + + QsciLexerPython + + + Default + Default + + + + Comment + Commento + + + + Number + Numero + + + + Double-quoted string + Stringa tra virgolette + + + + Single-quoted string + Stringa tra apici + + + + Keyword + Parola chiave + + + + Triple single-quoted string + Stringa tra triplici apici + + + + Triple double-quoted string + Stringa tra triplici virgolette + + + + Class name + Nome di classe + + + + Function or method name + Nome di funzione o metodo + + + + Operator + Operatore + + + + Identifier + Identificatore + + + + Comment block + Commento in blocco + + + + Unclosed string + Stringa non delimitata + + + + Highlighted identifier + Identificatore evidenziato + + + + Decorator + Decoratore + + + + Double-quoted f-string + Stringa-f tra virgolette + + + + Single-quoted f-string + Stringa-f tra singoli apici + + + + Triple single-quoted f-string + Stringa-f tra triplici apici + + + + Triple double-quoted f-string + Stringa-f tra triplici virgolette + + + + QsciLexerSQL + + + Default + Default + + + + Comment + Commento + + + + Comment line + Commento di linea + + + + JavaDoc style comment + Commento in stile JavaDoc + + + + Number + Numero + + + + Keyword + Parola chiave + + + + Double-quoted string + Stringa tra virgolette + + + + Single-quoted string + Stringa tra apici + + + + SQL*Plus keyword + Parola chiave SQL*Plus + + + + SQL*Plus prompt + Richiesta SQL*Plus + + + + Operator + Operatore + + + + Identifier + Identificatore + + + + SQL*Plus comment + Commento SQL*Plus + + + + # comment line + # commento di linea + + + + JavaDoc keyword + Parola chiave JavaDoc + + + + JavaDoc keyword error + Errore parola chiave JavaDoc + + + + User defined 1 + Definito dall'utente 1 + + + + User defined 2 + Definito dall'utente 2 + + + + User defined 3 + Definito dall'utente 3 + + + + User defined 4 + Definito dall'utente 4 + + + + Quoted identifier + Identificatore di citazione + + + + Quoted operator + Operatore di citazione + + + + QsciScintilla + + + &Undo + A&nnulla + + + + &Redo + &Ripristina + + + + Cu&t + &Taglia + + + + &Copy + &Copia + + + + &Paste + &Incolla + + + + Delete + Elimina + + + + Select All + Seleziona tutto + + + + RemoteCommitsModel + + + Commit ID + ID Commit + + + + 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 + + + + Upload + Carica + + + + 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, si possono aggiungere database dal sito web dbhub.io a DB Browser for SQLite. 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;">Collegati al sito web dbhub.io (usa le tue credenziali GitHub o quello che preferisci)</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 certificato client&quot; (è la tua identità). Che ti fornirà un file di certificato (salvalo sul tuo 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 seleziona il file di certificato appena scaricato.</li></ol><p>Ora il pannello "Remoto" mostra la tua identità e tu puoi aggiungere database remoti.</p></body></html> + + + + Local + Locale + + + + Current Database + Database Corrente + + + + Clone + Clona + + + + Branch + Ramo + + + + Commits + Commits + + + + Commits for + Commits per + + + + Delete Database + Elimina Database + + + + Delete the local clone of this database + Elimina la copia locale di questo database + + + + Open in Web Browser + Apri nel Browser Web + + + + Open the web page for the current database in your browser + Apre una pagina web per il database corrente nel tuo browser + + + + Clone from Link + Clona da 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 localmente utilizzando una URL fornita dalla pagina web del database. + + + + Refresh + Aggiorna + + + + Reload all data and update the views + Ricarica tutti i dati e aggiornal le viste + + + + 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 + Passare a Commit + + + + Download and open this specific commit + Scarica ed apre questo commit specifico + + + + Check out Latest Commit + Passare all'ultimo Commit + + + + Check out the latest commit of the current branch + Passa all'ultimo comit del ramo corrente + + + + Save Revision to File + Salva revisione su File + + + + Saves the selected revision of the database to another file + Salva la revisione selezionata del database in un altro file + + + + Upload Database + Carica Database + + + + Extend selection to first visible character in document line + + + + + Extend rectangular selection to first visible character in document line + + + + + Move to first visible character of display in document line + + + + + Extend selection to first visible character in display or document line + + + + + Move to end of document line + + + + + Extend selection to end of document line + + + + + Extend rectangular selection to end of document line + + + + + Move to end of display line + + + + + Extend selection to end of display line + + + + + Move to end of display or document line + + + + + Extend selection to end of display or document line + + + + + Move to start of document + + + + + Extend selection to start of document + + + + + Move to end of document + + + + + Extend selection to end of document + + + + + Move up one page + + + + + Extend selection up one page + + + + + Extend rectangular selection up one page + + + + + Move down one page + + + + + Extend selection down one page + + + + + Extend rectangular selection down one page + + + + + Stuttered move up one page + + + + + Stuttered extend selection up one page + + + + + Stuttered move down one page + + + + + Stuttered extend selection down one page + + + + + Delete current character + + + + + Delete previous character + + + + + Delete previous character if not at start of line + + + + + Delete word to left + + + + + Delete word to right + + + + + Delete right to end of next word + + + + + Delete line to left + + + + + Delete line to right + + + + + Delete current line + + + + + Cut current line + + + + + Copy current line + + + + + Transpose current and previous lines + + + + + Duplicate the current line + + + + + Select all + + + + + Move selected lines up one line + + + + + Move selected lines down one line + + + + + Duplicate selection + + + + + Convert selection to lower case + + + + + Convert selection to upper case + + + + + Cut selection + + + + + Copy selection + + + + + Paste + Incolla + + + + Toggle insert/overtype + + + + + Insert newline + + + + + Formfeed + + + + + Indent one level + + + + + De-indent one level + + + + + Cancel + Annulla + + + + Undo last command + + + + + Redo last command + + + + + Zoom in + + + + + Zoom out + + + + + QsciLexerCPP + + + Default + Default + + + + Inactive default + + + + + C comment + + + + + Inactive C comment + + + + + C++ comment + + + + + Inactive C++ comment + + + + + JavaDoc style C comment + + + + + Inactive JavaDoc style C comment + + + + + Number + + + + + Inactive number + + + + + Keyword + Parola chiave + + + + Inactive keyword + + + + + Double-quoted string + + + + + Inactive double-quoted string + + + + + Single-quoted string + + + + + Inactive single-quoted string + + + + + IDL UUID + + + + + Inactive IDL UUID + + + + + Pre-processor block + + + + + Inactive pre-processor block + + + + + Operator + + + + + Inactive operator + + + + + Identifier + Identificatore + + + + Inactive identifier + + + + + Unclosed string + + + + + Inactive unclosed string + + + + + C# verbatim string + + + + + Inactive C# verbatim string + + + + + JavaScript regular expression + + + + + Inactive JavaScript regular expression + + + + + JavaDoc style C++ comment + + + + + Inactive JavaDoc style C++ comment + + + + + Secondary keywords and identifiers + + + + + Inactive secondary keywords and identifiers + + + + + JavaDoc keyword + + + + + Inactive JavaDoc keyword + + + + + JavaDoc keyword error + + + + + Inactive JavaDoc keyword error + + + + + Global classes and typedefs + + + + + Inactive global classes and typedefs + + + + + C++ raw string + + + + + Inactive C++ raw string + + + + + Vala triple-quoted verbatim string + + + + + Inactive Vala triple-quoted verbatim string + + + + + Pike hash-quoted string + + + + + Inactive Pike hash-quoted string + + + + + Pre-processor C comment + + + + + Inactive pre-processor C comment + + + + + JavaDoc style pre-processor comment + + + + + Inactive JavaDoc style pre-processor comment + + + + + User-defined literal + + + + + Inactive user-defined literal + + + + + Task marker + + + + + Inactive task marker + + + + + Escape sequence + + + + + Inactive escape sequence + + + + + QsciLexerHTML + + + HTML default + + + + + Tag + + + + + Unknown tag + + + + + Attribute + + + + + Unknown attribute + + + + + HTML number + + + + + HTML double-quoted string + + + + + HTML single-quoted string + + + + + Other text in a tag + + + + + HTML comment + + + + + Entity + + + + + End of a tag + + + + + Start of an XML fragment + + + + + End of an XML fragment + + + + + Script tag + + + + + Start of an ASP fragment with @ + + + + + Start of an ASP fragment + + + + + CDATA + + + + + Start of a PHP fragment + + + + + Unquoted HTML value + + + + + ASP X-Code comment + + + + + SGML default + + + + + SGML command + + + + + First parameter of an SGML command + + + + + SGML double-quoted string + + + + + SGML single-quoted string + + + + + SGML error + + + + + SGML special entity + + + + + SGML comment + + + + + First parameter comment of an SGML command + + + + + SGML block default + + + + + Start of a JavaScript fragment + + + + + JavaScript default + + + + + JavaScript comment + + + + + JavaScript line comment + + + + + JavaDoc style JavaScript comment + + + + + JavaScript number + + + + + JavaScript word + + + + + JavaScript keyword + + + + + JavaScript double-quoted string + + + + + JavaScript single-quoted string + + + + + JavaScript symbol + + + + + JavaScript unclosed string + + + + + JavaScript regular expression + + + + + Start of an ASP JavaScript fragment + + + + + ASP JavaScript default + + + + + ASP JavaScript comment + + + + + ASP JavaScript line comment + + + + + JavaDoc style ASP JavaScript comment + + + + + ASP JavaScript number + + + + + ASP JavaScript word + + + + + ASP JavaScript keyword + + + + + ASP JavaScript double-quoted string + + + + + ASP JavaScript single-quoted string + + + + + ASP JavaScript symbol + + + + + ASP JavaScript unclosed string + + + + + ASP JavaScript regular expression + + + + + Start of a VBScript fragment + + + + + VBScript default + + + + + VBScript comment + + + + + VBScript number + + + + + VBScript keyword + + + + + VBScript string + + + + + VBScript identifier + + + + + VBScript unclosed string + + + + + Start of an ASP VBScript fragment + + + + + ASP VBScript default + + + + + ASP VBScript comment + + + + + ASP VBScript number + + + + + ASP VBScript keyword + + + + + ASP VBScript string + + + + + ASP VBScript identifier + + + + + ASP VBScript unclosed string + + + + + Start of a Python fragment + + + + + Python default + + + + + Python comment + + + + + Python number + + + + + Python double-quoted string + + + + + Python single-quoted string + + + + + Python keyword + + + + + Python triple double-quoted string + + + + + Python triple single-quoted string + + + + + Python class name + + + + + Python function or method name + + + + + Python operator + + + + + Python identifier + + + + + Start of an ASP Python fragment + + + + + ASP Python default + @@ -9437,17 +11096,17 @@ Lasciare il campo vuoto per utilizzare la codifica del database. Inserting %1 bytes - + Inserisco %1 bytes Delete %1 chars - + Elimino %1 caratteri Overwrite %1 chars - + Sovrascrivo %1 caratteri From ee578cf0cfdeb1d0bd2ea409fd6d3fd60d862dc4 Mon Sep 17 00:00:00 2001 From: mgrojo Date: Mon, 10 Jun 2024 21:23:47 +0200 Subject: [PATCH 03/67] Update translation files excluding QScintilla sources Command used is: lupdate src/*.cpp src/*.ui src/*.h -ts src/translations/*.ts See issue #3452 and discussion #3451 --- src/translations/sqlb_ar_SA.ts | 1638 +------------------- src/translations/sqlb_cs.ts | 1643 +------------------- src/translations/sqlb_de.ts | 1636 +------------------- src/translations/sqlb_en_GB.ts | 1677 -------------------- src/translations/sqlb_es_ES.ts | 1636 +------------------- src/translations/sqlb_fa.ts | 1677 -------------------- src/translations/sqlb_fr.ts | 1636 +------------------- src/translations/sqlb_id.ts | 1636 +------------------- src/translations/sqlb_it.ts | 2645 ++++---------------------------- src/translations/sqlb_ja.ts | 1636 +------------------- src/translations/sqlb_ko_KR.ts | 1642 +------------------- src/translations/sqlb_nl.ts | 1638 +------------------- src/translations/sqlb_pl.ts | 1642 +------------------- src/translations/sqlb_pt_BR.ts | 1644 +------------------- src/translations/sqlb_ro.ts | 1636 +------------------- src/translations/sqlb_ru.ts | 1648 +------------------- src/translations/sqlb_sv.ts | 1313 +--------------- src/translations/sqlb_tr.ts | 1638 +------------------- src/translations/sqlb_uk_UA.ts | 1643 +------------------- src/translations/sqlb_zh.ts | 1636 +------------------- src/translations/sqlb_zh_TW.ts | 1638 +------------------- 21 files changed, 767 insertions(+), 34411 deletions(-) diff --git a/src/translations/sqlb_ar_SA.ts b/src/translations/sqlb_ar_SA.ts index f1b6e858f..d2526e5d8 100644 --- a/src/translations/sqlb_ar_SA.ts +++ b/src/translations/sqlb_ar_SA.ts @@ -5787,1660 +5787,90 @@ Please check again. QsciCommand - - Move down one line - - - - - Extend selection down one line - - - - - Extend rectangular selection down one line - - - - - Scroll view down one line - - - - - Move up one line - - - - - Extend selection up one line - - - - - Extend rectangular selection up one line - - - - - Scroll view up one line - - - - - Scroll to start of document - - - - - Scroll to end of document - - - - - Scroll vertically to centre current line - - - - - Move down one paragraph - - - - - Extend selection down one paragraph - - - - - Move up one paragraph - - - - - Extend selection up one paragraph - - - - - Move left one character - - - - - Extend selection left one character - - - - - Extend rectangular selection left one character - - - - - Move right one character - - - - - Extend selection right one character - - - - - Extend rectangular selection right one character - - - - - Move left one word - - - - - Extend selection left one word - - - - - Move right one word - - - - - Extend selection right one word - - - - - Move to end of previous word - - - - - Extend selection to end of previous word - - - - - Move to end of next word - - - - - Extend selection to end of next word - - - - - Move left one word part - - - - - Extend selection left one word part - - - - - Move right one word part - - - - - Extend selection right one word part - - - - - Move to start of document line - - - - - Extend selection to start of document line - - - - - Extend rectangular selection to start of document line - - - - - Move to start of display line - - - - - Extend selection to start of display line - - - - - Move to start of display or document line - - - - - Extend selection to start of display or document line - - - - - Move to first visible character in document line - - - - - Extend selection to first visible character in document line - - - - - Extend rectangular selection to first visible character in document line - - - - - Move to first visible character of display in document line - - - - - Extend selection to first visible character in display or document line - - - - - Move to end of document line - - - - - Extend selection to end of document line - - - - - Extend rectangular selection to end of document line - - - - - Move to end of display line - - - - - Extend selection to end of display line - - - - - Move to end of display or document line - - - - - Extend selection to end of display or document line - - - - - Move to start of document - - - - - Extend selection to start of document - - - - - Move to end of document - - - - - Extend selection to end of document - - - - - Move up one page - - - - - Extend selection up one page - - - - - Extend rectangular selection up one page - - - - - Move down one page - - - - - Extend selection down one page - - - - - Extend rectangular selection down one page - - - - - Stuttered move up one page - - - - - Stuttered extend selection up one page - - - - - Stuttered move down one page - - - - - Stuttered extend selection down one page - - - - - Delete current character - - - - - Delete previous character - - - - - Delete previous character if not at start of line - - - - - Delete word to left - - - - - Delete word to right - - - - - Delete right to end of next word - - - - - Delete line to left - - - - - Delete line to right - - - - - Delete current line - - - - - Cut current line - - - - - Copy current line - - - - - Transpose current and previous lines - - - - - Duplicate the current line - - - - - Select all - - - - - Move selected lines up one line - - - - - Move selected lines down one line - - - - - Duplicate selection - - - - - Convert selection to lower case - - - - - Convert selection to upper case - - - - - Cut selection - - - - - Copy selection - - - - - Paste - ألصِق - - - - Toggle insert/overtype - - - - - Insert newline - - - - - Formfeed - - - - - Indent one level - - - - - De-indent one level - - - - - Cancel - ألغِ - - - - Undo last command - - - - - Redo last command - - - - - Zoom in - - - - - Zoom out - - - - - QsciLexerCPP - - - Default - المبدئي - - - - Inactive default - - - - - C comment - - - - - Inactive C comment - - - - - C++ comment - - - - - Inactive C++ comment - - - - - JavaDoc style C comment - - - - - Inactive JavaDoc style C comment - - - - - Number - - - - - Inactive number - - - - - Keyword - الكلمات المفتاحية - - - - Inactive keyword - - - - - Double-quoted string - - - - - Inactive double-quoted string - - - - - Single-quoted string - - - - - Inactive single-quoted string - - - - - IDL UUID - - - - - Inactive IDL UUID - - - - - Pre-processor block - - - - - Inactive pre-processor block - - - - - Operator - - - - - Inactive operator - - - - - Identifier - المعرّفات - - - - Inactive identifier - - - - - Unclosed string - - - - - Inactive unclosed string - - - - - C# verbatim string - - - - - Inactive C# verbatim string - - - - - JavaScript regular expression - - - - - Inactive JavaScript regular expression - - - - - JavaDoc style C++ comment - - - - - Inactive JavaDoc style C++ comment - - - - - Secondary keywords and identifiers - - - - - Inactive secondary keywords and identifiers - - - - - JavaDoc keyword - - - - - Inactive JavaDoc keyword - - - - - JavaDoc keyword error - - - - - Inactive JavaDoc keyword error - - - - - Global classes and typedefs - - - - - Inactive global classes and typedefs - - - - - C++ raw string - - - - - Inactive C++ raw string - - - - - Vala triple-quoted verbatim string - - - - - Inactive Vala triple-quoted verbatim string - - - - - Pike hash-quoted string - - - - - Inactive Pike hash-quoted string - - - - - Pre-processor C comment - - - - - Inactive pre-processor C comment - - - - - JavaDoc style pre-processor comment - - - - - Inactive JavaDoc style pre-processor comment - - - - - User-defined literal - - - - - Inactive user-defined literal - - - - - Task marker - - - - - Inactive task marker - - - - - Escape sequence - - - - - Inactive escape sequence - - - - - QsciLexerHTML - - - HTML default - - - - - Tag - - - - - Unknown tag - - - - - Attribute - - - - - Unknown attribute - - - - - HTML number - - - - - HTML double-quoted string - - - - - HTML single-quoted string - - - - - Other text in a tag - - - - - HTML comment - - - - - Entity - - - - - End of a tag - - - - - Start of an XML fragment - - - - - End of an XML fragment - - - - - Script tag - - - - - Start of an ASP fragment with @ - - - - - Start of an ASP fragment - - - - - CDATA - - - - - Start of a PHP fragment - - - - - Unquoted HTML value - - - - - ASP X-Code comment - - - - - SGML default - - - - - SGML command - - - - - First parameter of an SGML command - - - - - SGML double-quoted string - - - - - SGML single-quoted string - - - - - SGML error - - - - - SGML special entity - - - - - SGML comment - - - - - First parameter comment of an SGML command - - - - - SGML block default - - - - - Start of a JavaScript fragment - - - - - JavaScript default - - - - - JavaScript comment - - - - - JavaScript line comment - - - - - JavaDoc style JavaScript comment - - - - - JavaScript number - - - - - JavaScript word - - - - - JavaScript keyword - - - - - JavaScript double-quoted string - - - - - JavaScript single-quoted string - - - - - JavaScript symbol - - - - - JavaScript unclosed string - - - - - JavaScript regular expression - - - - - Start of an ASP JavaScript fragment - - - - - ASP JavaScript default - - - - - ASP JavaScript comment - - - - - ASP JavaScript line comment - - - - - JavaDoc style ASP JavaScript comment - - - - - ASP JavaScript number - - - - - ASP JavaScript word - - - - - ASP JavaScript keyword - - - - - ASP JavaScript double-quoted string - - - - - ASP JavaScript single-quoted string - - - - - ASP JavaScript symbol - - - - - ASP JavaScript unclosed string - - - - - ASP JavaScript regular expression - - - - - Start of a VBScript fragment - - - - - VBScript default - - - - - VBScript comment - - - - - VBScript number - - - - - VBScript keyword - - - - - VBScript string - - - - - VBScript identifier - - - - - VBScript unclosed string - - - - - Start of an ASP VBScript fragment - - - - - ASP VBScript default - - - - - ASP VBScript comment - - - - - ASP VBScript number - - - - - ASP VBScript keyword - - - - - ASP VBScript string - - - - - ASP VBScript identifier - - - - - ASP VBScript unclosed string - - - - - Start of a Python fragment - - - - - Python default - - - - - Python comment - - - - - Python number - - - - - Python double-quoted string - - - - - Python single-quoted string - - - - - Python keyword - - - - - Python triple double-quoted string - - - - - Python triple single-quoted string - - - - - Python class name - - - - - Python function or method name - - - - - Python operator - - - - - Python identifier - - - - - Start of an ASP Python fragment - - - - - ASP Python default - - - - - ASP Python comment - - - - - ASP Python number - - - - - ASP Python double-quoted string - - - - - ASP Python single-quoted string - - - - - ASP Python keyword - - - - - ASP Python triple double-quoted string - - - - - ASP Python triple single-quoted string - - - - - ASP Python class name - - - - - ASP Python function or method name - - - - - ASP Python operator - - - - - ASP Python identifier - - - - - PHP default - - - - - PHP double-quoted string - - - - - PHP single-quoted string - - - - - PHP keyword - - - - - PHP number - - - - - PHP variable - + Paste + ألصِق - - PHP comment - + Cancel + ألغِ + + + QsciLexerCPP - - PHP line comment - + Default + المبدئي - - PHP double-quoted variable - + Keyword + الكلمات المفتاحية - - PHP operator - + Identifier + المعرّفات QsciLexerJSON - Default - المبدئي + المبدئي - - Number - - - - String - السلاسل النصية - - - - Unclosed string - - - - - Property - - - - - Escape sequence - - - - - Line comment - - - - - Block comment - - - - - Operator - - - - - IRI - - - - - JSON-LD compact IRI - - - - - JSON keyword - - - - - JSON-LD keyword - - - - - Parsing error - + السلاسل النصية QsciLexerJavaScript - Regular expression - تعبير نمطي + تعبير نمطي QsciLexerPython - Default - المبدئي + المبدئي - Comment - التعليقات - - - - Number - - - - - Double-quoted string - - - - - Single-quoted string - + التعليقات - Keyword - الكلمات المفتاحية - - - - Triple single-quoted string - - - - - Triple double-quoted string - - - - - Class name - - - - - Function or method name - - - - - Operator - + الكلمات المفتاحية - Identifier - المعرّفات - - - - Comment block - - - - - Unclosed string - - - - - Highlighted identifier - - - - - Decorator - - - - - Double-quoted f-string - - - - - Single-quoted f-string - - - - - Triple single-quoted f-string - - - - - Triple double-quoted f-string - + المعرّفات QsciLexerSQL - Default - المبدئي + المبدئي - Comment - التعليقات - - - - Comment line - - - - - JavaDoc style comment - - - - - Number - + التعليقات - Keyword - الكلمات المفتاحية - - - - Double-quoted string - - - - - Single-quoted string - - - - - SQL*Plus keyword - - - - - SQL*Plus prompt - - - - - Operator - + الكلمات المفتاحية - Identifier - المعرّفات - - - - SQL*Plus comment - - - - - # comment line - - - - - JavaDoc keyword - - - - - JavaDoc keyword error - - - - - User defined 1 - - - - - User defined 2 - - - - - User defined 3 - - - - - User defined 4 - - - - - Quoted identifier - - - - - Quoted operator - + المعرّفات QsciScintilla - - &Undo - - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - Delete - - - - Select All - حدّد الكلّ + حدّد الكلّ @@ -9456,24 +7886,6 @@ Leave the field empty for using the database encoding. - - UndoStack - - - Inserting %1 bytes - - - - - Delete %1 chars - - - - - Overwrite %1 chars - - - VacuumDialog diff --git a/src/translations/sqlb_cs.ts b/src/translations/sqlb_cs.ts index 23df33c47..471f0d479 100644 --- a/src/translations/sqlb_cs.ts +++ b/src/translations/sqlb_cs.ts @@ -5708,1660 +5708,83 @@ Please check again. QsciCommand - - Move down one line - - - - - Extend selection down one line - - - - - Extend rectangular selection down one line - - - - - Scroll view down one line - - - - - Move up one line - - - - - Extend selection up one line - - - - - Extend rectangular selection up one line - - - - - Scroll view up one line - - - - - Scroll to start of document - - - - - Scroll to end of document - - - - - Scroll vertically to centre current line - - - - - Move down one paragraph - - - - - Extend selection down one paragraph - - - - - Move up one paragraph - - - - - Extend selection up one paragraph - - - - - Move left one character - - - - - Extend selection left one character - - - - - Extend rectangular selection left one character - - - - - Move right one character - - - - - Extend selection right one character - - - - - Extend rectangular selection right one character - - - - - Move left one word - - - - - Extend selection left one word - - - - - Move right one word - - - - - Extend selection right one word - - - - - Move to end of previous word - - - - - Extend selection to end of previous word - - - - - Move to end of next word - - - - - Extend selection to end of next word - - - - - Move left one word part - - - - - Extend selection left one word part - - - - - Move right one word part - - - - - Extend selection right one word part - - - - - Move to start of document line - - - - - Extend selection to start of document line - - - - - Extend rectangular selection to start of document line - - - - - Move to start of display line - - - - - Extend selection to start of display line - - - - - Move to start of display or document line - - - - - Extend selection to start of display or document line - - - - - Move to first visible character in document line - - - - - Extend selection to first visible character in document line - - - - - Extend rectangular selection to first visible character in document line - - - - - Move to first visible character of display in document line - - - - - Extend selection to first visible character in display or document line - - - - - Move to end of document line - - - - - Extend selection to end of document line - - - - - Extend rectangular selection to end of document line - - - - - Move to end of display line - - - - - Extend selection to end of display line - - - - - Move to end of display or document line - - - - - Extend selection to end of display or document line - - - - - Move to start of document - - - - - Extend selection to start of document - - - - - Move to end of document - - - - - Extend selection to end of document - - - - - Move up one page - - - - - Extend selection up one page - - - - - Extend rectangular selection up one page - - - - - Move down one page - - - - - Extend selection down one page - - - - - Extend rectangular selection down one page - - - - - Stuttered move up one page - - - - - Stuttered extend selection up one page - - - - - Stuttered move down one page - - - - - Stuttered extend selection down one page - - - - - Delete current character - - - - - Delete previous character - - - - - Delete previous character if not at start of line - - - - - Delete word to left - - - - - Delete word to right - - - - - Delete right to end of next word - - - - - Delete line to left - - - - - Delete line to right - - - - - Delete current line - - - - - Cut current line - - - - - Copy current line - - - - - Transpose current and previous lines - - - - - Duplicate the current line - - - - - Select all - - - - - Move selected lines up one line - - - - - Move selected lines down one line - - - - - Duplicate selection - - - - - Convert selection to lower case - - - - - Convert selection to upper case - - - - - Cut selection - - - - - Copy selection - - - - - Paste - Vložit - - - - Toggle insert/overtype - - - - - Insert newline - - - - - Formfeed - - - - - Indent one level - - - - - De-indent one level - - - - - Cancel - Zrušit - - - - Undo last command - - - - - Redo last command - - - - - Zoom in - - - - - Zoom out - - - - - QsciLexerCPP - - - Default - Výchozí - - - - Inactive default - - - - - C comment - - - - - Inactive C comment - - - - - C++ comment - - - - - Inactive C++ comment - - - - - JavaDoc style C comment - - - - - Inactive JavaDoc style C comment - - - - - Number - - - - - Inactive number - - - - - Keyword - Klíčové slovo - - - - Inactive keyword - - - - - Double-quoted string - - - - - Inactive double-quoted string - - - - - Single-quoted string - - - - - Inactive single-quoted string - - - - - IDL UUID - - - - - Inactive IDL UUID - - - - - Pre-processor block - - - - - Inactive pre-processor block - - - - - Operator - - - - - Inactive operator - - - - - Identifier - Identifikátor - - - - Inactive identifier - - - - - Unclosed string - - - - - Inactive unclosed string - - - - - C# verbatim string - - - - - Inactive C# verbatim string - - - - - JavaScript regular expression - - - - - Inactive JavaScript regular expression - - - - - JavaDoc style C++ comment - - - - - Inactive JavaDoc style C++ comment - - - - - Secondary keywords and identifiers - - - - - Inactive secondary keywords and identifiers - - - - - JavaDoc keyword - - - - - Inactive JavaDoc keyword - - - - - JavaDoc keyword error - - - - - Inactive JavaDoc keyword error - - - - - Global classes and typedefs - - - - - Inactive global classes and typedefs - - - - - C++ raw string - - - - - Inactive C++ raw string - - - - - Vala triple-quoted verbatim string - - - - - Inactive Vala triple-quoted verbatim string - - - - - Pike hash-quoted string - - - - - Inactive Pike hash-quoted string - - - - - Pre-processor C comment - - - - - Inactive pre-processor C comment - - - - - JavaDoc style pre-processor comment - - - - - Inactive JavaDoc style pre-processor comment - - - - - User-defined literal - - - - - Inactive user-defined literal - - - - - Task marker - - - - - Inactive task marker - - - - - Escape sequence - - - - - Inactive escape sequence - - - - - QsciLexerHTML - - - HTML default - - - - - Tag - - - - - Unknown tag - - - - - Attribute - - - - - Unknown attribute - - - - - HTML number - - - - - HTML double-quoted string - - - - - HTML single-quoted string - - - - - Other text in a tag - - - - - HTML comment - - - - - Entity - - - - - End of a tag - - - - - Start of an XML fragment - - - - - End of an XML fragment - - - - - Script tag - - - - - Start of an ASP fragment with @ - - - - - Start of an ASP fragment - - - - - CDATA - - - - - Start of a PHP fragment - - - - - Unquoted HTML value - - - - - ASP X-Code comment - - - - - SGML default - - - - - SGML command - - - - - First parameter of an SGML command - - - - - SGML double-quoted string - - - - - SGML single-quoted string - - - - - SGML error - - - - - SGML special entity - - - - - SGML comment - - - - - First parameter comment of an SGML command - - - - - SGML block default - - - - - Start of a JavaScript fragment - - - - - JavaScript default - - - - - JavaScript comment - - - - - JavaScript line comment - - - - - JavaDoc style JavaScript comment - - - - - JavaScript number - - - - - JavaScript word - - - - - JavaScript keyword - - - - - JavaScript double-quoted string - - - - - JavaScript single-quoted string - - - - - JavaScript symbol - - - - - JavaScript unclosed string - - - - - JavaScript regular expression - - - - - Start of an ASP JavaScript fragment - - - - - ASP JavaScript default - - - - - ASP JavaScript comment - - - - - ASP JavaScript line comment - - - - - JavaDoc style ASP JavaScript comment - - - - - ASP JavaScript number - - - - - ASP JavaScript word - - - - - ASP JavaScript keyword - - - - - ASP JavaScript double-quoted string - - - - - ASP JavaScript single-quoted string - - - - - ASP JavaScript symbol - - - - - ASP JavaScript unclosed string - - - - - ASP JavaScript regular expression - - - - - Start of a VBScript fragment - - - - - VBScript default - - - - - VBScript comment - - - - - VBScript number - - - - - VBScript keyword - - - - - VBScript string - - - - - VBScript identifier - - - - - VBScript unclosed string - - - - - Start of an ASP VBScript fragment - - - - - ASP VBScript default - - - - - ASP VBScript comment - - - - - ASP VBScript number - - - - - ASP VBScript keyword - - - - - ASP VBScript string - - - - - ASP VBScript identifier - - - - - ASP VBScript unclosed string - - - - - Start of a Python fragment - - - - - Python default - - - - - Python comment - - - - - Python number - - - - - Python double-quoted string - - - - - Python single-quoted string - - - - - Python keyword - - - - - Python triple double-quoted string - - - - - Python triple single-quoted string - - - - - Python class name - - - - - Python function or method name - - - - - Python operator - - - - - Python identifier - - - - - Start of an ASP Python fragment - - - - - ASP Python default - - - - - ASP Python comment - - - - - ASP Python number - - - - - ASP Python double-quoted string - - - - - ASP Python single-quoted string - - - - - ASP Python keyword - - - - - ASP Python triple double-quoted string - - - - - ASP Python triple single-quoted string - - - - - ASP Python class name - - - - - ASP Python function or method name - - - - - ASP Python operator - - - - - ASP Python identifier - - - - - PHP default - - - - - PHP double-quoted string - - - - - PHP single-quoted string - - - - - PHP keyword - - - - - PHP number - - - - - PHP variable - + Paste + Vložit - - PHP comment - + Cancel + Zrušit + + + QsciLexerCPP - - PHP line comment - + Default + Výchozí - - PHP double-quoted variable - + Keyword + Klíčové slovo - - PHP operator - + Identifier + Identifikátor QsciLexerJSON - Default - Výchozí - - - - Number - + Výchozí - String - String - - - - Unclosed string - - - - - Property - - - - - Escape sequence - - - - - Line comment - - - - - Block comment - - - - - Operator - - - - - IRI - - - - - JSON-LD compact IRI - - - - - JSON keyword - - - - - JSON-LD keyword - - - - - Parsing error - - - - - QsciLexerJavaScript - - - Regular expression - + String QsciLexerPython - Default - Výchozí + Výchozí - Comment - Komentář - - - - Number - - - - - Double-quoted string - + Komentář - - Single-quoted string - - - - Keyword - Klíčové slovo - - - - Triple single-quoted string - - - - - Triple double-quoted string - - - - - Class name - - - - - Function or method name - - - - - Operator - + Klíčové slovo - Identifier - Identifikátor - - - - Comment block - - - - - Unclosed string - - - - - Highlighted identifier - - - - - Decorator - - - - - Double-quoted f-string - - - - - Single-quoted f-string - - - - - Triple single-quoted f-string - - - - - Triple double-quoted f-string - + Identifikátor QsciLexerSQL - Default - Výchozí + Výchozí - Comment - Komentář - - - - Comment line - - - - - JavaDoc style comment - - - - - Number - + Komentář - Keyword - Klíčové slovo - - - - Double-quoted string - - - - - Single-quoted string - - - - - SQL*Plus keyword - - - - - SQL*Plus prompt - + Klíčové slovo - - Operator - - - - Identifier - Identifikátor - - - - SQL*Plus comment - - - - - # comment line - - - - - JavaDoc keyword - - - - - JavaDoc keyword error - - - - - User defined 1 - - - - - User defined 2 - - - - - User defined 3 - - - - - User defined 4 - - - - - Quoted identifier - - - - - Quoted operator - + Identifikátor QsciScintilla - - &Undo - - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - Delete - - - - Select All - Vybrat vše + Vybrat vše @@ -9347,24 +7770,6 @@ Pro použití kódování databáze ponechte pole prázdné. - - UndoStack - - - Inserting %1 bytes - - - - - Delete %1 chars - - - - - Overwrite %1 chars - - - VacuumDialog diff --git a/src/translations/sqlb_de.ts b/src/translations/sqlb_de.ts index 5a2a2f69a..22a12c4ba 100644 --- a/src/translations/sqlb_de.ts +++ b/src/translations/sqlb_de.ts @@ -5779,1660 +5779,94 @@ Bitte erneut prüfen. QsciCommand - - Move down one line - - - - - Extend selection down one line - - - - - Extend rectangular selection down one line - - - - - Scroll view down one line - - - - - Move up one line - - - - - Extend selection up one line - - - - - Extend rectangular selection up one line - - - - - Scroll view up one line - - - - - Scroll to start of document - - - - - Scroll to end of document - - - - - Scroll vertically to centre current line - - - - - Move down one paragraph - - - - - Extend selection down one paragraph - - - - - Move up one paragraph - - - - - Extend selection up one paragraph - - - - - Move left one character - - - - - Extend selection left one character - - - - - Extend rectangular selection left one character - - - - - Move right one character - - - - - Extend selection right one character - - - - - Extend rectangular selection right one character - - - - - Move left one word - - - - - Extend selection left one word - - - - - Move right one word - - - - - Extend selection right one word - - - - - Move to end of previous word - - - - - Extend selection to end of previous word - - - - - Move to end of next word - - - - - Extend selection to end of next word - - - - - Move left one word part - - - - - Extend selection left one word part - - - - - Move right one word part - - - - - Extend selection right one word part - - - - - Move to start of document line - - - - - Extend selection to start of document line - - - - - Extend rectangular selection to start of document line - - - - - Move to start of display line - - - - - Extend selection to start of display line - - - - - Move to start of display or document line - - - - - Extend selection to start of display or document line - - - - - Move to first visible character in document line - - - - - Extend selection to first visible character in document line - - - - - Extend rectangular selection to first visible character in document line - - - - - Move to first visible character of display in document line - - - - - Extend selection to first visible character in display or document line - - - - - Move to end of document line - - - - - Extend selection to end of document line - - - - - Extend rectangular selection to end of document line - - - - - Move to end of display line - - - - - Extend selection to end of display line - - - - - Move to end of display or document line - - - - - Extend selection to end of display or document line - - - - - Move to start of document - - - - - Extend selection to start of document - - - - - Move to end of document - - - - - Extend selection to end of document - - - - - Move up one page - - - - - Extend selection up one page - - - - - Extend rectangular selection up one page - - - - - Move down one page - - - - - Extend selection down one page - - - - - Extend rectangular selection down one page - - - - - Stuttered move up one page - - - - - Stuttered extend selection up one page - - - - - Stuttered move down one page - - - - - Stuttered extend selection down one page - - - - - Delete current character - - - - - Delete previous character - - - - - Delete previous character if not at start of line - - - - - Delete word to left - - - - - Delete word to right - - - - - Delete right to end of next word - - - - - Delete line to left - - - - - Delete line to right - - - - - Delete current line - - - - - Cut current line - - - - - Copy current line - - - - - Transpose current and previous lines - - - - - Duplicate the current line - - - - - Select all - - - - - Move selected lines up one line - - - - - Move selected lines down one line - - - - - Duplicate selection - - - - - Convert selection to lower case - - - - - Convert selection to upper case - - - - - Cut selection - - - - - Copy selection - - - - - Paste - Einfügen - - - - Toggle insert/overtype - - - - - Insert newline - - - - - Formfeed - - - - - Indent one level - - - - - De-indent one level - - - - - Cancel - Abbrechen - - - - Undo last command - - - - - Redo last command - - - - - Zoom in - - - - - Zoom out - - - - - QsciLexerCPP - - - Default - Voreinstellung - - - - Inactive default - - - - - C comment - - - - - Inactive C comment - - - - - C++ comment - - - - - Inactive C++ comment - - - - - JavaDoc style C comment - - - - - Inactive JavaDoc style C comment - - - - - Number - - - - - Inactive number - - - - - Keyword - Schlüsselwort - - - - Inactive keyword - - - - - Double-quoted string - - - - - Inactive double-quoted string - - - - - Single-quoted string - - - - - Inactive single-quoted string - - - - - IDL UUID - - - - - Inactive IDL UUID - - - - - Pre-processor block - - - - - Inactive pre-processor block - - - - - Operator - - - - - Inactive operator - - - - - Identifier - Bezeichner - - - - Inactive identifier - - - - - Unclosed string - - - - - Inactive unclosed string - - - - - C# verbatim string - - - - - Inactive C# verbatim string - - - - - JavaScript regular expression - - - - - Inactive JavaScript regular expression - - - - - JavaDoc style C++ comment - - - - - Inactive JavaDoc style C++ comment - - - - - Secondary keywords and identifiers - - - - - Inactive secondary keywords and identifiers - - - - - JavaDoc keyword - - - - - Inactive JavaDoc keyword - - - - - JavaDoc keyword error - - - - - Inactive JavaDoc keyword error - - - - - Global classes and typedefs - - - - - Inactive global classes and typedefs - - - - - C++ raw string - - - - - Inactive C++ raw string - - - - - Vala triple-quoted verbatim string - - - - - Inactive Vala triple-quoted verbatim string - - - - - Pike hash-quoted string - - - - - Inactive Pike hash-quoted string - - - - - Pre-processor C comment - - - - - Inactive pre-processor C comment - - - - - JavaDoc style pre-processor comment - - - - - Inactive JavaDoc style pre-processor comment - - - - - User-defined literal - - - - - Inactive user-defined literal - - - - - Task marker - - - - - Inactive task marker - - - - - Escape sequence - - - - - Inactive escape sequence - - - - - QsciLexerHTML - - - HTML default - - - - - Tag - - - - - Unknown tag - - - - - Attribute - - - - - Unknown attribute - - - - - HTML number - - - - - HTML double-quoted string - - - - - HTML single-quoted string - - - - - Other text in a tag - - - - - HTML comment - - - - - Entity - - - - - End of a tag - - - - - Start of an XML fragment - - - - - End of an XML fragment - - - - - Script tag - - - - - Start of an ASP fragment with @ - - - - - Start of an ASP fragment - - - - - CDATA - - - - - Start of a PHP fragment - - - - - Unquoted HTML value - - - - - ASP X-Code comment - - - - - SGML default - - - - - SGML command - - - - - First parameter of an SGML command - - - - - SGML double-quoted string - - - - - SGML single-quoted string - - - - - SGML error - - - - - SGML special entity - - - - - SGML comment - - - - - First parameter comment of an SGML command - - - - - SGML block default - - - - - Start of a JavaScript fragment - - - - - JavaScript default - - - - - JavaScript comment - - - - - JavaScript line comment - - - - - JavaDoc style JavaScript comment - - - - - JavaScript number - - - - - JavaScript word - - - - - JavaScript keyword - - - - - JavaScript double-quoted string - - - - - JavaScript single-quoted string - - - - - JavaScript symbol - - - - - JavaScript unclosed string - - - - - JavaScript regular expression - - - - - Start of an ASP JavaScript fragment - - - - - ASP JavaScript default - - - - - ASP JavaScript comment - - - - - ASP JavaScript line comment - - - - - JavaDoc style ASP JavaScript comment - - - - - ASP JavaScript number - - - - - ASP JavaScript word - - - - - ASP JavaScript keyword - - - - - ASP JavaScript double-quoted string - - - - - ASP JavaScript single-quoted string - - - - - ASP JavaScript symbol - - - - - ASP JavaScript unclosed string - - - - - ASP JavaScript regular expression - - - - - Start of a VBScript fragment - - - - - VBScript default - - - - - VBScript comment - - - - - VBScript number - - - - - VBScript keyword - - - - - VBScript string - - - - - VBScript identifier - - - - - VBScript unclosed string - - - - - Start of an ASP VBScript fragment - - - - - ASP VBScript default - - - - - ASP VBScript comment - - - - - ASP VBScript number - - - - - ASP VBScript keyword - - - - - ASP VBScript string - - - - - ASP VBScript identifier - - - - - ASP VBScript unclosed string - - - - - Start of a Python fragment - - - - - Python default - - - - - Python comment - - - - - Python number - - - - - Python double-quoted string - - - - - Python single-quoted string - - - - - Python keyword - - - - - Python triple double-quoted string - - - - - Python triple single-quoted string - - - - - Python class name - - - - - Python function or method name - - - - - Python operator - - - - - Python identifier - - - - - Start of an ASP Python fragment - - - - - ASP Python default - - - - - ASP Python comment - - - - - ASP Python number - - - - - ASP Python double-quoted string - - - - - ASP Python single-quoted string - - - - - ASP Python keyword - - - - - ASP Python triple double-quoted string - - - - - ASP Python triple single-quoted string - - - - - ASP Python class name - - - - - ASP Python function or method name - - - - - ASP Python operator - - - - - ASP Python identifier - - - - - PHP default - - - - - PHP double-quoted string - - - - - PHP single-quoted string - - - - - PHP keyword - - - - - PHP number - - - - - PHP variable - + Paste + Einfügen - - PHP comment - + Cancel + Abbrechen + + + QsciLexerCPP - - PHP line comment - + Default + Voreinstellung - - PHP double-quoted variable - + Keyword + Schlüsselwort - - PHP operator - + Identifier + Bezeichner QsciLexerJSON - Default - Voreinstellung + Voreinstellung - - Number - - - - String - String - - - - Unclosed string - - - - - Property - - - - - Escape sequence - - - - - Line comment - - - - - Block comment - - - - - Operator - - - - - IRI - - - - - JSON-LD compact IRI - - - - - JSON keyword - - - - - JSON-LD keyword - - - - - Parsing error - + String QsciLexerJavaScript - Regular expression - Regulärer Ausdruck + Regulärer Ausdruck QsciLexerPython - Default - Voreinstellung + Voreinstellung - Comment - Kommentar + Kommentar - - Number - - - - - Double-quoted string - - - - - Single-quoted string - - - - Keyword - Schlüsselwort - - - - Triple single-quoted string - - - - - Triple double-quoted string - - - - - Class name - - - - - Function or method name - - - - - Operator - + Schlüsselwort - Identifier - Bezeichner - - - - Comment block - - - - - Unclosed string - - - - - Highlighted identifier - - - - - Decorator - - - - - Double-quoted f-string - - - - - Single-quoted f-string - - - - - Triple single-quoted f-string - - - - - Triple double-quoted f-string - + Bezeichner QsciLexerSQL - Default - Voreinstellung + Voreinstellung - Comment - Kommentar + Kommentar - - Comment line - - - - - JavaDoc style comment - - - - - Number - - - - Keyword - Schlüsselwort - - - - Double-quoted string - - - - - Single-quoted string - - - - - SQL*Plus keyword - - - - - SQL*Plus prompt - - - - - Operator - + Schlüsselwort - Identifier - Bezeichner - - - - SQL*Plus comment - - - - - # comment line - - - - - JavaDoc keyword - - - - - JavaDoc keyword error - - - - - User defined 1 - - - - - User defined 2 - - - - - User defined 3 - - - - - User defined 4 - - - - - Quoted identifier - - - - - Quoted operator - + Bezeichner QsciScintilla - &Undo - &Zurücksetzen - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - Delete - + &Zurücksetzen - Select All - Alle auswählen + Alle auswählen @@ -9432,24 +7866,6 @@ Lassen Sie das Feld leer, um die Datenbank-Codierung zu verwenden. Einen neuen Namen für den Datenbrowser setzen. Das Zeichen '&&' verwenden, um das folgende Zeichen als Shortcut zu verwenden. - - UndoStack - - - Inserting %1 bytes - - - - - Delete %1 chars - - - - - Overwrite %1 chars - - - VacuumDialog diff --git a/src/translations/sqlb_en_GB.ts b/src/translations/sqlb_en_GB.ts index 6f708a1a0..f347aac64 100644 --- a/src/translations/sqlb_en_GB.ts +++ b/src/translations/sqlb_en_GB.ts @@ -5698,1665 +5698,6 @@ Please check again. - - QsciCommand - - - Move down one line - - - - - Extend selection down one line - - - - - Extend rectangular selection down one line - - - - - Scroll view down one line - - - - - Move up one line - - - - - Extend selection up one line - - - - - Extend rectangular selection up one line - - - - - Scroll view up one line - - - - - Scroll to start of document - - - - - Scroll to end of document - - - - - Scroll vertically to centre current line - - - - - Move down one paragraph - - - - - Extend selection down one paragraph - - - - - Move up one paragraph - - - - - Extend selection up one paragraph - - - - - Move left one character - - - - - Extend selection left one character - - - - - Extend rectangular selection left one character - - - - - Move right one character - - - - - Extend selection right one character - - - - - Extend rectangular selection right one character - - - - - Move left one word - - - - - Extend selection left one word - - - - - Move right one word - - - - - Extend selection right one word - - - - - Move to end of previous word - - - - - Extend selection to end of previous word - - - - - Move to end of next word - - - - - Extend selection to end of next word - - - - - Move left one word part - - - - - Extend selection left one word part - - - - - Move right one word part - - - - - Extend selection right one word part - - - - - Move to start of document line - - - - - Extend selection to start of document line - - - - - Extend rectangular selection to start of document line - - - - - Move to start of display line - - - - - Extend selection to start of display line - - - - - Move to start of display or document line - - - - - Extend selection to start of display or document line - - - - - Move to first visible character in document line - - - - - Extend selection to first visible character in document line - - - - - Extend rectangular selection to first visible character in document line - - - - - Move to first visible character of display in document line - - - - - Extend selection to first visible character in display or document line - - - - - Move to end of document line - - - - - Extend selection to end of document line - - - - - Extend rectangular selection to end of document line - - - - - Move to end of display line - - - - - Extend selection to end of display line - - - - - Move to end of display or document line - - - - - Extend selection to end of display or document line - - - - - Move to start of document - - - - - Extend selection to start of document - - - - - Move to end of document - - - - - Extend selection to end of document - - - - - Move up one page - - - - - Extend selection up one page - - - - - Extend rectangular selection up one page - - - - - Move down one page - - - - - Extend selection down one page - - - - - Extend rectangular selection down one page - - - - - Stuttered move up one page - - - - - Stuttered extend selection up one page - - - - - Stuttered move down one page - - - - - Stuttered extend selection down one page - - - - - Delete current character - - - - - Delete previous character - - - - - Delete previous character if not at start of line - - - - - Delete word to left - - - - - Delete word to right - - - - - Delete right to end of next word - - - - - Delete line to left - - - - - Delete line to right - - - - - Delete current line - - - - - Cut current line - - - - - Copy current line - - - - - Transpose current and previous lines - - - - - Duplicate the current line - - - - - Select all - - - - - Move selected lines up one line - - - - - Move selected lines down one line - - - - - Duplicate selection - - - - - Convert selection to lower case - - - - - Convert selection to upper case - - - - - Cut selection - - - - - Copy selection - - - - - Paste - - - - - Toggle insert/overtype - - - - - Insert newline - - - - - Formfeed - - - - - Indent one level - - - - - De-indent one level - - - - - Cancel - - - - - Undo last command - - - - - Redo last command - - - - - Zoom in - - - - - Zoom out - - - - - QsciLexerCPP - - - Default - - - - - Inactive default - - - - - C comment - - - - - Inactive C comment - - - - - C++ comment - - - - - Inactive C++ comment - - - - - JavaDoc style C comment - - - - - Inactive JavaDoc style C comment - - - - - Number - - - - - Inactive number - - - - - Keyword - - - - - Inactive keyword - - - - - Double-quoted string - - - - - Inactive double-quoted string - - - - - Single-quoted string - - - - - Inactive single-quoted string - - - - - IDL UUID - - - - - Inactive IDL UUID - - - - - Pre-processor block - - - - - Inactive pre-processor block - - - - - Operator - - - - - Inactive operator - - - - - Identifier - - - - - Inactive identifier - - - - - Unclosed string - - - - - Inactive unclosed string - - - - - C# verbatim string - - - - - Inactive C# verbatim string - - - - - JavaScript regular expression - - - - - Inactive JavaScript regular expression - - - - - JavaDoc style C++ comment - - - - - Inactive JavaDoc style C++ comment - - - - - Secondary keywords and identifiers - - - - - Inactive secondary keywords and identifiers - - - - - JavaDoc keyword - - - - - Inactive JavaDoc keyword - - - - - JavaDoc keyword error - - - - - Inactive JavaDoc keyword error - - - - - Global classes and typedefs - - - - - Inactive global classes and typedefs - - - - - C++ raw string - - - - - Inactive C++ raw string - - - - - Vala triple-quoted verbatim string - - - - - Inactive Vala triple-quoted verbatim string - - - - - Pike hash-quoted string - - - - - Inactive Pike hash-quoted string - - - - - Pre-processor C comment - - - - - Inactive pre-processor C comment - - - - - JavaDoc style pre-processor comment - - - - - Inactive JavaDoc style pre-processor comment - - - - - User-defined literal - - - - - Inactive user-defined literal - - - - - Task marker - - - - - Inactive task marker - - - - - Escape sequence - - - - - Inactive escape sequence - - - - - QsciLexerHTML - - - HTML default - - - - - Tag - - - - - Unknown tag - - - - - Attribute - - - - - Unknown attribute - - - - - HTML number - - - - - HTML double-quoted string - - - - - HTML single-quoted string - - - - - Other text in a tag - - - - - HTML comment - - - - - Entity - - - - - End of a tag - - - - - Start of an XML fragment - - - - - End of an XML fragment - - - - - Script tag - - - - - Start of an ASP fragment with @ - - - - - Start of an ASP fragment - - - - - CDATA - - - - - Start of a PHP fragment - - - - - Unquoted HTML value - - - - - ASP X-Code comment - - - - - SGML default - - - - - SGML command - - - - - First parameter of an SGML command - - - - - SGML double-quoted string - - - - - SGML single-quoted string - - - - - SGML error - - - - - SGML special entity - - - - - SGML comment - - - - - First parameter comment of an SGML command - - - - - SGML block default - - - - - Start of a JavaScript fragment - - - - - JavaScript default - - - - - JavaScript comment - - - - - JavaScript line comment - - - - - JavaDoc style JavaScript comment - - - - - JavaScript number - - - - - JavaScript word - - - - - JavaScript keyword - - - - - JavaScript double-quoted string - - - - - JavaScript single-quoted string - - - - - JavaScript symbol - - - - - JavaScript unclosed string - - - - - JavaScript regular expression - - - - - Start of an ASP JavaScript fragment - - - - - ASP JavaScript default - - - - - ASP JavaScript comment - - - - - ASP JavaScript line comment - - - - - JavaDoc style ASP JavaScript comment - - - - - ASP JavaScript number - - - - - ASP JavaScript word - - - - - ASP JavaScript keyword - - - - - ASP JavaScript double-quoted string - - - - - ASP JavaScript single-quoted string - - - - - ASP JavaScript symbol - - - - - ASP JavaScript unclosed string - - - - - ASP JavaScript regular expression - - - - - Start of a VBScript fragment - - - - - VBScript default - - - - - VBScript comment - - - - - VBScript number - - - - - VBScript keyword - - - - - VBScript string - - - - - VBScript identifier - - - - - VBScript unclosed string - - - - - Start of an ASP VBScript fragment - - - - - ASP VBScript default - - - - - ASP VBScript comment - - - - - ASP VBScript number - - - - - ASP VBScript keyword - - - - - ASP VBScript string - - - - - ASP VBScript identifier - - - - - ASP VBScript unclosed string - - - - - Start of a Python fragment - - - - - Python default - - - - - Python comment - - - - - Python number - - - - - Python double-quoted string - - - - - Python single-quoted string - - - - - Python keyword - - - - - Python triple double-quoted string - - - - - Python triple single-quoted string - - - - - Python class name - - - - - Python function or method name - - - - - Python operator - - - - - Python identifier - - - - - Start of an ASP Python fragment - - - - - ASP Python default - - - - - ASP Python comment - - - - - ASP Python number - - - - - ASP Python double-quoted string - - - - - ASP Python single-quoted string - - - - - ASP Python keyword - - - - - ASP Python triple double-quoted string - - - - - ASP Python triple single-quoted string - - - - - ASP Python class name - - - - - ASP Python function or method name - - - - - ASP Python operator - - - - - ASP Python identifier - - - - - PHP default - - - - - PHP double-quoted string - - - - - PHP single-quoted string - - - - - PHP keyword - - - - - PHP number - - - - - PHP variable - - - - - PHP comment - - - - - PHP line comment - - - - - PHP double-quoted variable - - - - - PHP operator - - - - - QsciLexerJSON - - - Default - - - - - Number - - - - - String - - - - - Unclosed string - - - - - Property - - - - - Escape sequence - - - - - Line comment - - - - - Block comment - - - - - Operator - - - - - IRI - - - - - JSON-LD compact IRI - - - - - JSON keyword - - - - - JSON-LD keyword - - - - - Parsing error - - - - - QsciLexerJavaScript - - - Regular expression - - - - - QsciLexerPython - - - Default - - - - - Comment - - - - - Number - - - - - Double-quoted string - - - - - Single-quoted string - - - - - Keyword - - - - - Triple single-quoted string - - - - - Triple double-quoted string - - - - - Class name - - - - - Function or method name - - - - - Operator - - - - - Identifier - - - - - Comment block - - - - - Unclosed string - - - - - Highlighted identifier - - - - - Decorator - - - - - Double-quoted f-string - - - - - Single-quoted f-string - - - - - Triple single-quoted f-string - - - - - Triple double-quoted f-string - - - - - QsciLexerSQL - - - Default - - - - - Comment - - - - - Comment line - - - - - JavaDoc style comment - - - - - Number - - - - - Keyword - - - - - Double-quoted string - - - - - Single-quoted string - - - - - SQL*Plus keyword - - - - - SQL*Plus prompt - - - - - Operator - - - - - Identifier - - - - - SQL*Plus comment - - - - - # comment line - - - - - JavaDoc keyword - - - - - JavaDoc keyword error - - - - - User defined 1 - - - - - User defined 2 - - - - - User defined 3 - - - - - User defined 4 - - - - - Quoted identifier - - - - - Quoted operator - - - - - QsciScintilla - - - &Undo - - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - Delete - - - - - Select All - - - RemoteCommitsModel @@ -9333,24 +7674,6 @@ Leave the field empty for using the database encoding. - - UndoStack - - - Inserting %1 bytes - - - - - Delete %1 chars - - - - - Overwrite %1 chars - - - VacuumDialog diff --git a/src/translations/sqlb_es_ES.ts b/src/translations/sqlb_es_ES.ts index 0a495bd1e..e436ffaec 100644 --- a/src/translations/sqlb_es_ES.ts +++ b/src/translations/sqlb_es_ES.ts @@ -5793,1660 +5793,94 @@ Por favor compruebe que es correcto. QsciCommand - - Move down one line - - - - - Extend selection down one line - - - - - Extend rectangular selection down one line - - - - - Scroll view down one line - - - - - Move up one line - - - - - Extend selection up one line - - - - - Extend rectangular selection up one line - - - - - Scroll view up one line - - - - - Scroll to start of document - - - - - Scroll to end of document - - - - - Scroll vertically to centre current line - - - - - Move down one paragraph - - - - - Extend selection down one paragraph - - - - - Move up one paragraph - - - - - Extend selection up one paragraph - - - - - Move left one character - - - - - Extend selection left one character - - - - - Extend rectangular selection left one character - - - - - Move right one character - - - - - Extend selection right one character - - - - - Extend rectangular selection right one character - - - - - Move left one word - - - - - Extend selection left one word - - - - - Move right one word - - - - - Extend selection right one word - - - - - Move to end of previous word - - - - - Extend selection to end of previous word - - - - - Move to end of next word - - - - - Extend selection to end of next word - - - - - Move left one word part - - - - - Extend selection left one word part - - - - - Move right one word part - - - - - Extend selection right one word part - - - - - Move to start of document line - - - - - Extend selection to start of document line - - - - - Extend rectangular selection to start of document line - - - - - Move to start of display line - - - - - Extend selection to start of display line - - - - - Move to start of display or document line - - - - - Extend selection to start of display or document line - - - - - Move to first visible character in document line - - - - - Extend selection to first visible character in document line - - - - - Extend rectangular selection to first visible character in document line - - - - - Move to first visible character of display in document line - - - - - Extend selection to first visible character in display or document line - - - - - Move to end of document line - - - - - Extend selection to end of document line - - - - - Extend rectangular selection to end of document line - - - - - Move to end of display line - - - - - Extend selection to end of display line - - - - - Move to end of display or document line - - - - - Extend selection to end of display or document line - - - - - Move to start of document - - - - - Extend selection to start of document - - - - - Move to end of document - - - - - Extend selection to end of document - - - - - Move up one page - - - - - Extend selection up one page - - - - - Extend rectangular selection up one page - - - - - Move down one page - - - - - Extend selection down one page - - - - - Extend rectangular selection down one page - - - - - Stuttered move up one page - - - - - Stuttered extend selection up one page - - - - - Stuttered move down one page - - - - - Stuttered extend selection down one page - - - - - Delete current character - - - - - Delete previous character - - - - - Delete previous character if not at start of line - - - - - Delete word to left - - - - - Delete word to right - - - - - Delete right to end of next word - - - - - Delete line to left - - - - - Delete line to right - - - - - Delete current line - - - - - Cut current line - - - - - Copy current line - - - - - Transpose current and previous lines - - - - - Duplicate the current line - - - - - Select all - - - - - Move selected lines up one line - - - - - Move selected lines down one line - - - - - Duplicate selection - - - - - Convert selection to lower case - - - - - Convert selection to upper case - - - - - Cut selection - - - - - Copy selection - - - - - Paste - Pegar - - - - Toggle insert/overtype - - - - - Insert newline - - - - - Formfeed - - - - - Indent one level - - - - - De-indent one level - - - - - Cancel - Cancelar - - - - Undo last command - - - - - Redo last command - - - - - Zoom in - - - - - Zoom out - - - - - QsciLexerCPP - - - Default - Por defecto - - - - Inactive default - - - - - C comment - - - - - Inactive C comment - - - - - C++ comment - - - - - Inactive C++ comment - - - - - JavaDoc style C comment - - - - - Inactive JavaDoc style C comment - - - - - Number - - - - - Inactive number - - - - - Keyword - Palabra clave - - - - Inactive keyword - - - - - Double-quoted string - - - - - Inactive double-quoted string - - - - - Single-quoted string - - - - - Inactive single-quoted string - - - - - IDL UUID - - - - - Inactive IDL UUID - - - - - Pre-processor block - - - - - Inactive pre-processor block - - - - - Operator - - - - - Inactive operator - - - - - Identifier - Identificador - - - - Inactive identifier - - - - - Unclosed string - - - - - Inactive unclosed string - - - - - C# verbatim string - - - - - Inactive C# verbatim string - - - - - JavaScript regular expression - - - - - Inactive JavaScript regular expression - - - - - JavaDoc style C++ comment - - - - - Inactive JavaDoc style C++ comment - - - - - Secondary keywords and identifiers - - - - - Inactive secondary keywords and identifiers - - - - - JavaDoc keyword - - - - - Inactive JavaDoc keyword - - - - - JavaDoc keyword error - - - - - Inactive JavaDoc keyword error - - - - - Global classes and typedefs - - - - - Inactive global classes and typedefs - - - - - C++ raw string - - - - - Inactive C++ raw string - - - - - Vala triple-quoted verbatim string - - - - - Inactive Vala triple-quoted verbatim string - - - - - Pike hash-quoted string - - - - - Inactive Pike hash-quoted string - - - - - Pre-processor C comment - - - - - Inactive pre-processor C comment - - - - - JavaDoc style pre-processor comment - - - - - Inactive JavaDoc style pre-processor comment - - - - - User-defined literal - - - - - Inactive user-defined literal - - - - - Task marker - - - - - Inactive task marker - - - - - Escape sequence - - - - - Inactive escape sequence - - - - - QsciLexerHTML - - - HTML default - - - - - Tag - - - - - Unknown tag - - - - - Attribute - - - - - Unknown attribute - - - - - HTML number - - - - - HTML double-quoted string - - - - - HTML single-quoted string - - - - - Other text in a tag - - - - - HTML comment - - - - - Entity - - - - - End of a tag - - - - - Start of an XML fragment - - - - - End of an XML fragment - - - - - Script tag - - - - - Start of an ASP fragment with @ - - - - - Start of an ASP fragment - - - - - CDATA - - - - - Start of a PHP fragment - - - - - Unquoted HTML value - - - - - ASP X-Code comment - - - - - SGML default - - - - - SGML command - - - - - First parameter of an SGML command - - - - - SGML double-quoted string - - - - - SGML single-quoted string - - - - - SGML error - - - - - SGML special entity - - - - - SGML comment - - - - - First parameter comment of an SGML command - - - - - SGML block default - - - - - Start of a JavaScript fragment - - - - - JavaScript default - - - - - JavaScript comment - - - - - JavaScript line comment - - - - - JavaDoc style JavaScript comment - - - - - JavaScript number - - - - - JavaScript word - - - - - JavaScript keyword - - - - - JavaScript double-quoted string - - - - - JavaScript single-quoted string - - - - - JavaScript symbol - - - - - JavaScript unclosed string - - - - - JavaScript regular expression - - - - - Start of an ASP JavaScript fragment - - - - - ASP JavaScript default - - - - - ASP JavaScript comment - - - - - ASP JavaScript line comment - - - - - JavaDoc style ASP JavaScript comment - - - - - ASP JavaScript number - - - - - ASP JavaScript word - - - - - ASP JavaScript keyword - - - - - ASP JavaScript double-quoted string - - - - - ASP JavaScript single-quoted string - - - - - ASP JavaScript symbol - - - - - ASP JavaScript unclosed string - - - - - ASP JavaScript regular expression - - - - - Start of a VBScript fragment - - - - - VBScript default - - - - - VBScript comment - - - - - VBScript number - - - - - VBScript keyword - - - - - VBScript string - - - - - VBScript identifier - - - - - VBScript unclosed string - - - - - Start of an ASP VBScript fragment - - - - - ASP VBScript default - - - - - ASP VBScript comment - - - - - ASP VBScript number - - - - - ASP VBScript keyword - - - - - ASP VBScript string - - - - - ASP VBScript identifier - - - - - ASP VBScript unclosed string - - - - - Start of a Python fragment - - - - - Python default - - - - - Python comment - - - - - Python number - - - - - Python double-quoted string - - - - - Python single-quoted string - - - - - Python keyword - - - - - Python triple double-quoted string - - - - - Python triple single-quoted string - - - - - Python class name - - - - - Python function or method name - - - - - Python operator - - - - - Python identifier - - - - - Start of an ASP Python fragment - - - - - ASP Python default - - - - - ASP Python comment - - - - - ASP Python number - - - - - ASP Python double-quoted string - - - - - ASP Python single-quoted string - - - - - ASP Python keyword - - - - - ASP Python triple double-quoted string - - - - - ASP Python triple single-quoted string - - - - - ASP Python class name - - - - - ASP Python function or method name - - - - - ASP Python operator - - - - - ASP Python identifier - - - - - PHP default - - - - - PHP double-quoted string - - - - - PHP single-quoted string - - - - - PHP keyword - - - - - PHP number - - - - - PHP variable - + Paste + Pegar - - PHP comment - + Cancel + Cancelar + + + QsciLexerCPP - - PHP line comment - + Default + Por defecto - - PHP double-quoted variable - + Keyword + Palabra clave - - PHP operator - + Identifier + Identificador QsciLexerJSON - Default - Por defecto + Por defecto - - Number - - - - String - Cadena - - - - Unclosed string - - - - - Property - - - - - Escape sequence - - - - - Line comment - - - - - Block comment - - - - - Operator - - - - - IRI - - - - - JSON-LD compact IRI - - - - - JSON keyword - - - - - JSON-LD keyword - - - - - Parsing error - + Cadena QsciLexerJavaScript - Regular expression - Expresión regular + Expresión regular QsciLexerPython - Default - Por defecto + Por defecto - Comment - Comentario + Comentario - - Number - - - - - Double-quoted string - - - - - Single-quoted string - - - - Keyword - Palabra clave - - - - Triple single-quoted string - - - - - Triple double-quoted string - - - - - Class name - - - - - Function or method name - - - - - Operator - + Palabra clave - Identifier - Identificador - - - - Comment block - - - - - Unclosed string - - - - - Highlighted identifier - - - - - Decorator - - - - - Double-quoted f-string - - - - - Single-quoted f-string - - - - - Triple single-quoted f-string - - - - - Triple double-quoted f-string - + Identificador QsciLexerSQL - Default - Por defecto + Por defecto - Comment - Comentario + Comentario - - Comment line - - - - - JavaDoc style comment - - - - - Number - - - - Keyword - Palabra clave - - - - Double-quoted string - - - - - Single-quoted string - - - - - SQL*Plus keyword - - - - - SQL*Plus prompt - - - - - Operator - + Palabra clave - Identifier - Identificador - - - - SQL*Plus comment - - - - - # comment line - - - - - JavaDoc keyword - - - - - JavaDoc keyword error - - - - - User defined 1 - - - - - User defined 2 - - - - - User defined 3 - - - - - User defined 4 - - - - - Quoted identifier - - - - - Quoted operator - + Identificador QsciScintilla - &Undo - &Deshacer - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - Delete - + &Deshacer - Select All - Seleccionar Todo + Seleccionar Todo @@ -9446,24 +7880,6 @@ Deje este campo vacío para usar la codificación de la base de datos.Pone un nuevo nombre a la hoja de datos. Use el carácter «&&» para que el carácter siguiente se use como atajo de teclado. - - UndoStack - - - Inserting %1 bytes - - - - - Delete %1 chars - - - - - Overwrite %1 chars - - - VacuumDialog diff --git a/src/translations/sqlb_fa.ts b/src/translations/sqlb_fa.ts index 858e4df5d..611811f8a 100644 --- a/src/translations/sqlb_fa.ts +++ b/src/translations/sqlb_fa.ts @@ -5694,1665 +5694,6 @@ Please check again. - - QsciCommand - - - Move down one line - - - - - Extend selection down one line - - - - - Extend rectangular selection down one line - - - - - Scroll view down one line - - - - - Move up one line - - - - - Extend selection up one line - - - - - Extend rectangular selection up one line - - - - - Scroll view up one line - - - - - Scroll to start of document - - - - - Scroll to end of document - - - - - Scroll vertically to centre current line - - - - - Move down one paragraph - - - - - Extend selection down one paragraph - - - - - Move up one paragraph - - - - - Extend selection up one paragraph - - - - - Move left one character - - - - - Extend selection left one character - - - - - Extend rectangular selection left one character - - - - - Move right one character - - - - - Extend selection right one character - - - - - Extend rectangular selection right one character - - - - - Move left one word - - - - - Extend selection left one word - - - - - Move right one word - - - - - Extend selection right one word - - - - - Move to end of previous word - - - - - Extend selection to end of previous word - - - - - Move to end of next word - - - - - Extend selection to end of next word - - - - - Move left one word part - - - - - Extend selection left one word part - - - - - Move right one word part - - - - - Extend selection right one word part - - - - - Move to start of document line - - - - - Extend selection to start of document line - - - - - Extend rectangular selection to start of document line - - - - - Move to start of display line - - - - - Extend selection to start of display line - - - - - Move to start of display or document line - - - - - Extend selection to start of display or document line - - - - - Move to first visible character in document line - - - - - Extend selection to first visible character in document line - - - - - Extend rectangular selection to first visible character in document line - - - - - Move to first visible character of display in document line - - - - - Extend selection to first visible character in display or document line - - - - - Move to end of document line - - - - - Extend selection to end of document line - - - - - Extend rectangular selection to end of document line - - - - - Move to end of display line - - - - - Extend selection to end of display line - - - - - Move to end of display or document line - - - - - Extend selection to end of display or document line - - - - - Move to start of document - - - - - Extend selection to start of document - - - - - Move to end of document - - - - - Extend selection to end of document - - - - - Move up one page - - - - - Extend selection up one page - - - - - Extend rectangular selection up one page - - - - - Move down one page - - - - - Extend selection down one page - - - - - Extend rectangular selection down one page - - - - - Stuttered move up one page - - - - - Stuttered extend selection up one page - - - - - Stuttered move down one page - - - - - Stuttered extend selection down one page - - - - - Delete current character - - - - - Delete previous character - - - - - Delete previous character if not at start of line - - - - - Delete word to left - - - - - Delete word to right - - - - - Delete right to end of next word - - - - - Delete line to left - - - - - Delete line to right - - - - - Delete current line - - - - - Cut current line - - - - - Copy current line - - - - - Transpose current and previous lines - - - - - Duplicate the current line - - - - - Select all - - - - - Move selected lines up one line - - - - - Move selected lines down one line - - - - - Duplicate selection - - - - - Convert selection to lower case - - - - - Convert selection to upper case - - - - - Cut selection - - - - - Copy selection - - - - - Paste - - - - - Toggle insert/overtype - - - - - Insert newline - - - - - Formfeed - - - - - Indent one level - - - - - De-indent one level - - - - - Cancel - - - - - Undo last command - - - - - Redo last command - - - - - Zoom in - - - - - Zoom out - - - - - QsciLexerCPP - - - Default - - - - - Inactive default - - - - - C comment - - - - - Inactive C comment - - - - - C++ comment - - - - - Inactive C++ comment - - - - - JavaDoc style C comment - - - - - Inactive JavaDoc style C comment - - - - - Number - - - - - Inactive number - - - - - Keyword - - - - - Inactive keyword - - - - - Double-quoted string - - - - - Inactive double-quoted string - - - - - Single-quoted string - - - - - Inactive single-quoted string - - - - - IDL UUID - - - - - Inactive IDL UUID - - - - - Pre-processor block - - - - - Inactive pre-processor block - - - - - Operator - - - - - Inactive operator - - - - - Identifier - - - - - Inactive identifier - - - - - Unclosed string - - - - - Inactive unclosed string - - - - - C# verbatim string - - - - - Inactive C# verbatim string - - - - - JavaScript regular expression - - - - - Inactive JavaScript regular expression - - - - - JavaDoc style C++ comment - - - - - Inactive JavaDoc style C++ comment - - - - - Secondary keywords and identifiers - - - - - Inactive secondary keywords and identifiers - - - - - JavaDoc keyword - - - - - Inactive JavaDoc keyword - - - - - JavaDoc keyword error - - - - - Inactive JavaDoc keyword error - - - - - Global classes and typedefs - - - - - Inactive global classes and typedefs - - - - - C++ raw string - - - - - Inactive C++ raw string - - - - - Vala triple-quoted verbatim string - - - - - Inactive Vala triple-quoted verbatim string - - - - - Pike hash-quoted string - - - - - Inactive Pike hash-quoted string - - - - - Pre-processor C comment - - - - - Inactive pre-processor C comment - - - - - JavaDoc style pre-processor comment - - - - - Inactive JavaDoc style pre-processor comment - - - - - User-defined literal - - - - - Inactive user-defined literal - - - - - Task marker - - - - - Inactive task marker - - - - - Escape sequence - - - - - Inactive escape sequence - - - - - QsciLexerHTML - - - HTML default - - - - - Tag - - - - - Unknown tag - - - - - Attribute - - - - - Unknown attribute - - - - - HTML number - - - - - HTML double-quoted string - - - - - HTML single-quoted string - - - - - Other text in a tag - - - - - HTML comment - - - - - Entity - - - - - End of a tag - - - - - Start of an XML fragment - - - - - End of an XML fragment - - - - - Script tag - - - - - Start of an ASP fragment with @ - - - - - Start of an ASP fragment - - - - - CDATA - - - - - Start of a PHP fragment - - - - - Unquoted HTML value - - - - - ASP X-Code comment - - - - - SGML default - - - - - SGML command - - - - - First parameter of an SGML command - - - - - SGML double-quoted string - - - - - SGML single-quoted string - - - - - SGML error - - - - - SGML special entity - - - - - SGML comment - - - - - First parameter comment of an SGML command - - - - - SGML block default - - - - - Start of a JavaScript fragment - - - - - JavaScript default - - - - - JavaScript comment - - - - - JavaScript line comment - - - - - JavaDoc style JavaScript comment - - - - - JavaScript number - - - - - JavaScript word - - - - - JavaScript keyword - - - - - JavaScript double-quoted string - - - - - JavaScript single-quoted string - - - - - JavaScript symbol - - - - - JavaScript unclosed string - - - - - JavaScript regular expression - - - - - Start of an ASP JavaScript fragment - - - - - ASP JavaScript default - - - - - ASP JavaScript comment - - - - - ASP JavaScript line comment - - - - - JavaDoc style ASP JavaScript comment - - - - - ASP JavaScript number - - - - - ASP JavaScript word - - - - - ASP JavaScript keyword - - - - - ASP JavaScript double-quoted string - - - - - ASP JavaScript single-quoted string - - - - - ASP JavaScript symbol - - - - - ASP JavaScript unclosed string - - - - - ASP JavaScript regular expression - - - - - Start of a VBScript fragment - - - - - VBScript default - - - - - VBScript comment - - - - - VBScript number - - - - - VBScript keyword - - - - - VBScript string - - - - - VBScript identifier - - - - - VBScript unclosed string - - - - - Start of an ASP VBScript fragment - - - - - ASP VBScript default - - - - - ASP VBScript comment - - - - - ASP VBScript number - - - - - ASP VBScript keyword - - - - - ASP VBScript string - - - - - ASP VBScript identifier - - - - - ASP VBScript unclosed string - - - - - Start of a Python fragment - - - - - Python default - - - - - Python comment - - - - - Python number - - - - - Python double-quoted string - - - - - Python single-quoted string - - - - - Python keyword - - - - - Python triple double-quoted string - - - - - Python triple single-quoted string - - - - - Python class name - - - - - Python function or method name - - - - - Python operator - - - - - Python identifier - - - - - Start of an ASP Python fragment - - - - - ASP Python default - - - - - ASP Python comment - - - - - ASP Python number - - - - - ASP Python double-quoted string - - - - - ASP Python single-quoted string - - - - - ASP Python keyword - - - - - ASP Python triple double-quoted string - - - - - ASP Python triple single-quoted string - - - - - ASP Python class name - - - - - ASP Python function or method name - - - - - ASP Python operator - - - - - ASP Python identifier - - - - - PHP default - - - - - PHP double-quoted string - - - - - PHP single-quoted string - - - - - PHP keyword - - - - - PHP number - - - - - PHP variable - - - - - PHP comment - - - - - PHP line comment - - - - - PHP double-quoted variable - - - - - PHP operator - - - - - QsciLexerJSON - - - Default - - - - - Number - - - - - String - - - - - Unclosed string - - - - - Property - - - - - Escape sequence - - - - - Line comment - - - - - Block comment - - - - - Operator - - - - - IRI - - - - - JSON-LD compact IRI - - - - - JSON keyword - - - - - JSON-LD keyword - - - - - Parsing error - - - - - QsciLexerJavaScript - - - Regular expression - - - - - QsciLexerPython - - - Default - - - - - Comment - - - - - Number - - - - - Double-quoted string - - - - - Single-quoted string - - - - - Keyword - - - - - Triple single-quoted string - - - - - Triple double-quoted string - - - - - Class name - - - - - Function or method name - - - - - Operator - - - - - Identifier - - - - - Comment block - - - - - Unclosed string - - - - - Highlighted identifier - - - - - Decorator - - - - - Double-quoted f-string - - - - - Single-quoted f-string - - - - - Triple single-quoted f-string - - - - - Triple double-quoted f-string - - - - - QsciLexerSQL - - - Default - - - - - Comment - - - - - Comment line - - - - - JavaDoc style comment - - - - - Number - - - - - Keyword - - - - - Double-quoted string - - - - - Single-quoted string - - - - - SQL*Plus keyword - - - - - SQL*Plus prompt - - - - - Operator - - - - - Identifier - - - - - SQL*Plus comment - - - - - # comment line - - - - - JavaDoc keyword - - - - - JavaDoc keyword error - - - - - User defined 1 - - - - - User defined 2 - - - - - User defined 3 - - - - - User defined 4 - - - - - Quoted identifier - - - - - Quoted operator - - - - - QsciScintilla - - - &Undo - - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - Delete - - - - - Select All - - - RemoteCommitsModel @@ -9327,24 +7668,6 @@ Leave the field empty for using the database encoding. - - UndoStack - - - Inserting %1 bytes - - - - - Delete %1 chars - - - - - Overwrite %1 chars - - - VacuumDialog diff --git a/src/translations/sqlb_fr.ts b/src/translations/sqlb_fr.ts index efbd1d9d1..900195eb3 100644 --- a/src/translations/sqlb_fr.ts +++ b/src/translations/sqlb_fr.ts @@ -5796,1660 +5796,94 @@ Veuillez vérifier à nouveau. QsciCommand - - Move down one line - - - - - Extend selection down one line - - - - - Extend rectangular selection down one line - - - - - Scroll view down one line - - - - - Move up one line - - - - - Extend selection up one line - - - - - Extend rectangular selection up one line - - - - - Scroll view up one line - - - - - Scroll to start of document - - - - - Scroll to end of document - - - - - Scroll vertically to centre current line - - - - - Move down one paragraph - - - - - Extend selection down one paragraph - - - - - Move up one paragraph - - - - - Extend selection up one paragraph - - - - - Move left one character - - - - - Extend selection left one character - - - - - Extend rectangular selection left one character - - - - - Move right one character - - - - - Extend selection right one character - - - - - Extend rectangular selection right one character - - - - - Move left one word - - - - - Extend selection left one word - - - - - Move right one word - - - - - Extend selection right one word - - - - - Move to end of previous word - - - - - Extend selection to end of previous word - - - - - Move to end of next word - - - - - Extend selection to end of next word - - - - - Move left one word part - - - - - Extend selection left one word part - - - - - Move right one word part - - - - - Extend selection right one word part - - - - - Move to start of document line - - - - - Extend selection to start of document line - - - - - Extend rectangular selection to start of document line - - - - - Move to start of display line - - - - - Extend selection to start of display line - - - - - Move to start of display or document line - - - - - Extend selection to start of display or document line - - - - - Move to first visible character in document line - - - - - Extend selection to first visible character in document line - - - - - Extend rectangular selection to first visible character in document line - - - - - Move to first visible character of display in document line - - - - - Extend selection to first visible character in display or document line - - - - - Move to end of document line - - - - - Extend selection to end of document line - - - - - Extend rectangular selection to end of document line - - - - - Move to end of display line - - - - - Extend selection to end of display line - - - - - Move to end of display or document line - - - - - Extend selection to end of display or document line - - - - - Move to start of document - - - - - Extend selection to start of document - - - - - Move to end of document - - - - - Extend selection to end of document - - - - - Move up one page - - - - - Extend selection up one page - - - - - Extend rectangular selection up one page - - - - - Move down one page - - - - - Extend selection down one page - - - - - Extend rectangular selection down one page - - - - - Stuttered move up one page - - - - - Stuttered extend selection up one page - - - - - Stuttered move down one page - - - - - Stuttered extend selection down one page - - - - - Delete current character - - - - - Delete previous character - - - - - Delete previous character if not at start of line - - - - - Delete word to left - - - - - Delete word to right - - - - - Delete right to end of next word - - - - - Delete line to left - - - - - Delete line to right - - - - - Delete current line - - - - - Cut current line - - - - - Copy current line - - - - - Transpose current and previous lines - - - - - Duplicate the current line - - - - - Select all - - - - - Move selected lines up one line - - - - - Move selected lines down one line - - - - - Duplicate selection - - - - - Convert selection to lower case - - - - - Convert selection to upper case - - - - - Cut selection - - - - - Copy selection - - - - - Paste - Coller - - - - Toggle insert/overtype - - - - - Insert newline - - - - - Formfeed - - - - - Indent one level - - - - - De-indent one level - - - - - Cancel - Annuler - - - - Undo last command - - - - - Redo last command - - - - - Zoom in - - - - - Zoom out - - - - - QsciLexerCPP - - - Default - Défaut - - - - Inactive default - - - - - C comment - - - - - Inactive C comment - - - - - C++ comment - - - - - Inactive C++ comment - - - - - JavaDoc style C comment - - - - - Inactive JavaDoc style C comment - - - - - Number - - - - - Inactive number - - - - - Keyword - Mot clé - - - - Inactive keyword - - - - - Double-quoted string - - - - - Inactive double-quoted string - - - - - Single-quoted string - - - - - Inactive single-quoted string - - - - - IDL UUID - - - - - Inactive IDL UUID - - - - - Pre-processor block - - - - - Inactive pre-processor block - - - - - Operator - - - - - Inactive operator - - - - - Identifier - Identifiant - - - - Inactive identifier - - - - - Unclosed string - - - - - Inactive unclosed string - - - - - C# verbatim string - - - - - Inactive C# verbatim string - - - - - JavaScript regular expression - - - - - Inactive JavaScript regular expression - - - - - JavaDoc style C++ comment - - - - - Inactive JavaDoc style C++ comment - - - - - Secondary keywords and identifiers - - - - - Inactive secondary keywords and identifiers - - - - - JavaDoc keyword - - - - - Inactive JavaDoc keyword - - - - - JavaDoc keyword error - - - - - Inactive JavaDoc keyword error - - - - - Global classes and typedefs - - - - - Inactive global classes and typedefs - - - - - C++ raw string - - - - - Inactive C++ raw string - - - - - Vala triple-quoted verbatim string - - - - - Inactive Vala triple-quoted verbatim string - - - - - Pike hash-quoted string - - - - - Inactive Pike hash-quoted string - - - - - Pre-processor C comment - - - - - Inactive pre-processor C comment - - - - - JavaDoc style pre-processor comment - - - - - Inactive JavaDoc style pre-processor comment - - - - - User-defined literal - - - - - Inactive user-defined literal - - - - - Task marker - - - - - Inactive task marker - - - - - Escape sequence - - - - - Inactive escape sequence - - - - - QsciLexerHTML - - - HTML default - - - - - Tag - - - - - Unknown tag - - - - - Attribute - - - - - Unknown attribute - - - - - HTML number - - - - - HTML double-quoted string - - - - - HTML single-quoted string - - - - - Other text in a tag - - - - - HTML comment - - - - - Entity - - - - - End of a tag - - - - - Start of an XML fragment - - - - - End of an XML fragment - - - - - Script tag - - - - - Start of an ASP fragment with @ - - - - - Start of an ASP fragment - - - - - CDATA - - - - - Start of a PHP fragment - - - - - Unquoted HTML value - - - - - ASP X-Code comment - - - - - SGML default - - - - - SGML command - - - - - First parameter of an SGML command - - - - - SGML double-quoted string - - - - - SGML single-quoted string - - - - - SGML error - - - - - SGML special entity - - - - - SGML comment - - - - - First parameter comment of an SGML command - - - - - SGML block default - - - - - Start of a JavaScript fragment - - - - - JavaScript default - - - - - JavaScript comment - - - - - JavaScript line comment - - - - - JavaDoc style JavaScript comment - - - - - JavaScript number - - - - - JavaScript word - - - - - JavaScript keyword - - - - - JavaScript double-quoted string - - - - - JavaScript single-quoted string - - - - - JavaScript symbol - - - - - JavaScript unclosed string - - - - - JavaScript regular expression - - - - - Start of an ASP JavaScript fragment - - - - - ASP JavaScript default - - - - - ASP JavaScript comment - - - - - ASP JavaScript line comment - - - - - JavaDoc style ASP JavaScript comment - - - - - ASP JavaScript number - - - - - ASP JavaScript word - - - - - ASP JavaScript keyword - - - - - ASP JavaScript double-quoted string - - - - - ASP JavaScript single-quoted string - - - - - ASP JavaScript symbol - - - - - ASP JavaScript unclosed string - - - - - ASP JavaScript regular expression - - - - - Start of a VBScript fragment - - - - - VBScript default - - - - - VBScript comment - - - - - VBScript number - - - - - VBScript keyword - - - - - VBScript string - - - - - VBScript identifier - - - - - VBScript unclosed string - - - - - Start of an ASP VBScript fragment - - - - - ASP VBScript default - - - - - ASP VBScript comment - - - - - ASP VBScript number - - - - - ASP VBScript keyword - - - - - ASP VBScript string - - - - - ASP VBScript identifier - - - - - ASP VBScript unclosed string - - - - - Start of a Python fragment - - - - - Python default - - - - - Python comment - - - - - Python number - - - - - Python double-quoted string - - - - - Python single-quoted string - - - - - Python keyword - - - - - Python triple double-quoted string - - - - - Python triple single-quoted string - - - - - Python class name - - - - - Python function or method name - - - - - Python operator - - - - - Python identifier - - - - - Start of an ASP Python fragment - - - - - ASP Python default - - - - - ASP Python comment - - - - - ASP Python number - - - - - ASP Python double-quoted string - - - - - ASP Python single-quoted string - - - - - ASP Python keyword - - - - - ASP Python triple double-quoted string - - - - - ASP Python triple single-quoted string - - - - - ASP Python class name - - - - - ASP Python function or method name - - - - - ASP Python operator - - - - - ASP Python identifier - - - - - PHP default - - - - - PHP double-quoted string - - - - - PHP single-quoted string - - - - - PHP keyword - - - - - PHP number - - - - - PHP variable - + Paste + Coller - - PHP comment - + Cancel + Annuler + + + QsciLexerCPP - - PHP line comment - + Default + Défaut - - PHP double-quoted variable - + Keyword + Mot clé - - PHP operator - + Identifier + Identifiant QsciLexerJSON - Default - Défaut + Défaut - - Number - - - - String - Chaîne de caractère - - - - Unclosed string - - - - - Property - - - - - Escape sequence - - - - - Line comment - - - - - Block comment - - - - - Operator - - - - - IRI - - - - - JSON-LD compact IRI - - - - - JSON keyword - - - - - JSON-LD keyword - - - - - Parsing error - + Chaîne de caractère QsciLexerJavaScript - Regular expression - Expression régulière + Expression régulière QsciLexerPython - Default - Défaut + Défaut - Comment - Commentaire + Commentaire - - Number - - - - - Double-quoted string - - - - - Single-quoted string - - - - Keyword - Mot clé - - - - Triple single-quoted string - - - - - Triple double-quoted string - - - - - Class name - - - - - Function or method name - - - - - Operator - + Mot clé - Identifier - Identifiant - - - - Comment block - - - - - Unclosed string - - - - - Highlighted identifier - - - - - Decorator - - - - - Double-quoted f-string - - - - - Single-quoted f-string - - - - - Triple single-quoted f-string - - - - - Triple double-quoted f-string - + Identifiant QsciLexerSQL - Default - Défaut + Défaut - Comment - Commentaire + Commentaire - - Comment line - - - - - JavaDoc style comment - - - - - Number - - - - Keyword - Mot clé - - - - Double-quoted string - - - - - Single-quoted string - - - - - SQL*Plus keyword - - - - - SQL*Plus prompt - - - - - Operator - + Mot clé - Identifier - Identifiant - - - - SQL*Plus comment - - - - - # comment line - - - - - JavaDoc keyword - - - - - JavaDoc keyword error - - - - - User defined 1 - - - - - User defined 2 - - - - - User defined 3 - - - - - User defined 4 - - - - - Quoted identifier - - - - - Quoted operator - + Identifiant QsciScintilla - &Undo - Ann&uler - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - Delete - + Ann&uler - Select All - Sélectionner tout + Sélectionner tout @@ -9452,24 +7886,6 @@ Laissez le champ vide pour utiliser l'encodage de la base de données.Donnez un nouveau nom à l'explorateur de données. Utilisez le caractère "&&" pour permettre l'utilisation du caractère suivant comme raccourci clavier. - - UndoStack - - - Inserting %1 bytes - - - - - Delete %1 chars - - - - - Overwrite %1 chars - - - VacuumDialog diff --git a/src/translations/sqlb_id.ts b/src/translations/sqlb_id.ts index b1b575978..3b608df1e 100644 --- a/src/translations/sqlb_id.ts +++ b/src/translations/sqlb_id.ts @@ -5779,1660 +5779,94 @@ Harap periksa lagi. QsciCommand - - Move down one line - - - - - Extend selection down one line - - - - - Extend rectangular selection down one line - - - - - Scroll view down one line - - - - - Move up one line - - - - - Extend selection up one line - - - - - Extend rectangular selection up one line - - - - - Scroll view up one line - - - - - Scroll to start of document - - - - - Scroll to end of document - - - - - Scroll vertically to centre current line - - - - - Move down one paragraph - - - - - Extend selection down one paragraph - - - - - Move up one paragraph - - - - - Extend selection up one paragraph - - - - - Move left one character - - - - - Extend selection left one character - - - - - Extend rectangular selection left one character - - - - - Move right one character - - - - - Extend selection right one character - - - - - Extend rectangular selection right one character - - - - - Move left one word - - - - - Extend selection left one word - - - - - Move right one word - - - - - Extend selection right one word - - - - - Move to end of previous word - - - - - Extend selection to end of previous word - - - - - Move to end of next word - - - - - Extend selection to end of next word - - - - - Move left one word part - - - - - Extend selection left one word part - - - - - Move right one word part - - - - - Extend selection right one word part - - - - - Move to start of document line - - - - - Extend selection to start of document line - - - - - Extend rectangular selection to start of document line - - - - - Move to start of display line - - - - - Extend selection to start of display line - - - - - Move to start of display or document line - - - - - Extend selection to start of display or document line - - - - - Move to first visible character in document line - - - - - Extend selection to first visible character in document line - - - - - Extend rectangular selection to first visible character in document line - - - - - Move to first visible character of display in document line - - - - - Extend selection to first visible character in display or document line - - - - - Move to end of document line - - - - - Extend selection to end of document line - - - - - Extend rectangular selection to end of document line - - - - - Move to end of display line - - - - - Extend selection to end of display line - - - - - Move to end of display or document line - - - - - Extend selection to end of display or document line - - - - - Move to start of document - - - - - Extend selection to start of document - - - - - Move to end of document - - - - - Extend selection to end of document - - - - - Move up one page - - - - - Extend selection up one page - - - - - Extend rectangular selection up one page - - - - - Move down one page - - - - - Extend selection down one page - - - - - Extend rectangular selection down one page - - - - - Stuttered move up one page - - - - - Stuttered extend selection up one page - - - - - Stuttered move down one page - - - - - Stuttered extend selection down one page - - - - - Delete current character - - - - - Delete previous character - - - - - Delete previous character if not at start of line - - - - - Delete word to left - - - - - Delete word to right - - - - - Delete right to end of next word - - - - - Delete line to left - - - - - Delete line to right - - - - - Delete current line - - - - - Cut current line - - - - - Copy current line - - - - - Transpose current and previous lines - - - - - Duplicate the current line - - - - - Select all - - - - - Move selected lines up one line - - - - - Move selected lines down one line - - - - - Duplicate selection - - - - - Convert selection to lower case - - - - - Convert selection to upper case - - - - - Cut selection - - - - - Copy selection - - - - - Paste - Tempel - - - - Toggle insert/overtype - - - - - Insert newline - - - - - Formfeed - - - - - Indent one level - - - - - De-indent one level - - - - - Cancel - Batal - - - - Undo last command - - - - - Redo last command - - - - - Zoom in - - - - - Zoom out - - - - - QsciLexerCPP - - - Default - Baku - - - - Inactive default - - - - - C comment - - - - - Inactive C comment - - - - - C++ comment - - - - - Inactive C++ comment - - - - - JavaDoc style C comment - - - - - Inactive JavaDoc style C comment - - - - - Number - - - - - Inactive number - - - - - Keyword - Kata kunci - - - - Inactive keyword - - - - - Double-quoted string - - - - - Inactive double-quoted string - - - - - Single-quoted string - - - - - Inactive single-quoted string - - - - - IDL UUID - - - - - Inactive IDL UUID - - - - - Pre-processor block - - - - - Inactive pre-processor block - - - - - Operator - - - - - Inactive operator - - - - - Identifier - Identifier - - - - Inactive identifier - - - - - Unclosed string - - - - - Inactive unclosed string - - - - - C# verbatim string - - - - - Inactive C# verbatim string - - - - - JavaScript regular expression - - - - - Inactive JavaScript regular expression - - - - - JavaDoc style C++ comment - - - - - Inactive JavaDoc style C++ comment - - - - - Secondary keywords and identifiers - - - - - Inactive secondary keywords and identifiers - - - - - JavaDoc keyword - - - - - Inactive JavaDoc keyword - - - - - JavaDoc keyword error - - - - - Inactive JavaDoc keyword error - - - - - Global classes and typedefs - - - - - Inactive global classes and typedefs - - - - - C++ raw string - - - - - Inactive C++ raw string - - - - - Vala triple-quoted verbatim string - - - - - Inactive Vala triple-quoted verbatim string - - - - - Pike hash-quoted string - - - - - Inactive Pike hash-quoted string - - - - - Pre-processor C comment - - - - - Inactive pre-processor C comment - - - - - JavaDoc style pre-processor comment - - - - - Inactive JavaDoc style pre-processor comment - - - - - User-defined literal - - - - - Inactive user-defined literal - - - - - Task marker - - - - - Inactive task marker - - - - - Escape sequence - - - - - Inactive escape sequence - - - - - QsciLexerHTML - - - HTML default - - - - - Tag - - - - - Unknown tag - - - - - Attribute - - - - - Unknown attribute - - - - - HTML number - - - - - HTML double-quoted string - - - - - HTML single-quoted string - - - - - Other text in a tag - - - - - HTML comment - - - - - Entity - - - - - End of a tag - - - - - Start of an XML fragment - - - - - End of an XML fragment - - - - - Script tag - - - - - Start of an ASP fragment with @ - - - - - Start of an ASP fragment - - - - - CDATA - - - - - Start of a PHP fragment - - - - - Unquoted HTML value - - - - - ASP X-Code comment - - - - - SGML default - - - - - SGML command - - - - - First parameter of an SGML command - - - - - SGML double-quoted string - - - - - SGML single-quoted string - - - - - SGML error - - - - - SGML special entity - - - - - SGML comment - - - - - First parameter comment of an SGML command - - - - - SGML block default - - - - - Start of a JavaScript fragment - - - - - JavaScript default - - - - - JavaScript comment - - - - - JavaScript line comment - - - - - JavaDoc style JavaScript comment - - - - - JavaScript number - - - - - JavaScript word - - - - - JavaScript keyword - - - - - JavaScript double-quoted string - - - - - JavaScript single-quoted string - - - - - JavaScript symbol - - - - - JavaScript unclosed string - - - - - JavaScript regular expression - - - - - Start of an ASP JavaScript fragment - - - - - ASP JavaScript default - - - - - ASP JavaScript comment - - - - - ASP JavaScript line comment - - - - - JavaDoc style ASP JavaScript comment - - - - - ASP JavaScript number - - - - - ASP JavaScript word - - - - - ASP JavaScript keyword - - - - - ASP JavaScript double-quoted string - - - - - ASP JavaScript single-quoted string - - - - - ASP JavaScript symbol - - - - - ASP JavaScript unclosed string - - - - - ASP JavaScript regular expression - - - - - Start of a VBScript fragment - - - - - VBScript default - - - - - VBScript comment - - - - - VBScript number - - - - - VBScript keyword - - - - - VBScript string - - - - - VBScript identifier - - - - - VBScript unclosed string - - - - - Start of an ASP VBScript fragment - - - - - ASP VBScript default - - - - - ASP VBScript comment - - - - - ASP VBScript number - - - - - ASP VBScript keyword - - - - - ASP VBScript string - - - - - ASP VBScript identifier - - - - - ASP VBScript unclosed string - - - - - Start of a Python fragment - - - - - Python default - - - - - Python comment - - - - - Python number - - - - - Python double-quoted string - - - - - Python single-quoted string - - - - - Python keyword - - - - - Python triple double-quoted string - - - - - Python triple single-quoted string - - - - - Python class name - - - - - Python function or method name - - - - - Python operator - - - - - Python identifier - - - - - Start of an ASP Python fragment - - - - - ASP Python default - - - - - ASP Python comment - - - - - ASP Python number - - - - - ASP Python double-quoted string - - - - - ASP Python single-quoted string - - - - - ASP Python keyword - - - - - ASP Python triple double-quoted string - - - - - ASP Python triple single-quoted string - - - - - ASP Python class name - - - - - ASP Python function or method name - - - - - ASP Python operator - - - - - ASP Python identifier - - - - - PHP default - - - - - PHP double-quoted string - - - - - PHP single-quoted string - - - - - PHP keyword - - - - - PHP number - - - - - PHP variable - + Paste + Tempel - - PHP comment - + Cancel + Batal + + + QsciLexerCPP - - PHP line comment - + Default + Baku - - PHP double-quoted variable - + Keyword + Kata kunci - - PHP operator - + Identifier + Identifier QsciLexerJSON - Default - Baku + Baku - - Number - - - - String - String - - - - Unclosed string - - - - - Property - - - - - Escape sequence - - - - - Line comment - - - - - Block comment - - - - - Operator - - - - - IRI - - - - - JSON-LD compact IRI - - - - - JSON keyword - - - - - JSON-LD keyword - - - - - Parsing error - + String QsciLexerJavaScript - Regular expression - Ekspresi reguler + Ekspresi reguler QsciLexerPython - Default - Baku + Baku - Comment - Komentar + Komentar - - Number - - - - - Double-quoted string - - - - - Single-quoted string - - - - Keyword - Kata kunci - - - - Triple single-quoted string - - - - - Triple double-quoted string - - - - - Class name - - - - - Function or method name - - - - - Operator - + Kata kunci - Identifier - Identifier - - - - Comment block - - - - - Unclosed string - - - - - Highlighted identifier - - - - - Decorator - - - - - Double-quoted f-string - - - - - Single-quoted f-string - - - - - Triple single-quoted f-string - - - - - Triple double-quoted f-string - + Identifier QsciLexerSQL - Default - Baku + Baku - Comment - Komentar + Komentar - - Comment line - - - - - JavaDoc style comment - - - - - Number - - - - Keyword - Kata kunci - - - - Double-quoted string - - - - - Single-quoted string - - - - - SQL*Plus keyword - - - - - SQL*Plus prompt - - - - - Operator - + Kata kunci - Identifier - Identifier - - - - SQL*Plus comment - - - - - # comment line - - - - - JavaDoc keyword - - - - - JavaDoc keyword error - - - - - User defined 1 - - - - - User defined 2 - - - - - User defined 3 - - - - - User defined 4 - - - - - Quoted identifier - - - - - Quoted operator - + Identifier QsciScintilla - &Undo - Tak Ja&di - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - Delete - + Tak Ja&di - Select All - Pilih Semua + Pilih Semua @@ -9430,24 +7864,6 @@ Biarkan ruas kosong untuk memakai enkoding basis data. Mengatur sebuah nama baru bagi peramban data. Gunakan karakter '&&' untuk mengizinkan penggunaan karakter berikut sebagai pintasan papan ketik. - - UndoStack - - - Inserting %1 bytes - - - - - Delete %1 chars - - - - - Overwrite %1 chars - - - VacuumDialog diff --git a/src/translations/sqlb_it.ts b/src/translations/sqlb_it.ts index b947824f0..f37a9eea3 100644 --- a/src/translations/sqlb_it.ts +++ b/src/translations/sqlb_it.ts @@ -5780,1660 +5780,1333 @@ Si prega di ricontrollare. QsciCommand - Move down one line - Sposta in basso di una riga + Sposta in basso di una riga - Extend selection down one line - Estendi la selezione in basso di una riga + Estendi la selezione in basso di una riga - Extend rectangular selection down one line - Estendi la selezione rettangolare in basso di una riga + Estendi la selezione rettangolare in basso di una riga - Scroll view down one line - Scorri la vista in basso di una riga + Scorri la vista in basso di una riga - Move up one line - Muovi in alto di una riga + Muovi in alto di una riga - Extend selection up one line - Estendi la selezione in alto di una riga + Estendi la selezione in alto di una riga - Extend rectangular selection up one line - Estendi la selezione rettangolare in alto di una riga + Estendi la selezione rettangolare in alto di una riga - Scroll view up one line - Scorri la vista in alto di una riga + Scorri la vista in alto di una riga - Scroll to start of document - Scorri all'inizio del documento + Scorri all'inizio del documento - Scroll to end of document - Scorri alla fine del documento + Scorri alla fine del documento - Scroll vertically to centre current line - Scorri verticalmente per centrare la riga corrente + Scorri verticalmente per centrare la riga corrente - Move down one paragraph - Muovi in basso di un paragrafo + Muovi in basso di un paragrafo - Extend selection down one paragraph - Estendi la selezione in basso di un paragrafo + Estendi la selezione in basso di un paragrafo - Move up one paragraph - Muovi in alto di un paragrafo + Muovi in alto di un paragrafo - Extend selection up one paragraph - Estendi la selezione in alto di un paragrafo + Estendi la selezione in alto di un paragrafo - Move left one character - Muovi a sinistra di un carattere + Muovi a sinistra di un carattere - Extend selection left one character - Estendi la selezione a sinistra di un carattere + Estendi la selezione a sinistra di un carattere - Extend rectangular selection left one character - Estendi la selezione rettangolare a sinistra di un carattere + Estendi la selezione rettangolare a sinistra di un carattere - Move right one character - Muovi a destra di un carattere + Muovi a destra di un carattere - Extend selection right one character - Estendi la selezione a destra di un carattere + Estendi la selezione a destra di un carattere - Extend rectangular selection right one character - Estendi la selezione rettangolare a destra di un carattere + Estendi la selezione rettangolare a destra di un carattere - Move left one word - Muovi a sinistra di una parola + Muovi a sinistra di una parola - Extend selection left one word - Estendi la selezione a sinistra di una parola + Estendi la selezione a sinistra di una parola - Move right one word - Muovi a destra di una parola + Muovi a destra di una parola - Extend selection right one word - Estendi la selezione a destra di una parola + Estendi la selezione a destra di una parola - Move to end of previous word - Muovi alla fine della parola precedente + Muovi alla fine della parola precedente - Extend selection to end of previous word - Estendi la selezione alla fine della parola precedente + Estendi la selezione alla fine della parola precedente - Move to end of next word - Muovi alla fine della prossima parola + Muovi alla fine della prossima parola - Extend selection to end of next word - Estendi la selezione alla fine della prossima parola + Estendi la selezione alla fine della prossima parola - Move left one word part - Muovi a sinistra di una parte di parola + Muovi a sinistra di una parte di parola - Extend selection left one word part - Estendi la selezione a sinistra di una parte di parola + Estendi la selezione a sinistra di una parte di parola - Move right one word part - Muovi a destra di una parte di parola + Muovi a destra di una parte di parola - Extend selection right one word part - Estendi la selezione a destra di una parte di parola + Estendi la selezione a destra di una parte di parola - Move to start of document line - Muovi all'inizio della riga + Muovi all'inizio della riga - Extend selection to start of document line - Estendi la selezione all'inizio della riga + Estendi la selezione all'inizio della riga - Extend rectangular selection to start of document line - Estendi la selezione rettangolare all'inizio della riga + Estendi la selezione rettangolare all'inizio della riga - Move to start of display line - Muovi all'inizio della riga mostrata + Muovi all'inizio della riga mostrata - Extend selection to start of display line - Estendi la selezione all'inizio della riga mostrata + Estendi la selezione all'inizio della riga mostrata - Move to start of display or document line - Muovi all'inizio della riga mostrata o del documento + Muovi all'inizio della riga mostrata o del documento - Extend selection to start of display or document line - Estendi la selezione all'inizio della riga mostrata o del documento + Estendi la selezione all'inizio della riga mostrata o del documento - Move to first visible character in document line - Muovi al primo carattere visibile nella riga + Muovi al primo carattere visibile nella riga - Extend selection to first visible character in document line - Estendi la selezione al primo carattere visibile della riga + Estendi la selezione al primo carattere visibile della riga - Extend rectangular selection to first visible character in document line - Estendi la selezione rettangolare al primo carattere visibile nella riga + Estendi la selezione rettangolare al primo carattere visibile nella riga - Move to first visible character of display in document line - Muovi al primo carattere visibile nella riga mostrata + Muovi al primo carattere visibile nella riga mostrata - Extend selection to first visible character in display or document line - Estendi la selezione al primo carattere visibile nella riga mostrata + Estendi la selezione al primo carattere visibile nella riga mostrata - Move to end of document line - Muovi alla fine della riga + Muovi alla fine della riga - Extend selection to end of document line - Estendi la selezione alla fine della riga + Estendi la selezione alla fine della riga - Extend rectangular selection to end of document line - Estendi la selezione rettangolare alla fine della riga + Estendi la selezione rettangolare alla fine della riga - Move to end of display line - Muovi alla fine della riga mostrata + Muovi alla fine della riga mostrata - Extend selection to end of display line - Estendi la selezione alla fine della riga mostrata + Estendi la selezione alla fine della riga mostrata - Move to end of display or document line - Muovi alla fine della riga mostrata o del documento + Muovi alla fine della riga mostrata o del documento - Extend selection to end of display or document line - Estendi la selezione alla fine della riga mostrata o del documento + Estendi la selezione alla fine della riga mostrata o del documento - Move to start of document - Muovi all'inizio del documento + Muovi all'inizio del documento - Extend selection to start of document - Estendi la selezione all'inizio del documento + Estendi la selezione all'inizio del documento - Move to end of document - Muovi alla fine del documento + Muovi alla fine del documento - Extend selection to end of document - Estendi la selezione alla fine del documento + Estendi la selezione alla fine del documento - Move up one page - Muovi su di una pagina + Muovi su di una pagina - Extend selection up one page - Estendi la selezione in su di una pagina + Estendi la selezione in su di una pagina - Extend rectangular selection up one page - Estendi la selezione rettangolare in su di una pagina + Estendi la selezione rettangolare in su di una pagina - Move down one page - Muovi in basso di una pagina + Muovi in basso di una pagina - Extend selection down one page - Estendi la selezione in basso di una pagina + Estendi la selezione in basso di una pagina - Extend rectangular selection down one page - Estendi la selezione rettangolare in basso di una pagina + Estendi la selezione rettangolare in basso di una pagina - Stuttered move up one page - Muovi in alto a scatti di una pagina + Muovi in alto a scatti di una pagina - Stuttered extend selection up one page - Estendi la selezione in alto a scatti di una pagina + Estendi la selezione in alto a scatti di una pagina - Stuttered move down one page - Muovi in basso a scatti di una pagina + Muovi in basso a scatti di una pagina - Stuttered extend selection down one page - Estendi la selezione in basso a scatti di una pagina + Estendi la selezione in basso a scatti di una pagina - Delete current character - Elimina il carattere corrente + Elimina il carattere corrente - Delete previous character - Elimina il carattere precedente + Elimina il carattere precedente - Delete previous character if not at start of line - Elimina il carattere precedente se non corrisponde all'inizio di riga + Elimina il carattere precedente se non corrisponde all'inizio di riga - Delete word to left - Elimina la parola a sinistra + Elimina la parola a sinistra - Delete word to right - Elimina la parola a destra + Elimina la parola a destra - Delete right to end of next word - Elimina da destra alla fine della prossima parola + Elimina da destra alla fine della prossima parola - Delete line to left - Elimina la riga a sinsitra + Elimina la riga a sinsitra - Delete line to right - Elimina la riga a destra + Elimina la riga a destra - Delete current line - Elimina la riga corrente + Elimina la riga corrente - Cut current line - Taglia la riga corrente + Taglia la riga corrente - Copy current line - Copia la riga corrente + Copia la riga corrente - Transpose current and previous lines - Trasponi la riga corrente e quella precedente + Trasponi la riga corrente e quella precedente - Duplicate the current line - Duplica la riga corrente + Duplica la riga corrente - Select all - Seleziona tutto + Seleziona tutto - Move selected lines up one line - Muovi le righe selezionate in alto di una riga + Muovi le righe selezionate in alto di una riga - Move selected lines down one line - Muovi le righe selezionate in basso di una riga + Muovi le righe selezionate in basso di una riga - Duplicate selection - Duplica la selezione + Duplica la selezione - Convert selection to lower case - Converti la selezione in minuscolo + Converti la selezione in minuscolo - Convert selection to upper case - Converti la selezione in maiuscolo + Converti la selezione in maiuscolo - Cut selection - Taglia la selezione + Taglia la selezione - Copy selection - Copia la selezione + Copia la selezione - Paste - Incolla + Incolla - Toggle insert/overtype - Alterna inserisci/sovrascrivi + Alterna inserisci/sovrascrivi - Insert newline - Inserisci una nuova riga + Inserisci una nuova riga - Formfeed - Separatore di pagina + Separatore di pagina - Indent one level - Indenta di un livello + Indenta di un livello - De-indent one level - Rimuovi l'indentazione di un livello + Rimuovi l'indentazione di un livello - Cancel - Annulla + Annulla - Undo last command - Annulla l'ultimo comando + Annulla l'ultimo comando - Redo last command - Ripristina l'ultimo comando + Ripristina l'ultimo comando - Zoom in - Ingrandisci + Ingrandisci - Zoom out - Rimpicciolisci + Rimpicciolisci QsciLexerCPP - Default - Default + Default - Inactive default - Default inattivo + Default inattivo - C comment - Commento C + Commento C - Inactive C comment - Commento C inattivo + Commento C inattivo - C++ comment - Commento C++ + Commento C++ - Inactive C++ comment - Commento C++ inattivo + Commento C++ inattivo - JavaDoc style C comment - Commento JavaDoc in stile C + Commento JavaDoc in stile C - Inactive JavaDoc style C comment - Commento JavaDoc in stile C inattivo + Commento JavaDoc in stile C inattivo - Number - Numero + Numero - Inactive number - Numero inattivo + Numero inattivo - Keyword - Parola chiave + Parola chiave - Inactive keyword - Parola chiave inattiva + Parola chiave inattiva - Double-quoted string - Stringa tra virgolette + Stringa tra virgolette - Inactive double-quoted string - Stringa tra virgolette inattiva + Stringa tra virgolette inattiva - Single-quoted string - Stringa tra singoli apici + Stringa tra singoli apici - Inactive single-quoted string - Stringa tra singoli apici inattiva + Stringa tra singoli apici inattiva - IDL UUID - IDL UUID + IDL UUID - Inactive IDL UUID - IDL UUID inattivo + IDL UUID inattivo - Pre-processor block - Blocco di pre-processore + Blocco di pre-processore - Inactive pre-processor block - Blocco di pre-processore inattivo + Blocco di pre-processore inattivo - Operator - Operatore + Operatore - Inactive operator - Operatore inattivo + Operatore inattivo - Identifier - Identificatore + Identificatore - Inactive identifier - Identificatore inattivo + Identificatore inattivo - Unclosed string - Stringa non terminata + Stringa non terminata - Inactive unclosed string - Stringa non terminata inattiva + Stringa non terminata inattiva - C# verbatim string - Stringa verbatim in C# + Stringa verbatim in C# - Inactive C# verbatim string - Stringa verbatim in C# inattiva + Stringa verbatim in C# inattiva - JavaScript regular expression - Espressione regolare JavaScript + Espressione regolare JavaScript - Inactive JavaScript regular expression - Espressione regolare JavaScript inattiva + Espressione regolare JavaScript inattiva - JavaDoc style C++ comment - Commmento JavaDoc in stile C++ + Commmento JavaDoc in stile C++ - Inactive JavaDoc style C++ comment - Commento JavaDoc in stile C++ inattivo + Commento JavaDoc in stile C++ inattivo - Secondary keywords and identifiers - Parole chiave e identificatori secondari + Parole chiave e identificatori secondari - Inactive secondary keywords and identifiers - Parole chiave e identificatori secondari inattivi + Parole chiave e identificatori secondari inattivi - JavaDoc keyword - Parola chiave JavaDoc + Parola chiave JavaDoc - Inactive JavaDoc keyword - Parola chiave JavaDoc inattiva + Parola chiave JavaDoc inattiva - JavaDoc keyword error - Parola chiave JavaDoc errata + Parola chiave JavaDoc errata - Inactive JavaDoc keyword error - Parola chiava JavaDoc errata inattiva + Parola chiava JavaDoc errata inattiva - Global classes and typedefs - Classi globali e typedefs + Classi globali e typedefs - Inactive global classes and typedefs - Classi globali e typedefs inattive + Classi globali e typedefs inattive - C++ raw string - Stringa grezza C++ + Stringa grezza C++ - Inactive C++ raw string - Stringa grezza C++ inattiva + Stringa grezza C++ inattiva - Vala triple-quoted verbatim string - Stringa Vala tri-apicata verbatim + Stringa Vala tri-apicata verbatim - Inactive Vala triple-quoted verbatim string - Stringa Vala tri-apicata verbatim inattiva + Stringa Vala tri-apicata verbatim inattiva - Pike hash-quoted string - Stringa Pike tra hash + Stringa Pike tra hash - Inactive Pike hash-quoted string - Stringa Pike tra hash inattiva + Stringa Pike tra hash inattiva - Pre-processor C comment - Commento di pre-processore C + Commento di pre-processore C - Inactive pre-processor C comment - Commento di pre-processore C inattivo + Commento di pre-processore C inattivo - JavaDoc style pre-processor comment - Commento di pre-processore in stile JavaDoc + Commento di pre-processore in stile JavaDoc - Inactive JavaDoc style pre-processor comment - Commento di pre-processore in stile JavaDoc inattivo + Commento di pre-processore in stile JavaDoc inattivo - User-defined literal - Letterale definito dall'utente + Letterale definito dall'utente - Inactive user-defined literal - Letterale definito dall'utente inattivo + Letterale definito dall'utente inattivo - Task marker - Segno di Task + Segno di Task - Inactive task marker - Segno di Task inattivo + Segno di Task inattivo - Escape sequence - Sequenza di escape + Sequenza di escape - Inactive escape sequence - Sequenza di escape inattiva + Sequenza di escape inattiva QsciLexerHTML - HTML default - Default HTML + Default HTML - Tag - Tag + Tag - Unknown tag - Tag sconosciuto + Tag sconosciuto - Attribute - Attributo + Attributo - Unknown attribute - Attributo sconosciuto + Attributo sconosciuto - HTML number - Numero HTML + Numero HTML - HTML double-quoted string - Stringa tra virgolette in HTML + Stringa tra virgolette in HTML - HTML single-quoted string - Stringa tra apici in HTML + Stringa tra apici in HTML - Other text in a tag - Altro test in un tag + Altro test in un tag - HTML comment - Commento HTML + Commento HTML - Entity - Entità + Entità - End of a tag - Fine di un tag + Fine di un tag - Start of an XML fragment - Inizio di un frammento XML + Inizio di un frammento XML - End of an XML fragment - Fine di un frammento XML + Fine di un frammento XML - Script tag - Tag di script + Tag di script - Start of an ASP fragment with @ - Inizio di un frammento ASP con @ + Inizio di un frammento ASP con @ - Start of an ASP fragment - Inizio di un frammento ASP + Inizio di un frammento ASP - CDATA - CDATA + CDATA - Start of a PHP fragment - Inizio di un frammento PHP + Inizio di un frammento PHP - Unquoted HTML value - Valore HTML senza apici + Valore HTML senza apici - ASP X-Code comment - Commento di codice ASP X + Commento di codice ASP X - SGML default - Default SGML + Default SGML - SGML command - Comando SGML + Comando SGML - First parameter of an SGML command - Primo parametro di un comando SGML + Primo parametro di un comando SGML - SGML double-quoted string - Stringa tra virgolette SGML + Stringa tra virgolette SGML - SGML single-quoted string - Stringa tra apici SGML + Stringa tra apici SGML - SGML error - Errore SGML + Errore SGML - SGML special entity - Entità speciale SGML + Entità speciale SGML - SGML comment - Commento SGML + Commento SGML - First parameter comment of an SGML command - Primo parametro di un comando SGML + Primo parametro di un comando SGML - SGML block default - Blocco di default SGML + Blocco di default SGML - Start of a JavaScript fragment - Inizio di un frammento JavaScript + Inizio di un frammento JavaScript - JavaScript default - Default JavaScript + Default JavaScript - JavaScript comment - Commento JavaScript + Commento JavaScript - JavaScript line comment - Commento di riga JavaScript + Commento di riga JavaScript - JavaDoc style JavaScript comment - Commento JavaScript in stile JavaDoc + Commento JavaScript in stile JavaDoc - JavaScript number - Numero JavaScript + Numero JavaScript - JavaScript word - Parola JavaScript + Parola JavaScript - JavaScript keyword - Parola chiave JavaScript + Parola chiave JavaScript - JavaScript double-quoted string - Stringa tra virgolette JavaScript + Stringa tra virgolette JavaScript - JavaScript single-quoted string - Stringa tra apici JavaScript + Stringa tra apici JavaScript - JavaScript symbol - Simbolo JavaScript + Simbolo JavaScript - JavaScript unclosed string - Stringa non delimitata JavaScript + Stringa non delimitata JavaScript - JavaScript regular expression - Espressione regolare JavaScript + Espressione regolare JavaScript - Start of an ASP JavaScript fragment - Inizio di un frammento ASP in JavaScript + Inizio di un frammento ASP in JavaScript - ASP JavaScript default - Default ASP JavaScript + Default ASP JavaScript - ASP JavaScript comment - Commento ASP JavaScript + Commento ASP JavaScript - ASP JavaScript line comment - Line di commento ASP JavaScript + Line di commento ASP JavaScript - JavaDoc style ASP JavaScript comment - Commento ASP JavaScript in stile JavaDoc + Commento ASP JavaScript in stile JavaDoc - ASP JavaScript number - Numero ASP JavaScript + Numero ASP JavaScript - ASP JavaScript word - Parola ASP JavaScript + Parola ASP JavaScript - ASP JavaScript keyword - Parola chiave ASP JavaScript + Parola chiave ASP JavaScript - ASP JavaScript double-quoted string - Stringa ASP JavaScript tra virgolette + Stringa ASP JavaScript tra virgolette - ASP JavaScript single-quoted string - Stringa ASP JavaScript tra apici + Stringa ASP JavaScript tra apici - ASP JavaScript symbol - Simbolo ASP JavaScript + Simbolo ASP JavaScript - ASP JavaScript unclosed string - Stringa non delimitata ASP JavaScript + Stringa non delimitata ASP JavaScript - ASP JavaScript regular expression - Espressione regolare ASP JavaScript + Espressione regolare ASP JavaScript - Start of a VBScript fragment - Inizio di un frammento VBScript + Inizio di un frammento VBScript - VBScript default - Default VBScript + Default VBScript - VBScript comment - Commento VBScript + Commento VBScript - VBScript number - Numero VBScript + Numero VBScript - VBScript keyword - Parola chiave VBScript + Parola chiave VBScript - VBScript string - Stringa VBScript + Stringa VBScript - VBScript identifier - Identificatore VBScript + Identificatore VBScript - VBScript unclosed string - Stringa non delimitata VBScript + Stringa non delimitata VBScript - Start of an ASP VBScript fragment - Inizio di un frammento ASP VBScript + Inizio di un frammento ASP VBScript - ASP VBScript default - Default ASP VBScript + Default ASP VBScript - ASP VBScript comment - Commento ASP VBScript + Commento ASP VBScript - ASP VBScript number - Numero ASP VBScript + Numero ASP VBScript - ASP VBScript keyword - Parola chiave ASP VBScript + Parola chiave ASP VBScript - ASP VBScript string - Stringa ASP VBScript + Stringa ASP VBScript - ASP VBScript identifier - Identificatore ASP VBScript + Identificatore ASP VBScript - ASP VBScript unclosed string - Stringa non delimitata ASP VBScript + Stringa non delimitata ASP VBScript - Start of a Python fragment - Inizio di un frammento Python + Inizio di un frammento Python - Python default - Default Python + Default Python - Python comment - Commento Python + Commento Python - Python number - Numero Python + Numero Python - Python double-quoted string - Stringa tra virgolette Python + Stringa tra virgolette Python - Python single-quoted string - Stringa tra apici Python + Stringa tra apici Python - Python keyword - Parola chiave Python + Parola chiave Python - Python triple double-quoted string - Stringa tra tripilci virgolette Python + Stringa tra tripilci virgolette Python - Python triple single-quoted string - Stringa tra triplici apici Python + Stringa tra triplici apici Python - Python class name - Nome di classe Python + Nome di classe Python - Python function or method name - Funzione o nome di metodo Python + Funzione o nome di metodo Python - Python operator - Operatore Python + Operatore Python - Python identifier - Identificatore Python + Identificatore Python - Start of an ASP Python fragment - Inizio di un frammento ASP Python + Inizio di un frammento ASP Python - ASP Python default - Default ASP Python + Default ASP Python - ASP Python comment - Commento ASP Python + Commento ASP Python - ASP Python number - Numero ASP Python + Numero ASP Python - ASP Python double-quoted string - Stringa tra virgolette ASP Python + Stringa tra virgolette ASP Python - ASP Python single-quoted string - Stringa tra apici ASP Python + Stringa tra apici ASP Python - ASP Python keyword - Parola chiave ASP Python + Parola chiave ASP Python - ASP Python triple double-quoted string - Stringa tra triplici virgolette ASP Python + Stringa tra triplici virgolette ASP Python - ASP Python triple single-quoted string - Stringa tra triplici apici ASP Python + Stringa tra triplici apici ASP Python - ASP Python class name - Nome di classe ASP Python + Nome di classe ASP Python - ASP Python function or method name - Nome di funzione o metodo ASP Python + Nome di funzione o metodo ASP Python - ASP Python operator - Operatore ASP Python + Operatore ASP Python - ASP Python identifier - Identificatore ASP Python + Identificatore ASP Python - PHP default - Default PHP + Default PHP - PHP double-quoted string - Stringa tra virgolette PHP + Stringa tra virgolette PHP - PHP single-quoted string - Stringa tra apici PHP + Stringa tra apici PHP - PHP keyword - Parola chiave PHP + Parola chiave PHP - PHP number - Numero PHP + Numero PHP - PHP variable - Variabile PHP + Variabile PHP - PHP comment - Commento PHP + Commento PHP - PHP line comment - Commento di linea PHP + Commento di linea PHP - PHP double-quoted variable - Variabile tra virgolette PHP + Variabile tra virgolette PHP - PHP operator - Operatore PHP + Operatore PHP QsciLexerJSON - Default - Default + Default - Number - Numero + Numero - String - Stringa + Stringa - Unclosed string - Stringa non delimitata + Stringa non delimitata - Property - Proprietà + Proprietà - Escape sequence - Sequenza di escape + Sequenza di escape - Line comment - Commento di linea + Commento di linea - Block comment - Commento in blocco + Commento in blocco - Operator - Operatore + Operatore - IRI - IRI + IRI - JSON-LD compact IRI - JSON-LD IRI compatto + JSON-LD IRI compatto - JSON keyword - Parola chiave JSON + Parola chiave JSON - JSON-LD keyword - Parola chiave JSON-LD + Parola chiave JSON-LD - Parsing error - Errore di analisi + Errore di analisi QsciLexerJavaScript - Regular expression - Espressione regolare + Espressione regolare QsciLexerPython - Default - Default + Default - Comment - Commento + Commento - Number - Numero + Numero - Double-quoted string - Stringa tra virgolette + Stringa tra virgolette - Single-quoted string - Stringa tra apici + Stringa tra apici - Keyword - Parola chiave + Parola chiave - Triple single-quoted string - Stringa tra triplici apici + Stringa tra triplici apici - Triple double-quoted string - Stringa tra triplici virgolette + Stringa tra triplici virgolette - Class name - Nome di classe + Nome di classe - Function or method name - Nome di funzione o metodo + Nome di funzione o metodo - Operator - Operatore + Operatore - Identifier - Identificatore + Identificatore - Comment block - Commento in blocco + Commento in blocco - Unclosed string - Stringa non delimitata + Stringa non delimitata - Highlighted identifier - Identificatore evidenziato + Identificatore evidenziato - Decorator - Decoratore + Decoratore - Double-quoted f-string - Stringa-f tra virgolette + Stringa-f tra virgolette - Single-quoted f-string - Stringa-f tra singoli apici + Stringa-f tra singoli apici - Triple single-quoted f-string - Stringa-f tra triplici apici + Stringa-f tra triplici apici - Triple double-quoted f-string - Stringa-f tra triplici virgolette + Stringa-f tra triplici virgolette QsciLexerSQL - Default - Default + Default - Comment - Commento + Commento - Comment line - Commento di linea + Commento di linea - JavaDoc style comment - Commento in stile JavaDoc + Commento in stile JavaDoc - Number - Numero + Numero - Keyword - Parola chiave + Parola chiave - Double-quoted string - Stringa tra virgolette + Stringa tra virgolette - Single-quoted string - Stringa tra apici + Stringa tra apici - SQL*Plus keyword - Parola chiave SQL*Plus + Parola chiave SQL*Plus - SQL*Plus prompt - Richiesta SQL*Plus + Richiesta SQL*Plus - Operator - Operatore + Operatore - Identifier - Identificatore + Identificatore - SQL*Plus comment - Commento SQL*Plus + Commento SQL*Plus - # comment line - # commento di linea + # commento di linea - JavaDoc keyword - Parola chiave JavaDoc + Parola chiave JavaDoc - JavaDoc keyword error - Errore parola chiave JavaDoc + Errore parola chiave JavaDoc - User defined 1 - Definito dall'utente 1 + Definito dall'utente 1 - User defined 2 - Definito dall'utente 2 + Definito dall'utente 2 - User defined 3 - Definito dall'utente 3 + Definito dall'utente 3 - User defined 4 - Definito dall'utente 4 + Definito dall'utente 4 - Quoted identifier - Identificatore di citazione + Identificatore di citazione - Quoted operator - Operatore di citazione + Operatore di citazione QsciScintilla - &Undo - A&nnulla + A&nnulla - &Redo - &Ripristina + &Ripristina - Cu&t - &Taglia + &Taglia - &Copy - &Copia + &Copia - &Paste - &Incolla + &Incolla - Delete - Elimina + Elimina - Select All - Seleziona tutto + Seleziona tutto @@ -7644,1663 +7317,12 @@ Si prega di ricontrollare. Carica Database - - Extend selection to first visible character in document line - - - - - Extend rectangular selection to first visible character in document line - - - - - Move to first visible character of display in document line - - - - - Extend selection to first visible character in display or document line - - - - - Move to end of document line - - - - - Extend selection to end of document line - - - - - Extend rectangular selection to end of document line - - - - - Move to end of display line - - - - - Extend selection to end of display line - - - - - Move to end of display or document line - - - - - Extend selection to end of display or document line - - - - - Move to start of document - - - - - Extend selection to start of document - - - - - Move to end of document - - - - - Extend selection to end of document - - - - - Move up one page - - - - - Extend selection up one page - - - - - Extend rectangular selection up one page - - - - - Move down one page - - - - - Extend selection down one page - - - - - Extend rectangular selection down one page - - - - - Stuttered move up one page - - - - - Stuttered extend selection up one page - - - - - Stuttered move down one page - - - - - Stuttered extend selection down one page - - - - - Delete current character - - - - - Delete previous character - - - - - Delete previous character if not at start of line - - - - - Delete word to left - - - - - Delete word to right - - - - - Delete right to end of next word - - - - - Delete line to left - - - - - Delete line to right - - - - - Delete current line - - - - - Cut current line - - - - - Copy current line - - - - - Transpose current and previous lines - - - - - Duplicate the current line - - - - - Select all - - - - - Move selected lines up one line - - - - - Move selected lines down one line - - - - - Duplicate selection - - - - - Convert selection to lower case - - - - - Convert selection to upper case - - - - - Cut selection - - - - - Copy selection - - - - Paste - Incolla - - - - Toggle insert/overtype - + Incolla - - Insert newline - - - - - Formfeed - - - - - Indent one level - - - - - De-indent one level - - - - Cancel - Annulla - - - - Undo last command - - - - - Redo last command - - - - - Zoom in - - - - - Zoom out - - - - - QsciLexerCPP - - - Default - Default - - - - Inactive default - - - - - C comment - - - - - Inactive C comment - - - - - C++ comment - - - - - Inactive C++ comment - - - - - JavaDoc style C comment - - - - - Inactive JavaDoc style C comment - - - - - Number - - - - - Inactive number - - - - - Keyword - Parola chiave - - - - Inactive keyword - - - - - Double-quoted string - - - - - Inactive double-quoted string - - - - - Single-quoted string - - - - - Inactive single-quoted string - - - - - IDL UUID - - - - - Inactive IDL UUID - - - - - Pre-processor block - - - - - Inactive pre-processor block - - - - - Operator - - - - - Inactive operator - - - - - Identifier - Identificatore - - - - Inactive identifier - - - - - Unclosed string - - - - - Inactive unclosed string - - - - - C# verbatim string - - - - - Inactive C# verbatim string - - - - - JavaScript regular expression - - - - - Inactive JavaScript regular expression - - - - - JavaDoc style C++ comment - - - - - Inactive JavaDoc style C++ comment - - - - - Secondary keywords and identifiers - - - - - Inactive secondary keywords and identifiers - - - - - JavaDoc keyword - - - - - Inactive JavaDoc keyword - - - - - JavaDoc keyword error - - - - - Inactive JavaDoc keyword error - - - - - Global classes and typedefs - - - - - Inactive global classes and typedefs - - - - - C++ raw string - - - - - Inactive C++ raw string - - - - - Vala triple-quoted verbatim string - - - - - Inactive Vala triple-quoted verbatim string - - - - - Pike hash-quoted string - - - - - Inactive Pike hash-quoted string - - - - - Pre-processor C comment - - - - - Inactive pre-processor C comment - - - - - JavaDoc style pre-processor comment - - - - - Inactive JavaDoc style pre-processor comment - - - - - User-defined literal - - - - - Inactive user-defined literal - - - - - Task marker - - - - - Inactive task marker - - - - - Escape sequence - - - - - Inactive escape sequence - - - - - QsciLexerHTML - - - HTML default - - - - - Tag - - - - - Unknown tag - - - - - Attribute - - - - - Unknown attribute - - - - - HTML number - - - - - HTML double-quoted string - - - - - HTML single-quoted string - - - - - Other text in a tag - - - - - HTML comment - - - - - Entity - - - - - End of a tag - - - - - Start of an XML fragment - - - - - End of an XML fragment - - - - - Script tag - - - - - Start of an ASP fragment with @ - - - - - Start of an ASP fragment - - - - - CDATA - - - - - Start of a PHP fragment - - - - - Unquoted HTML value - - - - - ASP X-Code comment - - - - - SGML default - - - - - SGML command - - - - - First parameter of an SGML command - - - - - SGML double-quoted string - - - - - SGML single-quoted string - - - - - SGML error - - - - - SGML special entity - - - - - SGML comment - - - - - First parameter comment of an SGML command - - - - - SGML block default - - - - - Start of a JavaScript fragment - - - - - JavaScript default - - - - - JavaScript comment - - - - - JavaScript line comment - - - - - JavaDoc style JavaScript comment - - - - - JavaScript number - - - - - JavaScript word - - - - - JavaScript keyword - - - - - JavaScript double-quoted string - - - - - JavaScript single-quoted string - - - - - JavaScript symbol - - - - - JavaScript unclosed string - - - - - JavaScript regular expression - - - - - Start of an ASP JavaScript fragment - - - - - ASP JavaScript default - - - - - ASP JavaScript comment - - - - - ASP JavaScript line comment - - - - - JavaDoc style ASP JavaScript comment - - - - - ASP JavaScript number - - - - - ASP JavaScript word - - - - - ASP JavaScript keyword - - - - - ASP JavaScript double-quoted string - - - - - ASP JavaScript single-quoted string - - - - - ASP JavaScript symbol - - - - - ASP JavaScript unclosed string - - - - - ASP JavaScript regular expression - - - - - Start of a VBScript fragment - - - - - VBScript default - - - - - VBScript comment - - - - - VBScript number - - - - - VBScript keyword - - - - - VBScript string - - - - - VBScript identifier - - - - - VBScript unclosed string - - - - - Start of an ASP VBScript fragment - - - - - ASP VBScript default - - - - - ASP VBScript comment - - - - - ASP VBScript number - - - - - ASP VBScript keyword - - - - - ASP VBScript string - - - - - ASP VBScript identifier - - - - - ASP VBScript unclosed string - - - - - Start of a Python fragment - - - - - Python default - - - - - Python comment - - - - - Python number - - - - - Python double-quoted string - - - - - Python single-quoted string - - - - - Python keyword - - - - - Python triple double-quoted string - - - - - Python triple single-quoted string - - - - - Python class name - - - - - Python function or method name - - - - - Python operator - - - - - Python identifier - - - - - Start of an ASP Python fragment - - - - - ASP Python default - - - - - ASP Python comment - - - - - ASP Python number - - - - - ASP Python double-quoted string - - - - - ASP Python single-quoted string - - - - - ASP Python keyword - - - - - ASP Python triple double-quoted string - - - - - ASP Python triple single-quoted string - - - - - ASP Python class name - - - - - ASP Python function or method name - - - - - ASP Python operator - - - - - ASP Python identifier - - - - - PHP default - - - - - PHP double-quoted string - - - - - PHP single-quoted string - - - - - PHP keyword - - - - - PHP number - - - - - PHP variable - - - - - PHP comment - - - - - PHP line comment - - - - - PHP double-quoted variable - - - - - PHP operator - - - - - QsciLexerJSON - - - Default - Default - - - - Number - - - - - String - Stringa - - - - Unclosed string - - - - - Property - - - - - Escape sequence - - - - - Line comment - - - - - Block comment - - - - - Operator - - - - - IRI - - - - - JSON-LD compact IRI - - - - - JSON keyword - - - - - JSON-LD keyword - - - - - Parsing error - - - - - QsciLexerJavaScript - - - Regular expression - Espressione regolare - - - - QsciLexerPython - - - Default - Default - - - - Comment - Commento - - - - Number - - - - - Double-quoted string - - - - - Single-quoted string - - - - - Keyword - Parola chiave - - - - Triple single-quoted string - - - - - Triple double-quoted string - - - - - Class name - - - - - Function or method name - - - - - Operator - - - - - Identifier - Identificatore - - - - Comment block - - - - - Unclosed string - - - - - Highlighted identifier - - - - - Decorator - - - - - Double-quoted f-string - - - - - Single-quoted f-string - - - - - Triple single-quoted f-string - - - - - Triple double-quoted f-string - - - - - QsciLexerSQL - - - Default - Default - - - - Comment - Commento - - - - Comment line - - - - - JavaDoc style comment - - - - - Number - - - - - Keyword - Parola chiave - - - - Double-quoted string - - - - - Single-quoted string - - - - - SQL*Plus keyword - - - - - SQL*Plus prompt - - - - - Operator - - - - - Identifier - Identificatore - - - - SQL*Plus comment - - - - - # comment line - - - - - JavaDoc keyword - - - - - JavaDoc keyword error - - - - - User defined 1 - - - - - User defined 2 - - - - - User defined 3 - - - - - User defined 4 - - - - - Quoted identifier - - - - - Quoted operator - - - - - QsciScintilla - - - &Undo - A&nnulla - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - Delete - - - - - Select All - - - - - RemoteCommitsModel - - - Commit ID - ID Commit - - - - 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 - - - - Upload - Carica - - - - 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, si possono aggiungere database dal sito web dbhub.io a DB Browser for SQLite. 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;">Collegati al sito web dbhub.io (usa le tue credenziali GitHub o quello che preferisci)</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 certificato client&quot; (è la tua identità). Che ti fornirà un file di certificato (salvalo sul tuo 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 seleziona il file di certificato appena scaricato.</li></ol><p>Ora il pannello "Remoto" mostra la tua identità e tu puoi aggiungere database remoti.</p></body></html> - - - - Local - Locale - - - - Current Database - Database Corrente - - - - Clone - Clona - - - - Branch - Ramo - - - - Commits - Commits - - - - Commits for - Commits per - - - - Delete Database - Elimina Database - - - - Delete the local clone of this database - Elimina la copia locale di questo database - - - - Open in Web Browser - Apri nel Browser Web - - - - Open the web page for the current database in your browser - Apre una pagina web per il database corrente nel tuo browser - - - - Clone from Link - Clona da 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 localmente utilizzando una URL fornita dalla pagina web del database. - - - - Refresh - Aggiorna - - - - Reload all data and update the views - Ricarica tutti i dati e aggiornal le viste - - - - 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 - Passare a Commit - - - - Download and open this specific commit - Scarica ed apre questo commit specifico - - - - Check out Latest Commit - Passare all'ultimo Commit - - - - Check out the latest commit of the current branch - Passa all'ultimo comit del ramo corrente - - - - Save Revision to File - Salva revisione su File - - - - Saves the selected revision of the database to another file - Salva la revisione selezionata del database in un altro file - - - - Upload Database - Carica Database + Annulla @@ -11094,19 +9116,16 @@ Lasciare il campo vuoto per utilizzare la codifica del database. UndoStack - Inserting %1 bytes - Inserisco %1 bytes + Inserisco %1 bytes - Delete %1 chars - Elimino %1 caratteri + Elimino %1 caratteri - Overwrite %1 chars - Sovrascrivo %1 caratteri + Sovrascrivo %1 caratteri diff --git a/src/translations/sqlb_ja.ts b/src/translations/sqlb_ja.ts index aa3a0c6a8..dbbfdb394 100644 --- a/src/translations/sqlb_ja.ts +++ b/src/translations/sqlb_ja.ts @@ -5780,1660 +5780,94 @@ Please check again. QsciCommand - - Move down one line - - - - - Extend selection down one line - - - - - Extend rectangular selection down one line - - - - - Scroll view down one line - - - - - Move up one line - - - - - Extend selection up one line - - - - - Extend rectangular selection up one line - - - - - Scroll view up one line - - - - - Scroll to start of document - - - - - Scroll to end of document - - - - - Scroll vertically to centre current line - - - - - Move down one paragraph - - - - - Extend selection down one paragraph - - - - - Move up one paragraph - - - - - Extend selection up one paragraph - - - - - Move left one character - - - - - Extend selection left one character - - - - - Extend rectangular selection left one character - - - - - Move right one character - - - - - Extend selection right one character - - - - - Extend rectangular selection right one character - - - - - Move left one word - - - - - Extend selection left one word - - - - - Move right one word - - - - - Extend selection right one word - - - - - Move to end of previous word - - - - - Extend selection to end of previous word - - - - - Move to end of next word - - - - - Extend selection to end of next word - - - - - Move left one word part - - - - - Extend selection left one word part - - - - - Move right one word part - - - - - Extend selection right one word part - - - - - Move to start of document line - - - - - Extend selection to start of document line - - - - - Extend rectangular selection to start of document line - - - - - Move to start of display line - - - - - Extend selection to start of display line - - - - - Move to start of display or document line - - - - - Extend selection to start of display or document line - - - - - Move to first visible character in document line - - - - - Extend selection to first visible character in document line - - - - - Extend rectangular selection to first visible character in document line - - - - - Move to first visible character of display in document line - - - - - Extend selection to first visible character in display or document line - - - - - Move to end of document line - - - - - Extend selection to end of document line - - - - - Extend rectangular selection to end of document line - - - - - Move to end of display line - - - - - Extend selection to end of display line - - - - - Move to end of display or document line - - - - - Extend selection to end of display or document line - - - - - Move to start of document - - - - - Extend selection to start of document - - - - - Move to end of document - - - - - Extend selection to end of document - - - - - Move up one page - - - - - Extend selection up one page - - - - - Extend rectangular selection up one page - - - - - Move down one page - - - - - Extend selection down one page - - - - - Extend rectangular selection down one page - - - - - Stuttered move up one page - - - - - Stuttered extend selection up one page - - - - - Stuttered move down one page - - - - - Stuttered extend selection down one page - - - - - Delete current character - - - - - Delete previous character - - - - - Delete previous character if not at start of line - - - - - Delete word to left - - - - - Delete word to right - - - - - Delete right to end of next word - - - - - Delete line to left - - - - - Delete line to right - - - - - Delete current line - - - - - Cut current line - - - - - Copy current line - - - - - Transpose current and previous lines - - - - - Duplicate the current line - - - - - Select all - - - - - Move selected lines up one line - - - - - Move selected lines down one line - - - - - Duplicate selection - - - - - Convert selection to lower case - - - - - Convert selection to upper case - - - - - Cut selection - - - - - Copy selection - - - - - Paste - 貼り付け - - - - Toggle insert/overtype - - - - - Insert newline - - - - - Formfeed - - - - - Indent one level - - - - - De-indent one level - - - - - Cancel - キャンセル - - - - Undo last command - - - - - Redo last command - - - - - Zoom in - - - - - Zoom out - - - - - QsciLexerCPP - - - Default - デフォルト - - - - Inactive default - - - - - C comment - - - - - Inactive C comment - - - - - C++ comment - - - - - Inactive C++ comment - - - - - JavaDoc style C comment - - - - - Inactive JavaDoc style C comment - - - - - Number - - - - - Inactive number - - - - - Keyword - キーワード - - - - Inactive keyword - - - - - Double-quoted string - - - - - Inactive double-quoted string - - - - - Single-quoted string - - - - - Inactive single-quoted string - - - - - IDL UUID - - - - - Inactive IDL UUID - - - - - Pre-processor block - - - - - Inactive pre-processor block - - - - - Operator - - - - - Inactive operator - - - - - Identifier - 識別子 - - - - Inactive identifier - - - - - Unclosed string - - - - - Inactive unclosed string - - - - - C# verbatim string - - - - - Inactive C# verbatim string - - - - - JavaScript regular expression - - - - - Inactive JavaScript regular expression - - - - - JavaDoc style C++ comment - - - - - Inactive JavaDoc style C++ comment - - - - - Secondary keywords and identifiers - - - - - Inactive secondary keywords and identifiers - - - - - JavaDoc keyword - - - - - Inactive JavaDoc keyword - - - - - JavaDoc keyword error - - - - - Inactive JavaDoc keyword error - - - - - Global classes and typedefs - - - - - Inactive global classes and typedefs - - - - - C++ raw string - - - - - Inactive C++ raw string - - - - - Vala triple-quoted verbatim string - - - - - Inactive Vala triple-quoted verbatim string - - - - - Pike hash-quoted string - - - - - Inactive Pike hash-quoted string - - - - - Pre-processor C comment - - - - - Inactive pre-processor C comment - - - - - JavaDoc style pre-processor comment - - - - - Inactive JavaDoc style pre-processor comment - - - - - User-defined literal - - - - - Inactive user-defined literal - - - - - Task marker - - - - - Inactive task marker - - - - - Escape sequence - - - - - Inactive escape sequence - - - - - QsciLexerHTML - - - HTML default - - - - - Tag - - - - - Unknown tag - - - - - Attribute - - - - - Unknown attribute - - - - - HTML number - - - - - HTML double-quoted string - - - - - HTML single-quoted string - - - - - Other text in a tag - - - - - HTML comment - - - - - Entity - - - - - End of a tag - - - - - Start of an XML fragment - - - - - End of an XML fragment - - - - - Script tag - - - - - Start of an ASP fragment with @ - - - - - Start of an ASP fragment - - - - - CDATA - - - - - Start of a PHP fragment - - - - - Unquoted HTML value - - - - - ASP X-Code comment - - - - - SGML default - - - - - SGML command - - - - - First parameter of an SGML command - - - - - SGML double-quoted string - - - - - SGML single-quoted string - - - - - SGML error - - - - - SGML special entity - - - - - SGML comment - - - - - First parameter comment of an SGML command - - - - - SGML block default - - - - - Start of a JavaScript fragment - - - - - JavaScript default - - - - - JavaScript comment - - - - - JavaScript line comment - - - - - JavaDoc style JavaScript comment - - - - - JavaScript number - - - - - JavaScript word - - - - - JavaScript keyword - - - - - JavaScript double-quoted string - - - - - JavaScript single-quoted string - - - - - JavaScript symbol - - - - - JavaScript unclosed string - - - - - JavaScript regular expression - - - - - Start of an ASP JavaScript fragment - - - - - ASP JavaScript default - - - - - ASP JavaScript comment - - - - - ASP JavaScript line comment - - - - - JavaDoc style ASP JavaScript comment - - - - - ASP JavaScript number - - - - - ASP JavaScript word - - - - - ASP JavaScript keyword - - - - - ASP JavaScript double-quoted string - - - - - ASP JavaScript single-quoted string - - - - - ASP JavaScript symbol - - - - - ASP JavaScript unclosed string - - - - - ASP JavaScript regular expression - - - - - Start of a VBScript fragment - - - - - VBScript default - - - - - VBScript comment - - - - - VBScript number - - - - - VBScript keyword - - - - - VBScript string - - - - - VBScript identifier - - - - - VBScript unclosed string - - - - - Start of an ASP VBScript fragment - - - - - ASP VBScript default - - - - - ASP VBScript comment - - - - - ASP VBScript number - - - - - ASP VBScript keyword - - - - - ASP VBScript string - - - - - ASP VBScript identifier - - - - - ASP VBScript unclosed string - - - - - Start of a Python fragment - - - - - Python default - - - - - Python comment - - - - - Python number - - - - - Python double-quoted string - - - - - Python single-quoted string - - - - - Python keyword - - - - - Python triple double-quoted string - - - - - Python triple single-quoted string - - - - - Python class name - - - - - Python function or method name - - - - - Python operator - - - - - Python identifier - - - - - Start of an ASP Python fragment - - - - - ASP Python default - - - - - ASP Python comment - - - - - ASP Python number - - - - - ASP Python double-quoted string - - - - - ASP Python single-quoted string - - - - - ASP Python keyword - - - - - ASP Python triple double-quoted string - - - - - ASP Python triple single-quoted string - - - - - ASP Python class name - - - - - ASP Python function or method name - - - - - ASP Python operator - - - - - ASP Python identifier - - - - - PHP default - - - - - PHP double-quoted string - - - - - PHP single-quoted string - - - - - PHP keyword - - - - - PHP number - - - - - PHP variable - + Paste + 貼り付け - - PHP comment - + Cancel + キャンセル + + + QsciLexerCPP - - PHP line comment - + Default + デフォルト - - PHP double-quoted variable - + Keyword + キーワード - - PHP operator - + Identifier + 識別子 QsciLexerJSON - Default - デフォルト + デフォルト - - Number - - - - String - 文字列 - - - - Unclosed string - - - - - Property - - - - - Escape sequence - - - - - Line comment - - - - - Block comment - - - - - Operator - - - - - IRI - - - - - JSON-LD compact IRI - - - - - JSON keyword - - - - - JSON-LD keyword - - - - - Parsing error - + 文字列 QsciLexerJavaScript - Regular expression - 正規表現 + 正規表現 QsciLexerPython - Default - デフォルト + デフォルト - Comment - コメント + コメント - - Number - - - - - Double-quoted string - - - - - Single-quoted string - - - - Keyword - キーワード - - - - Triple single-quoted string - - - - - Triple double-quoted string - - - - - Class name - - - - - Function or method name - - - - - Operator - + キーワード - Identifier - 識別子 - - - - Comment block - - - - - Unclosed string - - - - - Highlighted identifier - - - - - Decorator - - - - - Double-quoted f-string - - - - - Single-quoted f-string - - - - - Triple single-quoted f-string - - - - - Triple double-quoted f-string - + 識別子 QsciLexerSQL - Default - デフォルト + デフォルト - Comment - コメント + コメント - - Comment line - - - - - JavaDoc style comment - - - - - Number - - - - Keyword - キーワード - - - - Double-quoted string - - - - - Single-quoted string - - - - - SQL*Plus keyword - - - - - SQL*Plus prompt - - - - - Operator - + キーワード - Identifier - 識別子 - - - - SQL*Plus comment - - - - - # comment line - - - - - JavaDoc keyword - - - - - JavaDoc keyword error - - - - - User defined 1 - - - - - User defined 2 - - - - - User defined 3 - - - - - User defined 4 - - - - - Quoted identifier - - - - - Quoted operator - + 識別子 QsciScintilla - &Undo - 元に戻す(&U) - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - Delete - + 元に戻す(&U) - Select All - すべて選択 + すべて選択 @@ -9433,24 +7867,6 @@ Leave the field empty for using the database encoding. データ閲覧に新しい名前を付けます。'&&'を付けるとその次の文字をキーボードのショートカットにできます。 - - UndoStack - - - Inserting %1 bytes - - - - - Delete %1 chars - - - - - Overwrite %1 chars - - - VacuumDialog diff --git a/src/translations/sqlb_ko_KR.ts b/src/translations/sqlb_ko_KR.ts index 23dd410e2..e641dbe83 100644 --- a/src/translations/sqlb_ko_KR.ts +++ b/src/translations/sqlb_ko_KR.ts @@ -5775,1660 +5775,78 @@ Please check again. QsciCommand - - Move down one line - - - - - Extend selection down one line - - - - - Extend rectangular selection down one line - - - - - Scroll view down one line - - - - - Move up one line - - - - - Extend selection up one line - - - - - Extend rectangular selection up one line - - - - - Scroll view up one line - - - - - Scroll to start of document - - - - - Scroll to end of document - - - - - Scroll vertically to centre current line - - - - - Move down one paragraph - - - - - Extend selection down one paragraph - - - - - Move up one paragraph - - - - - Extend selection up one paragraph - - - - - Move left one character - - - - - Extend selection left one character - - - - - Extend rectangular selection left one character - - - - - Move right one character - - - - - Extend selection right one character - - - - - Extend rectangular selection right one character - - - - - Move left one word - - - - - Extend selection left one word - - - - - Move right one word - - - - - Extend selection right one word - - - - - Move to end of previous word - - - - - Extend selection to end of previous word - - - - - Move to end of next word - - - - - Extend selection to end of next word - - - - - Move left one word part - - - - - Extend selection left one word part - - - - - Move right one word part - - - - - Extend selection right one word part - - - - - Move to start of document line - - - - - Extend selection to start of document line - - - - - Extend rectangular selection to start of document line - - - - - Move to start of display line - - - - - Extend selection to start of display line - - - - - Move to start of display or document line - - - - - Extend selection to start of display or document line - - - - - Move to first visible character in document line - - - - - Extend selection to first visible character in document line - - - - - Extend rectangular selection to first visible character in document line - - - - - Move to first visible character of display in document line - - - - - Extend selection to first visible character in display or document line - - - - - Move to end of document line - - - - - Extend selection to end of document line - - - - - Extend rectangular selection to end of document line - - - - - Move to end of display line - - - - - Extend selection to end of display line - - - - - Move to end of display or document line - - - - - Extend selection to end of display or document line - - - - - Move to start of document - - - - - Extend selection to start of document - - - - - Move to end of document - - - - - Extend selection to end of document - - - - - Move up one page - - - - - Extend selection up one page - - - - - Extend rectangular selection up one page - - - - - Move down one page - - - - - Extend selection down one page - - - - - Extend rectangular selection down one page - - - - - Stuttered move up one page - - - - - Stuttered extend selection up one page - - - - - Stuttered move down one page - - - - - Stuttered extend selection down one page - - - - - Delete current character - - - - - Delete previous character - - - - - Delete previous character if not at start of line - - - - - Delete word to left - - - - - Delete word to right - - - - - Delete right to end of next word - - - - - Delete line to left - - - - - Delete line to right - - - - - Delete current line - - - - - Cut current line - - - - - Copy current line - - - - - Transpose current and previous lines - - - - - Duplicate the current line - - - - - Select all - - - - - Move selected lines up one line - - - - - Move selected lines down one line - - - - - Duplicate selection - - - - - Convert selection to lower case - - - - - Convert selection to upper case - - - - - Cut selection - - - - - Copy selection - - - - - Paste - 붙여넣기 - - - - Toggle insert/overtype - - - - - Insert newline - - - - - Formfeed - - - - - Indent one level - - - - - De-indent one level - - - - - Cancel - 취소 - - - - Undo last command - - - - - Redo last command - - - - - Zoom in - - - - - Zoom out - - - - - QsciLexerCPP - - - Default - - - - - Inactive default - - - - - C comment - - - - - Inactive C comment - - - - - C++ comment - - - - - Inactive C++ comment - - - - - JavaDoc style C comment - - - - - Inactive JavaDoc style C comment - - - - - Number - - - - - Inactive number - - - - - Keyword - 키워드 - - - - Inactive keyword - - - - - Double-quoted string - - - - - Inactive double-quoted string - - - - - Single-quoted string - - - - - Inactive single-quoted string - - - - - IDL UUID - - - - - Inactive IDL UUID - - - - - Pre-processor block - - - - - Inactive pre-processor block - - - - - Operator - - - - - Inactive operator - - - - - Identifier - 식별자 - - - - Inactive identifier - - - - - Unclosed string - - - - - Inactive unclosed string - - - - - C# verbatim string - - - - - Inactive C# verbatim string - - - - - JavaScript regular expression - - - - - Inactive JavaScript regular expression - - - - - JavaDoc style C++ comment - - - - - Inactive JavaDoc style C++ comment - - - - - Secondary keywords and identifiers - - - - - Inactive secondary keywords and identifiers - - - - - JavaDoc keyword - - - - - Inactive JavaDoc keyword - - - - - JavaDoc keyword error - - - - - Inactive JavaDoc keyword error - - - - - Global classes and typedefs - - - - - Inactive global classes and typedefs - - - - - C++ raw string - - - - - Inactive C++ raw string - - - - - Vala triple-quoted verbatim string - - - - - Inactive Vala triple-quoted verbatim string - - - - - Pike hash-quoted string - - - - - Inactive Pike hash-quoted string - - - - - Pre-processor C comment - - - - - Inactive pre-processor C comment - - - - - JavaDoc style pre-processor comment - - - - - Inactive JavaDoc style pre-processor comment - - - - - User-defined literal - - - - - Inactive user-defined literal - - - - - Task marker - - - - - Inactive task marker - - - - - Escape sequence - - - - - Inactive escape sequence - - - - - QsciLexerHTML - - - HTML default - - - - - Tag - - - - - Unknown tag - - - - - Attribute - - - - - Unknown attribute - - - - - HTML number - - - - - HTML double-quoted string - - - - - HTML single-quoted string - - - - - Other text in a tag - - - - - HTML comment - - - - - Entity - - - - - End of a tag - - - - - Start of an XML fragment - - - - - End of an XML fragment - - - - - Script tag - - - - - Start of an ASP fragment with @ - - - - - Start of an ASP fragment - - - - - CDATA - - - - - Start of a PHP fragment - - - - - Unquoted HTML value - - - - - ASP X-Code comment - - - - - SGML default - - - - - SGML command - - - - - First parameter of an SGML command - - - - - SGML double-quoted string - - - - - SGML single-quoted string - - - - - SGML error - - - - - SGML special entity - - - - - SGML comment - - - - - First parameter comment of an SGML command - - - - - SGML block default - - - - - Start of a JavaScript fragment - - - - - JavaScript default - - - - - JavaScript comment - - - - - JavaScript line comment - - - - - JavaDoc style JavaScript comment - - - - - JavaScript number - - - - - JavaScript word - - - - - JavaScript keyword - - - - - JavaScript double-quoted string - - - - - JavaScript single-quoted string - - - - - JavaScript symbol - - - - - JavaScript unclosed string - - - - - JavaScript regular expression - - - - - Start of an ASP JavaScript fragment - - - - - ASP JavaScript default - - - - - ASP JavaScript comment - - - - - ASP JavaScript line comment - - - - - JavaDoc style ASP JavaScript comment - - - - - ASP JavaScript number - - - - - ASP JavaScript word - - - - - ASP JavaScript keyword - - - - - ASP JavaScript double-quoted string - - - - - ASP JavaScript single-quoted string - - - - - ASP JavaScript symbol - - - - - ASP JavaScript unclosed string - - - - - ASP JavaScript regular expression - - - - - Start of a VBScript fragment - - - - - VBScript default - - - - - VBScript comment - - - - - VBScript number - - - - - VBScript keyword - - - - - VBScript string - - - - - VBScript identifier - - - - - VBScript unclosed string - - - - - Start of an ASP VBScript fragment - - - - - ASP VBScript default - - - - - ASP VBScript comment - - - - - ASP VBScript number - - - - - ASP VBScript keyword - - - - - ASP VBScript string - - - - - ASP VBScript identifier - - - - - ASP VBScript unclosed string - - - - - Start of a Python fragment - - - - - Python default - - - - - Python comment - - - - - Python number - - - - - Python double-quoted string - - - - - Python single-quoted string - - - - - Python keyword - - - - - Python triple double-quoted string - - - - - Python triple single-quoted string - - - - - Python class name - - - - - Python function or method name - - - - - Python operator - - - - - Python identifier - - - - - Start of an ASP Python fragment - - - - - ASP Python default - - - - - ASP Python comment - - - - - ASP Python number - - - - - ASP Python double-quoted string - - - - - ASP Python single-quoted string - - - - - ASP Python keyword - - - - - ASP Python triple double-quoted string - - - - - ASP Python triple single-quoted string - - - - - ASP Python class name - - - - - ASP Python function or method name - - - - - ASP Python operator - - - - - ASP Python identifier - - - - - PHP default - - - - - PHP double-quoted string - - - - - PHP single-quoted string - - - - - PHP keyword - - - - - PHP number - - - - - PHP variable - - - - - PHP comment - + Paste + 붙여넣기 - - PHP line comment - + Cancel + 취소 + + + QsciLexerCPP - - PHP double-quoted variable - + Keyword + 키워드 - - PHP operator - + Identifier + 식별자 QsciLexerJSON - - Default - - - - - Number - - - - String - 문자열 - - - - Unclosed string - - - - - Property - - - - - Escape sequence - - - - - Line comment - - - - - Block comment - - - - - Operator - - - - - IRI - - - - - JSON-LD compact IRI - - - - - JSON keyword - - - - - JSON-LD keyword - - - - - Parsing error - + 문자열 QsciLexerJavaScript - Regular expression - 정규 표현식 + 정규 표현식 QsciLexerPython - - Default - - - - Comment - 주석 - - - - Number - - - - - Double-quoted string - - - - - Single-quoted string - + 주석 - Keyword - 키워드 - - - - Triple single-quoted string - - - - - Triple double-quoted string - - - - - Class name - - - - - Function or method name - - - - - Operator - + 키워드 - Identifier - 식별자 - - - - Comment block - - - - - Unclosed string - - - - - Highlighted identifier - - - - - Decorator - - - - - Double-quoted f-string - - - - - Single-quoted f-string - - - - - Triple single-quoted f-string - - - - - Triple double-quoted f-string - + 식별자 QsciLexerSQL - - Default - - - - Comment - 주석 + 주석 - - Comment line - - - - - JavaDoc style comment - - - - - Number - - - - Keyword - 키워드 - - - - Double-quoted string - - - - - Single-quoted string - - - - - SQL*Plus keyword - - - - - SQL*Plus prompt - - - - - Operator - + 키워드 - Identifier - 식별자 - - - - SQL*Plus comment - - - - - # comment line - - - - - JavaDoc keyword - - - - - JavaDoc keyword error - - - - - User defined 1 - - - - - User defined 2 - - - - - User defined 3 - - - - - User defined 4 - - - - - Quoted identifier - - - - - Quoted operator - + 식별자 QsciScintilla - &Undo - 실행 취소(&U) - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - Delete - + 실행 취소(&U) - Select All - 모두 선택 + 모두 선택 @@ -9425,24 +7843,6 @@ Leave the field empty for using the database encoding. 데이터 브라우저의 새 이름을 설정하세요. '&&' 문자를 사용하여 다음에 따라오는 문자를 키보드 단축키로서 사용할 수 있습니다. - - UndoStack - - - Inserting %1 bytes - - - - - Delete %1 chars - - - - - Overwrite %1 chars - - - VacuumDialog diff --git a/src/translations/sqlb_nl.ts b/src/translations/sqlb_nl.ts index 41cad3060..527d652ba 100644 --- a/src/translations/sqlb_nl.ts +++ b/src/translations/sqlb_nl.ts @@ -5773,1660 +5773,90 @@ Please check again. QsciCommand - - Move down one line - - - - - Extend selection down one line - - - - - Extend rectangular selection down one line - - - - - Scroll view down one line - - - - - Move up one line - - - - - Extend selection up one line - - - - - Extend rectangular selection up one line - - - - - Scroll view up one line - - - - - Scroll to start of document - - - - - Scroll to end of document - - - - - Scroll vertically to centre current line - - - - - Move down one paragraph - - - - - Extend selection down one paragraph - - - - - Move up one paragraph - - - - - Extend selection up one paragraph - - - - - Move left one character - - - - - Extend selection left one character - - - - - Extend rectangular selection left one character - - - - - Move right one character - - - - - Extend selection right one character - - - - - Extend rectangular selection right one character - - - - - Move left one word - - - - - Extend selection left one word - - - - - Move right one word - - - - - Extend selection right one word - - - - - Move to end of previous word - - - - - Extend selection to end of previous word - - - - - Move to end of next word - - - - - Extend selection to end of next word - - - - - Move left one word part - - - - - Extend selection left one word part - - - - - Move right one word part - - - - - Extend selection right one word part - - - - - Move to start of document line - - - - - Extend selection to start of document line - - - - - Extend rectangular selection to start of document line - - - - - Move to start of display line - - - - - Extend selection to start of display line - - - - - Move to start of display or document line - - - - - Extend selection to start of display or document line - - - - - Move to first visible character in document line - - - - - Extend selection to first visible character in document line - - - - - Extend rectangular selection to first visible character in document line - - - - - Move to first visible character of display in document line - - - - - Extend selection to first visible character in display or document line - - - - - Move to end of document line - - - - - Extend selection to end of document line - - - - - Extend rectangular selection to end of document line - - - - - Move to end of display line - - - - - Extend selection to end of display line - - - - - Move to end of display or document line - - - - - Extend selection to end of display or document line - - - - - Move to start of document - - - - - Extend selection to start of document - - - - - Move to end of document - - - - - Extend selection to end of document - - - - - Move up one page - - - - - Extend selection up one page - - - - - Extend rectangular selection up one page - - - - - Move down one page - - - - - Extend selection down one page - - - - - Extend rectangular selection down one page - - - - - Stuttered move up one page - - - - - Stuttered extend selection up one page - - - - - Stuttered move down one page - - - - - Stuttered extend selection down one page - - - - - Delete current character - - - - - Delete previous character - - - - - Delete previous character if not at start of line - - - - - Delete word to left - - - - - Delete word to right - - - - - Delete right to end of next word - - - - - Delete line to left - - - - - Delete line to right - - - - - Delete current line - - - - - Cut current line - - - - - Copy current line - - - - - Transpose current and previous lines - - - - - Duplicate the current line - - - - - Select all - - - - - Move selected lines up one line - - - - - Move selected lines down one line - - - - - Duplicate selection - - - - - Convert selection to lower case - - - - - Convert selection to upper case - - - - - Cut selection - - - - - Copy selection - - - - - Paste - Plakken - - - - Toggle insert/overtype - - - - - Insert newline - - - - - Formfeed - - - - - Indent one level - - - - - De-indent one level - - - - - Cancel - Annuleren - - - - Undo last command - - - - - Redo last command - - - - - Zoom in - - - - - Zoom out - - - - - QsciLexerCPP - - - Default - Standaard - - - - Inactive default - - - - - C comment - - - - - Inactive C comment - - - - - C++ comment - - - - - Inactive C++ comment - - - - - JavaDoc style C comment - - - - - Inactive JavaDoc style C comment - - - - - Number - - - - - Inactive number - - - - - Keyword - Sleutelwoord - - - - Inactive keyword - - - - - Double-quoted string - - - - - Inactive double-quoted string - - - - - Single-quoted string - - - - - Inactive single-quoted string - - - - - IDL UUID - - - - - Inactive IDL UUID - - - - - Pre-processor block - - - - - Inactive pre-processor block - - - - - Operator - - - - - Inactive operator - - - - - Identifier - Entiteitsnaam - - - - Inactive identifier - - - - - Unclosed string - - - - - Inactive unclosed string - - - - - C# verbatim string - - - - - Inactive C# verbatim string - - - - - JavaScript regular expression - - - - - Inactive JavaScript regular expression - - - - - JavaDoc style C++ comment - - - - - Inactive JavaDoc style C++ comment - - - - - Secondary keywords and identifiers - - - - - Inactive secondary keywords and identifiers - - - - - JavaDoc keyword - - - - - Inactive JavaDoc keyword - - - - - JavaDoc keyword error - - - - - Inactive JavaDoc keyword error - - - - - Global classes and typedefs - - - - - Inactive global classes and typedefs - - - - - C++ raw string - - - - - Inactive C++ raw string - - - - - Vala triple-quoted verbatim string - - - - - Inactive Vala triple-quoted verbatim string - - - - - Pike hash-quoted string - - - - - Inactive Pike hash-quoted string - - - - - Pre-processor C comment - - - - - Inactive pre-processor C comment - - - - - JavaDoc style pre-processor comment - - - - - Inactive JavaDoc style pre-processor comment - - - - - User-defined literal - - - - - Inactive user-defined literal - - - - - Task marker - - - - - Inactive task marker - - - - - Escape sequence - - - - - Inactive escape sequence - - - - - QsciLexerHTML - - - HTML default - - - - - Tag - - - - - Unknown tag - - - - - Attribute - - - - - Unknown attribute - - - - - HTML number - - - - - HTML double-quoted string - - - - - HTML single-quoted string - - - - - Other text in a tag - - - - - HTML comment - - - - - Entity - - - - - End of a tag - - - - - Start of an XML fragment - - - - - End of an XML fragment - - - - - Script tag - - - - - Start of an ASP fragment with @ - - - - - Start of an ASP fragment - - - - - CDATA - - - - - Start of a PHP fragment - - - - - Unquoted HTML value - - - - - ASP X-Code comment - - - - - SGML default - - - - - SGML command - - - - - First parameter of an SGML command - - - - - SGML double-quoted string - - - - - SGML single-quoted string - - - - - SGML error - - - - - SGML special entity - - - - - SGML comment - - - - - First parameter comment of an SGML command - - - - - SGML block default - - - - - Start of a JavaScript fragment - - - - - JavaScript default - - - - - JavaScript comment - - - - - JavaScript line comment - - - - - JavaDoc style JavaScript comment - - - - - JavaScript number - - - - - JavaScript word - - - - - JavaScript keyword - - - - - JavaScript double-quoted string - - - - - JavaScript single-quoted string - - - - - JavaScript symbol - - - - - JavaScript unclosed string - - - - - JavaScript regular expression - - - - - Start of an ASP JavaScript fragment - - - - - ASP JavaScript default - - - - - ASP JavaScript comment - - - - - ASP JavaScript line comment - - - - - JavaDoc style ASP JavaScript comment - - - - - ASP JavaScript number - - - - - ASP JavaScript word - - - - - ASP JavaScript keyword - - - - - ASP JavaScript double-quoted string - - - - - ASP JavaScript single-quoted string - - - - - ASP JavaScript symbol - - - - - ASP JavaScript unclosed string - - - - - ASP JavaScript regular expression - - - - - Start of a VBScript fragment - - - - - VBScript default - - - - - VBScript comment - - - - - VBScript number - - - - - VBScript keyword - - - - - VBScript string - - - - - VBScript identifier - - - - - VBScript unclosed string - - - - - Start of an ASP VBScript fragment - - - - - ASP VBScript default - - - - - ASP VBScript comment - - - - - ASP VBScript number - - - - - ASP VBScript keyword - - - - - ASP VBScript string - - - - - ASP VBScript identifier - - - - - ASP VBScript unclosed string - - - - - Start of a Python fragment - - - - - Python default - - - - - Python comment - - - - - Python number - - - - - Python double-quoted string - - - - - Python single-quoted string - - - - - Python keyword - - - - - Python triple double-quoted string - - - - - Python triple single-quoted string - - - - - Python class name - - - - - Python function or method name - - - - - Python operator - - - - - Python identifier - - - - - Start of an ASP Python fragment - - - - - ASP Python default - - - - - ASP Python comment - - - - - ASP Python number - - - - - ASP Python double-quoted string - - - - - ASP Python single-quoted string - - - - - ASP Python keyword - - - - - ASP Python triple double-quoted string - - - - - ASP Python triple single-quoted string - - - - - ASP Python class name - - - - - ASP Python function or method name - - - - - ASP Python operator - - - - - ASP Python identifier - - - - - PHP default - - - - - PHP double-quoted string - - - - - PHP single-quoted string - - - - - PHP keyword - - - - - PHP number - - - - - PHP variable - + Paste + Plakken - - PHP comment - + Cancel + Annuleren + + + QsciLexerCPP - - PHP line comment - + Default + Standaard - - PHP double-quoted variable - + Keyword + Sleutelwoord - - PHP operator - + Identifier + Entiteitsnaam QsciLexerJSON - Default - Standaard + Standaard - - Number - - - - String - Tekenreeks - - - - Unclosed string - - - - - Property - - - - - Escape sequence - - - - - Line comment - - - - - Block comment - - - - - Operator - - - - - IRI - - - - - JSON-LD compact IRI - - - - - JSON keyword - - - - - JSON-LD keyword - - - - - Parsing error - + Tekenreeks QsciLexerJavaScript - Regular expression - Als reguliere expressie + Als reguliere expressie QsciLexerPython - Default - Standaard + Standaard - Comment - Commentaar - - - - Number - - - - - Double-quoted string - - - - - Single-quoted string - + Commentaar - Keyword - Sleutelwoord - - - - Triple single-quoted string - - - - - Triple double-quoted string - - - - - Class name - - - - - Function or method name - - - - - Operator - + Sleutelwoord - Identifier - Entiteitsnaam - - - - Comment block - - - - - Unclosed string - - - - - Highlighted identifier - - - - - Decorator - - - - - Double-quoted f-string - - - - - Single-quoted f-string - - - - - Triple single-quoted f-string - - - - - Triple double-quoted f-string - + Entiteitsnaam QsciLexerSQL - Default - Standaard + Standaard - Comment - Commentaar - - - - Comment line - - - - - JavaDoc style comment - - - - - Number - + Commentaar - Keyword - Sleutelwoord - - - - Double-quoted string - - - - - Single-quoted string - - - - - SQL*Plus keyword - - - - - SQL*Plus prompt - - - - - Operator - + Sleutelwoord - Identifier - Entiteitsnaam - - - - SQL*Plus comment - - - - - # comment line - - - - - JavaDoc keyword - - - - - JavaDoc keyword error - - - - - User defined 1 - - - - - User defined 2 - - - - - User defined 3 - - - - - User defined 4 - - - - - Quoted identifier - - - - - Quoted operator - + Entiteitsnaam QsciScintilla - - &Undo - - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - Delete - - - - Select All - Alles selecteren + Alles selecteren @@ -9481,24 +7911,6 @@ Laat het veld leeg om de databasecodering te gebruiken. Geef een nieuwe naam voor de gegevensbrowser. Gebruik het '&&'-teken om de een van de volgende tekens als sneltoets in te stellen. - - UndoStack - - - Inserting %1 bytes - - - - - Delete %1 chars - - - - - Overwrite %1 chars - - - VacuumDialog diff --git a/src/translations/sqlb_pl.ts b/src/translations/sqlb_pl.ts index 77db65072..0b94e5417 100644 --- a/src/translations/sqlb_pl.ts +++ b/src/translations/sqlb_pl.ts @@ -5795,1660 +5795,78 @@ Sprawdź go ponownie. QsciCommand - - Move down one line - - - - - Extend selection down one line - - - - - Extend rectangular selection down one line - - - - - Scroll view down one line - - - - - Move up one line - - - - - Extend selection up one line - - - - - Extend rectangular selection up one line - - - - - Scroll view up one line - - - - - Scroll to start of document - - - - - Scroll to end of document - - - - - Scroll vertically to centre current line - - - - - Move down one paragraph - - - - - Extend selection down one paragraph - - - - - Move up one paragraph - - - - - Extend selection up one paragraph - - - - - Move left one character - - - - - Extend selection left one character - - - - - Extend rectangular selection left one character - - - - - Move right one character - - - - - Extend selection right one character - - - - - Extend rectangular selection right one character - - - - - Move left one word - - - - - Extend selection left one word - - - - - Move right one word - - - - - Extend selection right one word - - - - - Move to end of previous word - - - - - Extend selection to end of previous word - - - - - Move to end of next word - - - - - Extend selection to end of next word - - - - - Move left one word part - - - - - Extend selection left one word part - - - - - Move right one word part - - - - - Extend selection right one word part - - - - - Move to start of document line - - - - - Extend selection to start of document line - - - - - Extend rectangular selection to start of document line - - - - - Move to start of display line - - - - - Extend selection to start of display line - - - - - Move to start of display or document line - - - - - Extend selection to start of display or document line - - - - - Move to first visible character in document line - - - - - Extend selection to first visible character in document line - - - - - Extend rectangular selection to first visible character in document line - - - - - Move to first visible character of display in document line - - - - - Extend selection to first visible character in display or document line - - - - - Move to end of document line - - - - - Extend selection to end of document line - - - - - Extend rectangular selection to end of document line - - - - - Move to end of display line - - - - - Extend selection to end of display line - - - - - Move to end of display or document line - - - - - Extend selection to end of display or document line - - - - - Move to start of document - - - - - Extend selection to start of document - - - - - Move to end of document - - - - - Extend selection to end of document - - - - - Move up one page - - - - - Extend selection up one page - - - - - Extend rectangular selection up one page - - - - - Move down one page - - - - - Extend selection down one page - - - - - Extend rectangular selection down one page - - - - - Stuttered move up one page - - - - - Stuttered extend selection up one page - - - - - Stuttered move down one page - - - - - Stuttered extend selection down one page - - - - - Delete current character - - - - - Delete previous character - - - - - Delete previous character if not at start of line - - - - - Delete word to left - - - - - Delete word to right - - - - - Delete right to end of next word - - - - - Delete line to left - - - - - Delete line to right - - - - - Delete current line - - - - - Cut current line - - - - - Copy current line - - - - - Transpose current and previous lines - - - - - Duplicate the current line - - - - - Select all - - - - - Move selected lines up one line - - - - - Move selected lines down one line - - - - - Duplicate selection - - - - - Convert selection to lower case - - - - - Convert selection to upper case - - - - - Cut selection - - - - - Copy selection - - - - - Paste - Wklej - - - - Toggle insert/overtype - - - - - Insert newline - - - - - Formfeed - - - - - Indent one level - - - - - De-indent one level - - - - - Cancel - Zaniechaj - - - - Undo last command - - - - - Redo last command - - - - - Zoom in - - - - - Zoom out - - - - - QsciLexerCPP - - - Default - - - - - Inactive default - - - - - C comment - - - - - Inactive C comment - - - - - C++ comment - - - - - Inactive C++ comment - - - - - JavaDoc style C comment - - - - - Inactive JavaDoc style C comment - - - - - Number - - - - - Inactive number - - - - - Keyword - Słowo kluczowe - - - - Inactive keyword - - - - - Double-quoted string - - - - - Inactive double-quoted string - - - - - Single-quoted string - - - - - Inactive single-quoted string - - - - - IDL UUID - - - - - Inactive IDL UUID - - - - - Pre-processor block - - - - - Inactive pre-processor block - - - - - Operator - - - - - Inactive operator - - - - - Identifier - Identyfikator - - - - Inactive identifier - - - - - Unclosed string - - - - - Inactive unclosed string - - - - - C# verbatim string - - - - - Inactive C# verbatim string - - - - - JavaScript regular expression - - - - - Inactive JavaScript regular expression - - - - - JavaDoc style C++ comment - - - - - Inactive JavaDoc style C++ comment - - - - - Secondary keywords and identifiers - - - - - Inactive secondary keywords and identifiers - - - - - JavaDoc keyword - - - - - Inactive JavaDoc keyword - - - - - JavaDoc keyword error - - - - - Inactive JavaDoc keyword error - - - - - Global classes and typedefs - - - - - Inactive global classes and typedefs - - - - - C++ raw string - - - - - Inactive C++ raw string - - - - - Vala triple-quoted verbatim string - - - - - Inactive Vala triple-quoted verbatim string - - - - - Pike hash-quoted string - - - - - Inactive Pike hash-quoted string - - - - - Pre-processor C comment - - - - - Inactive pre-processor C comment - - - - - JavaDoc style pre-processor comment - - - - - Inactive JavaDoc style pre-processor comment - - - - - User-defined literal - - - - - Inactive user-defined literal - - - - - Task marker - - - - - Inactive task marker - - - - - Escape sequence - - - - - Inactive escape sequence - - - - - QsciLexerHTML - - - HTML default - - - - - Tag - - - - - Unknown tag - - - - - Attribute - - - - - Unknown attribute - - - - - HTML number - - - - - HTML double-quoted string - - - - - HTML single-quoted string - - - - - Other text in a tag - - - - - HTML comment - - - - - Entity - - - - - End of a tag - - - - - Start of an XML fragment - - - - - End of an XML fragment - - - - - Script tag - - - - - Start of an ASP fragment with @ - - - - - Start of an ASP fragment - - - - - CDATA - - - - - Start of a PHP fragment - - - - - Unquoted HTML value - - - - - ASP X-Code comment - - - - - SGML default - - - - - SGML command - - - - - First parameter of an SGML command - - - - - SGML double-quoted string - - - - - SGML single-quoted string - - - - - SGML error - - - - - SGML special entity - - - - - SGML comment - - - - - First parameter comment of an SGML command - - - - - SGML block default - - - - - Start of a JavaScript fragment - - - - - JavaScript default - - - - - JavaScript comment - - - - - JavaScript line comment - - - - - JavaDoc style JavaScript comment - - - - - JavaScript number - - - - - JavaScript word - - - - - JavaScript keyword - - - - - JavaScript double-quoted string - - - - - JavaScript single-quoted string - - - - - JavaScript symbol - - - - - JavaScript unclosed string - - - - - JavaScript regular expression - - - - - Start of an ASP JavaScript fragment - - - - - ASP JavaScript default - - - - - ASP JavaScript comment - - - - - ASP JavaScript line comment - - - - - JavaDoc style ASP JavaScript comment - - - - - ASP JavaScript number - - - - - ASP JavaScript word - - - - - ASP JavaScript keyword - - - - - ASP JavaScript double-quoted string - - - - - ASP JavaScript single-quoted string - - - - - ASP JavaScript symbol - - - - - ASP JavaScript unclosed string - - - - - ASP JavaScript regular expression - - - - - Start of a VBScript fragment - - - - - VBScript default - - - - - VBScript comment - - - - - VBScript number - - - - - VBScript keyword - - - - - VBScript string - - - - - VBScript identifier - - - - - VBScript unclosed string - - - - - Start of an ASP VBScript fragment - - - - - ASP VBScript default - - - - - ASP VBScript comment - - - - - ASP VBScript number - - - - - ASP VBScript keyword - - - - - ASP VBScript string - - - - - ASP VBScript identifier - - - - - ASP VBScript unclosed string - - - - - Start of a Python fragment - - - - - Python default - - - - - Python comment - - - - - Python number - - - - - Python double-quoted string - - - - - Python single-quoted string - - - - - Python keyword - - - - - Python triple double-quoted string - - - - - Python triple single-quoted string - - - - - Python class name - - - - - Python function or method name - - - - - Python operator - - - - - Python identifier - - - - - Start of an ASP Python fragment - - - - - ASP Python default - - - - - ASP Python comment - - - - - ASP Python number - - - - - ASP Python double-quoted string - - - - - ASP Python single-quoted string - - - - - ASP Python keyword - - - - - ASP Python triple double-quoted string - - - - - ASP Python triple single-quoted string - - - - - ASP Python class name - - - - - ASP Python function or method name - - - - - ASP Python operator - - - - - ASP Python identifier - - - - - PHP default - - - - - PHP double-quoted string - - - - - PHP single-quoted string - - - - - PHP keyword - - - - - PHP number - - - - - PHP variable - - - - - PHP comment - + Paste + Wklej - - PHP line comment - + Cancel + Zaniechaj + + + QsciLexerCPP - - PHP double-quoted variable - + Keyword + Słowo kluczowe - - PHP operator - + Identifier + Identyfikator QsciLexerJSON - - Default - - - - - Number - - - - String - Ciąg znaków - - - - Unclosed string - - - - - Property - - - - - Escape sequence - - - - - Line comment - - - - - Block comment - - - - - Operator - - - - - IRI - - - - - JSON-LD compact IRI - - - - - JSON keyword - - - - - JSON-LD keyword - - - - - Parsing error - + Ciąg znaków QsciLexerJavaScript - Regular expression - Wyrażenie regularne + Wyrażenie regularne QsciLexerPython - - Default - - - - Comment - Uwaga - - - - Number - - - - - Double-quoted string - - - - - Single-quoted string - + Uwaga - Keyword - Słowo kluczowe - - - - Triple single-quoted string - - - - - Triple double-quoted string - - - - - Class name - - - - - Function or method name - - - - - Operator - + Słowo kluczowe - Identifier - Identyfikator - - - - Comment block - - - - - Unclosed string - - - - - Highlighted identifier - - - - - Decorator - - - - - Double-quoted f-string - - - - - Single-quoted f-string - - - - - Triple single-quoted f-string - - - - - Triple double-quoted f-string - + Identyfikator QsciLexerSQL - - Default - - - - Comment - Uwaga + Uwaga - - Comment line - - - - - JavaDoc style comment - - - - - Number - - - - Keyword - Słowo kluczowe - - - - Double-quoted string - - - - - Single-quoted string - - - - - SQL*Plus keyword - - - - - SQL*Plus prompt - - - - - Operator - + Słowo kluczowe - Identifier - Identyfikator - - - - SQL*Plus comment - - - - - # comment line - - - - - JavaDoc keyword - - - - - JavaDoc keyword error - - - - - User defined 1 - - - - - User defined 2 - - - - - User defined 3 - - - - - User defined 4 - - - - - Quoted identifier - - - - - Quoted operator - + Identyfikator QsciScintilla - &Undo - &Cofnij - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - Delete - + &Cofnij - Select All - Zaznacz wszystkie + Zaznacz wszystkie @@ -9451,24 +7869,6 @@ Pozostaw pole pustym, aby użyć kodowania bazy danych. Nadaj nową nazwę dla przeglądarki danych. Użyj znaku '&&', aby móc użyć następującego znaku jako skrótu klawiszowego. - - UndoStack - - - Inserting %1 bytes - - - - - Delete %1 chars - - - - - Overwrite %1 chars - - - VacuumDialog diff --git a/src/translations/sqlb_pt_BR.ts b/src/translations/sqlb_pt_BR.ts index 33bfb7fce..1146b30fd 100644 --- a/src/translations/sqlb_pt_BR.ts +++ b/src/translations/sqlb_pt_BR.ts @@ -5773,1660 +5773,74 @@ Todas as suas preferências serão perdidas e os valores padrão serão utilizad QsciCommand - - Move down one line - - - - - Extend selection down one line - - - - - Extend rectangular selection down one line - - - - - Scroll view down one line - - - - - Move up one line - - - - - Extend selection up one line - - - - - Extend rectangular selection up one line - - - - - Scroll view up one line - - - - - Scroll to start of document - - - - - Scroll to end of document - - - - - Scroll vertically to centre current line - - - - - Move down one paragraph - - - - - Extend selection down one paragraph - - - - - Move up one paragraph - - - - - Extend selection up one paragraph - - - - - Move left one character - - - - - Extend selection left one character - - - - - Extend rectangular selection left one character - - - - - Move right one character - - - - - Extend selection right one character - - - - - Extend rectangular selection right one character - - - - - Move left one word - - - - - Extend selection left one word - - - - - Move right one word - - - - - Extend selection right one word - - - - - Move to end of previous word - - - - - Extend selection to end of previous word - - - - - Move to end of next word - - - - - Extend selection to end of next word - - - - - Move left one word part - - - - - Extend selection left one word part - - - - - Move right one word part - - - - - Extend selection right one word part - - - - - Move to start of document line - - - - - Extend selection to start of document line - - - - - Extend rectangular selection to start of document line - - - - - Move to start of display line - - - - - Extend selection to start of display line - - - - - Move to start of display or document line - - - - - Extend selection to start of display or document line - - - - - Move to first visible character in document line - - - - - Extend selection to first visible character in document line - - - - - Extend rectangular selection to first visible character in document line - - - - - Move to first visible character of display in document line - - - - - Extend selection to first visible character in display or document line - - - - - Move to end of document line - - - - - Extend selection to end of document line - - - - - Extend rectangular selection to end of document line - - - - - Move to end of display line - - - - - Extend selection to end of display line - - - - - Move to end of display or document line - - - - - Extend selection to end of display or document line - - - - - Move to start of document - - - - - Extend selection to start of document - - - - - Move to end of document - - - - - Extend selection to end of document - - - - - Move up one page - - - - - Extend selection up one page - - - - - Extend rectangular selection up one page - - - - - Move down one page - - - - - Extend selection down one page - - - - - Extend rectangular selection down one page - - - - - Stuttered move up one page - - - - - Stuttered extend selection up one page - - - - - Stuttered move down one page - - - - - Stuttered extend selection down one page - - - - - Delete current character - - - - - Delete previous character - - - - - Delete previous character if not at start of line - - - - - Delete word to left - - - - - Delete word to right - - - - - Delete right to end of next word - - - - - Delete line to left - - - - - Delete line to right - - - - - Delete current line - - - - - Cut current line - - - - - Copy current line - - - - - Transpose current and previous lines - - - - - Duplicate the current line - - - - - Select all - - - - - Move selected lines up one line - - - - - Move selected lines down one line - - - - - Duplicate selection - - - - - Convert selection to lower case - - - - - Convert selection to upper case - - - - - Cut selection - - - - - Copy selection - - - - - Paste - Colar - - - - Toggle insert/overtype - - - - - Insert newline - - - - - Formfeed - - - - - Indent one level - - - - - De-indent one level - - - - - Cancel - Cancelar - - - - Undo last command - - - - - Redo last command - - - - - Zoom in - - - - - Zoom out - - - - - QsciLexerCPP - - - Default - - - - - Inactive default - - - - - C comment - - - - - Inactive C comment - - - - - C++ comment - - - - - Inactive C++ comment - - - - - JavaDoc style C comment - - - - - Inactive JavaDoc style C comment - - - - - Number - - - - - Inactive number - - - - - Keyword - Palavra-chave - - - - Inactive keyword - - - - - Double-quoted string - - - - - Inactive double-quoted string - - - - - Single-quoted string - - - - - Inactive single-quoted string - - - - - IDL UUID - - - - - Inactive IDL UUID - - - - - Pre-processor block - - - - - Inactive pre-processor block - - - - - Operator - - - - - Inactive operator - - - - - Identifier - Identificador - - - - Inactive identifier - - - - - Unclosed string - - - - - Inactive unclosed string - - - - - C# verbatim string - - - - - Inactive C# verbatim string - - - - - JavaScript regular expression - - - - - Inactive JavaScript regular expression - - - - - JavaDoc style C++ comment - - - - - Inactive JavaDoc style C++ comment - - - - - Secondary keywords and identifiers - - - - - Inactive secondary keywords and identifiers - - - - - JavaDoc keyword - - - - - Inactive JavaDoc keyword - - - - - JavaDoc keyword error - - - - - Inactive JavaDoc keyword error - - - - - Global classes and typedefs - - - - - Inactive global classes and typedefs - - - - - C++ raw string - - - - - Inactive C++ raw string - - - - - Vala triple-quoted verbatim string - - - - - Inactive Vala triple-quoted verbatim string - - - - - Pike hash-quoted string - - - - - Inactive Pike hash-quoted string - - - - - Pre-processor C comment - - - - - Inactive pre-processor C comment - - - - - JavaDoc style pre-processor comment - - - - - Inactive JavaDoc style pre-processor comment - - - - - User-defined literal - - - - - Inactive user-defined literal - - - - - Task marker - - - - - Inactive task marker - - - - - Escape sequence - - - - - Inactive escape sequence - - - - - QsciLexerHTML - - - HTML default - - - - - Tag - - - - - Unknown tag - - - - - Attribute - - - - - Unknown attribute - - - - - HTML number - - - - - HTML double-quoted string - - - - - HTML single-quoted string - - - - - Other text in a tag - - - - - HTML comment - - - - - Entity - - - - - End of a tag - - - - - Start of an XML fragment - - - - - End of an XML fragment - - - - - Script tag - - - - - Start of an ASP fragment with @ - - - - - Start of an ASP fragment - - - - - CDATA - - - - - Start of a PHP fragment - - - - - Unquoted HTML value - - - - - ASP X-Code comment - - - - - SGML default - - - - - SGML command - - - - - First parameter of an SGML command - - - - - SGML double-quoted string - - - - - SGML single-quoted string - - - - - SGML error - - - - - SGML special entity - - - - - SGML comment - - - - - First parameter comment of an SGML command - - - - - SGML block default - - - - - Start of a JavaScript fragment - - - - - JavaScript default - - - - - JavaScript comment - - - - - JavaScript line comment - - - - - JavaDoc style JavaScript comment - - - - - JavaScript number - - - - - JavaScript word - - - - - JavaScript keyword - - - - - JavaScript double-quoted string - - - - - JavaScript single-quoted string - - - - - JavaScript symbol - - - - - JavaScript unclosed string - - - - - JavaScript regular expression - - - - - Start of an ASP JavaScript fragment - - - - - ASP JavaScript default - - - - - ASP JavaScript comment - - - - - ASP JavaScript line comment - - - - - JavaDoc style ASP JavaScript comment - - - - - ASP JavaScript number - - - - - ASP JavaScript word - - - - - ASP JavaScript keyword - - - - - ASP JavaScript double-quoted string - - - - - ASP JavaScript single-quoted string - - - - - ASP JavaScript symbol - - - - - ASP JavaScript unclosed string - - - - - ASP JavaScript regular expression - - - - - Start of a VBScript fragment - - - - - VBScript default - - - - - VBScript comment - - - - - VBScript number - - - - - VBScript keyword - - - - - VBScript string - - - - - VBScript identifier - - - - - VBScript unclosed string - - - - - Start of an ASP VBScript fragment - - - - - ASP VBScript default - - - - - ASP VBScript comment - - - - - ASP VBScript number - - - - - ASP VBScript keyword - - - - - ASP VBScript string - - - - - ASP VBScript identifier - - - - - ASP VBScript unclosed string - - - - - Start of a Python fragment - - - - - Python default - - - - - Python comment - - - - - Python number - - - - - Python double-quoted string - - - - - Python single-quoted string - - - - - Python keyword - - - - - Python triple double-quoted string - - - - - Python triple single-quoted string - - - - - Python class name - - - - - Python function or method name - - - - - Python operator - - - - - Python identifier - - - - - Start of an ASP Python fragment - - - - - ASP Python default - - - - - ASP Python comment - - - - - ASP Python number - - - - - ASP Python double-quoted string - - - - - ASP Python single-quoted string - - - - - ASP Python keyword - - - - - ASP Python triple double-quoted string - - - - - ASP Python triple single-quoted string - - - - - ASP Python class name - - - - - ASP Python function or method name - - - - - ASP Python operator - - - - - ASP Python identifier - - - - - PHP default - - - - - PHP double-quoted string - - - - - PHP single-quoted string - - - - - PHP keyword - - - - - PHP number - - - - - PHP variable - - - - - PHP comment - + Paste + Colar - - PHP line comment - + Cancel + Cancelar + + + QsciLexerCPP - - PHP double-quoted variable - + Keyword + Palavra-chave - - PHP operator - + Identifier + Identificador QsciLexerJSON - - Default - - - - - Number - - - - String - String - - - - Unclosed string - - - - - Property - - - - - Escape sequence - - - - - Line comment - - - - - Block comment - - - - - Operator - - - - - IRI - - - - - JSON-LD compact IRI - - - - - JSON keyword - - - - - JSON-LD keyword - - - - - Parsing error - + String QsciLexerJavaScript - Regular expression - Expressão regular + Expressão regular QsciLexerPython - - Default - - - - Comment - Comentário - - - - Number - - - - - Double-quoted string - - - - - Single-quoted string - + Comentário - Keyword - Palavra-chave - - - - Triple single-quoted string - - - - - Triple double-quoted string - - - - - Class name - - - - - Function or method name - - - - - Operator - + Palavra-chave - Identifier - Identificador - - - - Comment block - - - - - Unclosed string - - - - - Highlighted identifier - - - - - Decorator - - - - - Double-quoted f-string - - - - - Single-quoted f-string - - - - - Triple single-quoted f-string - - - - - Triple double-quoted f-string - + Identificador QsciLexerSQL - - Default - - - - Comment - Comentário - - - - Comment line - - - - - JavaDoc style comment - - - - - Number - + Comentário - Keyword - Palavra-chave - - - - Double-quoted string - - - - - Single-quoted string - - - - - SQL*Plus keyword - - - - - SQL*Plus prompt - - - - - Operator - + Palavra-chave - Identifier - Identificador - - - - SQL*Plus comment - - - - - # comment line - - - - - JavaDoc keyword - - - - - JavaDoc keyword error - - - - - User defined 1 - - - - - User defined 2 - - - - - User defined 3 - - - - - User defined 4 - - - - - Quoted identifier - - - - - Quoted operator - + Identificador QsciScintilla - - &Undo - - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - Delete - - - - Select All - Selecionar tudo + Selecionar tudo @@ -9422,24 +7836,6 @@ Deixe o campo em branco para usar a codificação do banco de dados. - - UndoStack - - - Inserting %1 bytes - - - - - Delete %1 chars - - - - - Overwrite %1 chars - - - VacuumDialog diff --git a/src/translations/sqlb_ro.ts b/src/translations/sqlb_ro.ts index f099e1104..61b7e2e1a 100644 --- a/src/translations/sqlb_ro.ts +++ b/src/translations/sqlb_ro.ts @@ -5817,1660 +5817,90 @@ Vă rugăm să verificați din nou. QsciCommand - - Move down one line - - - - - Extend selection down one line - - - - - Extend rectangular selection down one line - - - - - Scroll view down one line - - - - - Move up one line - - - - - Extend selection up one line - - - - - Extend rectangular selection up one line - - - - - Scroll view up one line - - - - - Scroll to start of document - - - - - Scroll to end of document - - - - - Scroll vertically to centre current line - - - - - Move down one paragraph - - - - - Extend selection down one paragraph - - - - - Move up one paragraph - - - - - Extend selection up one paragraph - - - - - Move left one character - - - - - Extend selection left one character - - - - - Extend rectangular selection left one character - - - - - Move right one character - - - - - Extend selection right one character - - - - - Extend rectangular selection right one character - - - - - Move left one word - - - - - Extend selection left one word - - - - - Move right one word - - - - - Extend selection right one word - - - - - Move to end of previous word - - - - - Extend selection to end of previous word - - - - - Move to end of next word - - - - - Extend selection to end of next word - - - - - Move left one word part - - - - - Extend selection left one word part - - - - - Move right one word part - - - - - Extend selection right one word part - - - - - Move to start of document line - - - - - Extend selection to start of document line - - - - - Extend rectangular selection to start of document line - - - - - Move to start of display line - - - - - Extend selection to start of display line - - - - - Move to start of display or document line - - - - - Extend selection to start of display or document line - - - - - Move to first visible character in document line - - - - - Extend selection to first visible character in document line - - - - - Extend rectangular selection to first visible character in document line - - - - - Move to first visible character of display in document line - - - - - Extend selection to first visible character in display or document line - - - - - Move to end of document line - - - - - Extend selection to end of document line - - - - - Extend rectangular selection to end of document line - - - - - Move to end of display line - - - - - Extend selection to end of display line - - - - - Move to end of display or document line - - - - - Extend selection to end of display or document line - - - - - Move to start of document - - - - - Extend selection to start of document - - - - - Move to end of document - - - - - Extend selection to end of document - - - - - Move up one page - - - - - Extend selection up one page - - - - - Extend rectangular selection up one page - - - - - Move down one page - - - - - Extend selection down one page - - - - - Extend rectangular selection down one page - - - - - Stuttered move up one page - - - - - Stuttered extend selection up one page - - - - - Stuttered move down one page - - - - - Stuttered extend selection down one page - - - - - Delete current character - - - - - Delete previous character - - - - - Delete previous character if not at start of line - - - - - Delete word to left - - - - - Delete word to right - - - - - Delete right to end of next word - - - - - Delete line to left - - - - - Delete line to right - - - - - Delete current line - - - - - Cut current line - - - - - Copy current line - - - - - Transpose current and previous lines - - - - - Duplicate the current line - - - - - Select all - - - - - Move selected lines up one line - - - - - Move selected lines down one line - - - - - Duplicate selection - - - - - Convert selection to lower case - - - - - Convert selection to upper case - - - - - Cut selection - - - - - Copy selection - - - - - Paste - Lipește - - - - Toggle insert/overtype - - - - - Insert newline - - - - - Formfeed - - - - - Indent one level - - - - - De-indent one level - - - - - Cancel - - - - - Undo last command - - - - - Redo last command - - - - - Zoom in - - - - - Zoom out - - - - - QsciLexerCPP - - - Default - Implicit - - - - Inactive default - - - - - C comment - - - - - Inactive C comment - - - - - C++ comment - - - - - Inactive C++ comment - - - - - JavaDoc style C comment - - - - - Inactive JavaDoc style C comment - - - - - Number - - - - - Inactive number - - - - - Keyword - Cuvânt Cheie - - - - Inactive keyword - - - - - Double-quoted string - - - - - Inactive double-quoted string - - - - - Single-quoted string - - - - - Inactive single-quoted string - - - - - IDL UUID - - - - - Inactive IDL UUID - - - - - Pre-processor block - - - - - Inactive pre-processor block - - - - - Operator - - - - - Inactive operator - - - - - Identifier - Identificator - - - - Inactive identifier - - - - - Unclosed string - - - - - Inactive unclosed string - - - - - C# verbatim string - - - - - Inactive C# verbatim string - - - - - JavaScript regular expression - - - - - Inactive JavaScript regular expression - - - - - JavaDoc style C++ comment - - - - - Inactive JavaDoc style C++ comment - - - - - Secondary keywords and identifiers - - - - - Inactive secondary keywords and identifiers - - - - - JavaDoc keyword - - - - - Inactive JavaDoc keyword - - - - - JavaDoc keyword error - - - - - Inactive JavaDoc keyword error - - - - - Global classes and typedefs - - - - - Inactive global classes and typedefs - - - - - C++ raw string - - - - - Inactive C++ raw string - - - - - Vala triple-quoted verbatim string - - - - - Inactive Vala triple-quoted verbatim string - - - - - Pike hash-quoted string - - - - - Inactive Pike hash-quoted string - - - - - Pre-processor C comment - - - - - Inactive pre-processor C comment - - - - - JavaDoc style pre-processor comment - - - - - Inactive JavaDoc style pre-processor comment - - - - - User-defined literal - - - - - Inactive user-defined literal - - - - - Task marker - - - - - Inactive task marker - - - - - Escape sequence - - - - - Inactive escape sequence - - - - - QsciLexerHTML - - - HTML default - - - - - Tag - - - - - Unknown tag - - - - - Attribute - - - - - Unknown attribute - - - - - HTML number - - - - - HTML double-quoted string - - - - - HTML single-quoted string - - - - - Other text in a tag - - - - - HTML comment - - - - - Entity - - - - - End of a tag - - - - - Start of an XML fragment - - - - - End of an XML fragment - - - - - Script tag - - - - - Start of an ASP fragment with @ - - - - - Start of an ASP fragment - - - - - CDATA - - - - - Start of a PHP fragment - - - - - Unquoted HTML value - - - - - ASP X-Code comment - - - - - SGML default - - - - - SGML command - - - - - First parameter of an SGML command - - - - - SGML double-quoted string - - - - - SGML single-quoted string - - - - - SGML error - - - - - SGML special entity - - - - - SGML comment - - - - - First parameter comment of an SGML command - - - - - SGML block default - - - - - Start of a JavaScript fragment - - - - - JavaScript default - - - - - JavaScript comment - - - - - JavaScript line comment - - - - - JavaDoc style JavaScript comment - - - - - JavaScript number - - - - - JavaScript word - - - - - JavaScript keyword - - - - - JavaScript double-quoted string - - - - - JavaScript single-quoted string - - - - - JavaScript symbol - - - - - JavaScript unclosed string - - - - - JavaScript regular expression - - - - - Start of an ASP JavaScript fragment - - - - - ASP JavaScript default - - - - - ASP JavaScript comment - - - - - ASP JavaScript line comment - - - - - JavaDoc style ASP JavaScript comment - - - - - ASP JavaScript number - - - - - ASP JavaScript word - - - - - ASP JavaScript keyword - - - - - ASP JavaScript double-quoted string - - - - - ASP JavaScript single-quoted string - - - - - ASP JavaScript symbol - - - - - ASP JavaScript unclosed string - - - - - ASP JavaScript regular expression - - - - - Start of a VBScript fragment - - - - - VBScript default - - - - - VBScript comment - - - - - VBScript number - - - - - VBScript keyword - - - - - VBScript string - - - - - VBScript identifier - - - - - VBScript unclosed string - - - - - Start of an ASP VBScript fragment - - - - - ASP VBScript default - - - - - ASP VBScript comment - - - - - ASP VBScript number - - - - - ASP VBScript keyword - - - - - ASP VBScript string - - - - - ASP VBScript identifier - - - - - ASP VBScript unclosed string - - - - - Start of a Python fragment - - - - - Python default - - - - - Python comment - - - - - Python number - - - - - Python double-quoted string - - - - - Python single-quoted string - - - - - Python keyword - - - - - Python triple double-quoted string - - - - - Python triple single-quoted string - - - - - Python class name - - - - - Python function or method name - - - - - Python operator - - - - - Python identifier - - - - - Start of an ASP Python fragment - - - - - ASP Python default - - - - - ASP Python comment - - - - - ASP Python number - - - - - ASP Python double-quoted string - - - - - ASP Python single-quoted string - - - - - ASP Python keyword - - - - - ASP Python triple double-quoted string - - - - - ASP Python triple single-quoted string - - - - - ASP Python class name - - - - - ASP Python function or method name - - - - - ASP Python operator - - - - - ASP Python identifier - - - - - PHP default - - - - - PHP double-quoted string - - - - - PHP single-quoted string - - - - - PHP keyword - - - - - PHP number - - - - - PHP variable - - - - - PHP comment - + Paste + Lipește + + + QsciLexerCPP - - PHP line comment - + Default + Implicit - - PHP double-quoted variable - + Keyword + Cuvânt Cheie - - PHP operator - + Identifier + Identificator QsciLexerJSON - Default - Implicit + Implicit - - Number - - - - String - Șir - - - - Unclosed string - - - - - Property - - - - - Escape sequence - - - - - Line comment - - - - - Block comment - - - - - Operator - - - - - IRI - - - - - JSON-LD compact IRI - - - - - JSON keyword - - - - - JSON-LD keyword - - - - - Parsing error - + Șir QsciLexerJavaScript - Regular expression - Expresie regulată + Expresie regulată QsciLexerPython - Default - Implicit + Implicit - Comment - Comentariu + Comentariu - - Number - - - - - Double-quoted string - - - - - Single-quoted string - - - - Keyword - Cuvânt Cheie - - - - Triple single-quoted string - - - - - Triple double-quoted string - - - - - Class name - - - - - Function or method name - - - - - Operator - + Cuvânt Cheie - Identifier - Identificator - - - - Comment block - - - - - Unclosed string - - - - - Highlighted identifier - - - - - Decorator - - - - - Double-quoted f-string - - - - - Single-quoted f-string - - - - - Triple single-quoted f-string - - - - - Triple double-quoted f-string - + Identificator QsciLexerSQL - Default - Implicit + Implicit - Comment - Comentariu + Comentariu - - Comment line - - - - - JavaDoc style comment - - - - - Number - - - - Keyword - Cuvânt Cheie - - - - Double-quoted string - - - - - Single-quoted string - - - - - SQL*Plus keyword - - - - - SQL*Plus prompt - - - - - Operator - + Cuvânt Cheie - Identifier - Identificator - - - - SQL*Plus comment - - - - - # comment line - - - - - JavaDoc keyword - - - - - JavaDoc keyword error - - - - - User defined 1 - - - - - User defined 2 - - - - - User defined 3 - - - - - User defined 4 - - - - - Quoted identifier - - - - - Quoted operator - + Identificator QsciScintilla - &Undo - &Anulează - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - Delete - + &Anulează - Select All - Selectează Toate + Selectează Toate @@ -9486,24 +7916,6 @@ Lăsați câmpul gol pentru utilizarea codificării bazei de date. Setează un nume nou pentru navigatorul de date. Utilizează caracterul '&&' pentru a permite utilizarea următorului caracter ca o comandă rapidă de la tastatură. - - UndoStack - - - Inserting %1 bytes - - - - - Delete %1 chars - - - - - Overwrite %1 chars - - - VacuumDialog diff --git a/src/translations/sqlb_ru.ts b/src/translations/sqlb_ru.ts index 3a56b082f..1c0233f13 100644 --- a/src/translations/sqlb_ru.ts +++ b/src/translations/sqlb_ru.ts @@ -5753,1660 +5753,76 @@ Please check again. QsciCommand - - Move down one line - - - - - Extend selection down one line - - - - - Extend rectangular selection down one line - - - - - Scroll view down one line - - - - - Move up one line - - - - - Extend selection up one line - - - - - Extend rectangular selection up one line - - - - - Scroll view up one line - - - - - Scroll to start of document - - - - - Scroll to end of document - - - - - Scroll vertically to centre current line - - - - - Move down one paragraph - - - - - Extend selection down one paragraph - - - - - Move up one paragraph - - - - - Extend selection up one paragraph - - - - - Move left one character - - - - - Extend selection left one character - - - - - Extend rectangular selection left one character - - - - - Move right one character - - - - - Extend selection right one character - - - - - Extend rectangular selection right one character - - - - - Move left one word - - - - - Extend selection left one word - - - - - Move right one word - - - - - Extend selection right one word - - - - - Move to end of previous word - - - - - Extend selection to end of previous word - - - - - Move to end of next word - - - - - Extend selection to end of next word - - - - - Move left one word part - - - - - Extend selection left one word part - - - - - Move right one word part - - - - - Extend selection right one word part - - - - - Move to start of document line - - - - - Extend selection to start of document line - - - - - Extend rectangular selection to start of document line - - - - - Move to start of display line - - - - - Extend selection to start of display line - - - - - Move to start of display or document line - - - - - Extend selection to start of display or document line - - - - - Move to first visible character in document line - - - - - Extend selection to first visible character in document line - - - - - Extend rectangular selection to first visible character in document line - - - - - Move to first visible character of display in document line - - - - - Extend selection to first visible character in display or document line - - - - - Move to end of document line - - - - - Extend selection to end of document line - - - - - Extend rectangular selection to end of document line - - - - - Move to end of display line - - - - - Extend selection to end of display line - - - - - Move to end of display or document line - - - - - Extend selection to end of display or document line - - - - - Move to start of document - - - - - Extend selection to start of document - - - - - Move to end of document - - - - - Extend selection to end of document - - - - - Move up one page - - - - - Extend selection up one page - - - - - Extend rectangular selection up one page - - - - - Move down one page - - - - - Extend selection down one page - - - - - Extend rectangular selection down one page - - - - - Stuttered move up one page - - - - - Stuttered extend selection up one page - - - - - Stuttered move down one page - - - - - Stuttered extend selection down one page - - - - - Delete current character - - - - - Delete previous character - - - - - Delete previous character if not at start of line - - - - - Delete word to left - - - - - Delete word to right - - - - - Delete right to end of next word - - - - - Delete line to left - - - - - Delete line to right - - - - - Delete current line - - - - - Cut current line - - - - - Copy current line - - - - - Transpose current and previous lines - - - - - Duplicate the current line - - - - - Select all - - - - - Move selected lines up one line - - - - - Move selected lines down one line - - - - - Duplicate selection - - - - - Convert selection to lower case - - - - - Convert selection to upper case - - - - - Cut selection - - - - - Copy selection - - - - - Paste - Вставить - - - - Toggle insert/overtype - - - - - Insert newline - - - - - Formfeed - - - - - Indent one level - - - - - De-indent one level - - - - - Cancel - Отменить - - - - Undo last command - - - - - Redo last command - - - - - Zoom in - - - - - Zoom out - - - - - QsciLexerCPP - - - Default - По умолчанию - - - - Inactive default - - - - - C comment - - - - - Inactive C comment - - - - - C++ comment - - - - - Inactive C++ comment - - - - - JavaDoc style C comment - - - - - Inactive JavaDoc style C comment - - - - - Number - - - - - Inactive number - - - - - Keyword - Ключевое слово - - - - Inactive keyword - - - - - Double-quoted string - - - - - Inactive double-quoted string - - - - - Single-quoted string - - - - - Inactive single-quoted string - - - - - IDL UUID - - - - - Inactive IDL UUID - - - - - Pre-processor block - - - - - Inactive pre-processor block - - - - - Operator - - - - - Inactive operator - - - - - Identifier - Идентификатор - - - - Inactive identifier - - - - - Unclosed string - - - - - Inactive unclosed string - - - - - C# verbatim string - - - - - Inactive C# verbatim string - - - - - JavaScript regular expression - - - - - Inactive JavaScript regular expression - - - - - JavaDoc style C++ comment - - - - - Inactive JavaDoc style C++ comment - - - - - Secondary keywords and identifiers - - - - - Inactive secondary keywords and identifiers - - - - - JavaDoc keyword - - - - - Inactive JavaDoc keyword - - - - - JavaDoc keyword error - - - - - Inactive JavaDoc keyword error - - - - - Global classes and typedefs - - - - - Inactive global classes and typedefs - - - - - C++ raw string - - - - - Inactive C++ raw string - - - - - Vala triple-quoted verbatim string - - - - - Inactive Vala triple-quoted verbatim string - - - - - Pike hash-quoted string - - - - - Inactive Pike hash-quoted string - - - - - Pre-processor C comment - - - - - Inactive pre-processor C comment - - - - - JavaDoc style pre-processor comment - - - - - Inactive JavaDoc style pre-processor comment - - - - - User-defined literal - - - - - Inactive user-defined literal - - - - - Task marker - - - - - Inactive task marker - - - - - Escape sequence - - - - - Inactive escape sequence - - - - - QsciLexerHTML - - - HTML default - - - - - Tag - - - - - Unknown tag - - - - - Attribute - - - - - Unknown attribute - - - - - HTML number - - - - - HTML double-quoted string - - - - - HTML single-quoted string - - - - - Other text in a tag - - - - - HTML comment - - - - - Entity - - - - - End of a tag - - - - - Start of an XML fragment - - - - - End of an XML fragment - - - - - Script tag - - - - - Start of an ASP fragment with @ - - - - - Start of an ASP fragment - - - - - CDATA - - - - - Start of a PHP fragment - - - - - Unquoted HTML value - - - - - ASP X-Code comment - - - - - SGML default - - - - - SGML command - - - - - First parameter of an SGML command - - - - - SGML double-quoted string - - - - - SGML single-quoted string - - - - - SGML error - - - - - SGML special entity - - - - - SGML comment - - - - - First parameter comment of an SGML command - - - - - SGML block default - - - - - Start of a JavaScript fragment - - - - - JavaScript default - - - - - JavaScript comment - - - - - JavaScript line comment - - - - - JavaDoc style JavaScript comment - - - - - JavaScript number - - - - - JavaScript word - - - - - JavaScript keyword - - - - - JavaScript double-quoted string - - - - - JavaScript single-quoted string - - - - - JavaScript symbol - - - - - JavaScript unclosed string - - - - - JavaScript regular expression - - - - - Start of an ASP JavaScript fragment - - - - - ASP JavaScript default - - - - - ASP JavaScript comment - - - - - ASP JavaScript line comment - - - - - JavaDoc style ASP JavaScript comment - - - - - ASP JavaScript number - - - - - ASP JavaScript word - - - - - ASP JavaScript keyword - - - - - ASP JavaScript double-quoted string - - - - - ASP JavaScript single-quoted string - - - - - ASP JavaScript symbol - - - - - ASP JavaScript unclosed string - - - - - ASP JavaScript regular expression - - - - - Start of a VBScript fragment - - - - - VBScript default - - - - - VBScript comment - - - - - VBScript number - - - - - VBScript keyword - - - - - VBScript string - - - - - VBScript identifier - - - - - VBScript unclosed string - - - - - Start of an ASP VBScript fragment - - - - - ASP VBScript default - - - - - ASP VBScript comment - - - - - ASP VBScript number - - - - - ASP VBScript keyword - - - - - ASP VBScript string - - - - - ASP VBScript identifier - - - - - ASP VBScript unclosed string - - - - - Start of a Python fragment - - - - - Python default - - - - - Python comment - - - - - Python number - - - - - Python double-quoted string - - - - - Python single-quoted string - - - - - Python keyword - - - - - Python triple double-quoted string - - - - - Python triple single-quoted string - - - - - Python class name - - - - - Python function or method name - - - - - Python operator - - - - - Python identifier - - - - - Start of an ASP Python fragment - - - - - ASP Python default - - - - - ASP Python comment - - - - - ASP Python number - - - - - ASP Python double-quoted string - - - - - ASP Python single-quoted string - - - - - ASP Python keyword - - - - - ASP Python triple double-quoted string - - - - - ASP Python triple single-quoted string - - - - - ASP Python class name - - - - - ASP Python function or method name - - - - - ASP Python operator - - - - - ASP Python identifier - - - - - PHP default - - - - - PHP double-quoted string - - - - - PHP single-quoted string - - - - - PHP keyword - - - - - PHP number - - - - - PHP variable - + Paste + Вставить - - PHP comment - + Cancel + Отменить + + + QsciLexerCPP - - PHP line comment - + Default + По умолчанию - - PHP double-quoted variable - + Keyword + Ключевое слово - - PHP operator - + Identifier + Идентификатор QsciLexerJSON - Default - По умолчанию + По умолчанию - - Number - - - - String - Строка - - - - Unclosed string - - - - - Property - - - - - Escape sequence - - - - - Line comment - - - - - Block comment - - - - - Operator - - - - - IRI - - - - - JSON-LD compact IRI - - - - - JSON keyword - - - - - JSON-LD keyword - - - - - Parsing error - - - - - QsciLexerJavaScript - - - Regular expression - + Строка QsciLexerPython - Default - По умолчанию + По умолчанию - Comment - Комментарий - - - - Number - - - - - Double-quoted string - + Комментарий - - Single-quoted string - - - - Keyword - Ключевое слово - - - - Triple single-quoted string - - - - - Triple double-quoted string - - - - - Class name - + Ключевое слово - - Function or method name - - - - - Operator - - - - Identifier - Идентификатор - - - - Comment block - - - - - Unclosed string - - - - - Highlighted identifier - - - - - Decorator - - - - - Double-quoted f-string - - - - - Single-quoted f-string - - - - - Triple single-quoted f-string - - - - - Triple double-quoted f-string - + Идентификатор QsciLexerSQL - Default - По умолчанию + По умолчанию - Comment - Комментарий - - - - Comment line - - - - - JavaDoc style comment - + Комментарий - - Number - - - - Keyword - Ключевое слово - - - - Double-quoted string - - - - - Single-quoted string - - - - - SQL*Plus keyword - + Ключевое слово - - SQL*Plus prompt - - - - - Operator - - - - Identifier - Идентификатор - - - - SQL*Plus comment - - - - - # comment line - - - - - JavaDoc keyword - - - - - JavaDoc keyword error - - - - - User defined 1 - - - - - User defined 2 - - - - - User defined 3 - - - - - User defined 4 - - - - - Quoted identifier - - - - - Quoted operator - - - - - QsciScintilla - - - &Undo - - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - Delete - - - - - Select All - + Идентификатор @@ -9402,24 +7818,6 @@ Leave the field empty for using the database encoding. - - UndoStack - - - Inserting %1 bytes - - - - - Delete %1 chars - - - - - Overwrite %1 chars - - - VacuumDialog diff --git a/src/translations/sqlb_sv.ts b/src/translations/sqlb_sv.ts index 34c5b7604..8af7ee3a4 100644 --- a/src/translations/sqlb_sv.ts +++ b/src/translations/sqlb_sv.ts @@ -4481,1333 +4481,79 @@ Please check again. QsciCommand - Move down one line - - - - Extend selection down one line - - - - Extend rectangular selection down one line - - - - Scroll view down one line - - - - Move up one line - - - - Extend selection up one line - - - - Extend rectangular selection up one line - - - - Scroll view up one line - - - - Scroll to start of document - - - - Scroll to end of document - - - - Scroll vertically to centre current line - - - - Move down one paragraph - - - - Extend selection down one paragraph - - - - Move up one paragraph - - - - Extend selection up one paragraph - - - - Move left one character - - - - Extend selection left one character - - - - Extend rectangular selection left one character - - - - Move right one character - - - - Extend selection right one character - - - - Extend rectangular selection right one character - - - - Move left one word - - - - Extend selection left one word - - - - Move right one word - - - - Extend selection right one word - - - - Move to end of previous word - - - - Extend selection to end of previous word - - - - Move to end of next word - - - - Extend selection to end of next word - - - - Move left one word part - - - - Extend selection left one word part - - - - Move right one word part - - - - Extend selection right one word part - - - - Move to start of document line - - - - Extend selection to start of document line - - - - Extend rectangular selection to start of document line - - - - Move to start of display line - - - - Extend selection to start of display line - - - - Move to start of display or document line - - - - Extend selection to start of display or document line - - - - Move to first visible character in document line - - - - Extend selection to first visible character in document line - - - - Extend rectangular selection to first visible character in document line - - - - Move to first visible character of display in document line - - - - Extend selection to first visible character in display or document line - - - - Move to end of document line - - - - Extend selection to end of document line - - - - Extend rectangular selection to end of document line - - - - Move to end of display line - - - - Extend selection to end of display line - - - - Move to end of display or document line - - - - Extend selection to end of display or document line - - - - Move to start of document - - - - Extend selection to start of document - - - - Move to end of document - - - - Extend selection to end of document - - - - Move up one page - - - - Extend selection up one page - - - - Extend rectangular selection up one page - - - - Move down one page - - - - Extend selection down one page - - - - Extend rectangular selection down one page - - - - Stuttered move up one page - - - - Stuttered extend selection up one page - - - - Stuttered move down one page - - - - Stuttered extend selection down one page - - - - Delete current character - - - - Delete previous character - - - - Delete previous character if not at start of line - - - - Delete word to left - - - - Delete word to right - - - - Delete right to end of next word - - - - Delete line to left - - - - Delete line to right - - - - Delete current line - - - - Cut current line - - - - Copy current line - - - - Transpose current and previous lines - - - - Duplicate the current line - - - - Select all - - - - Move selected lines up one line - - - - Move selected lines down one line - - - - Duplicate selection - - - - Convert selection to lower case - - - - Convert selection to upper case - - - - Cut selection - - - - Copy selection - - - - Paste - - - - Toggle insert/overtype - - - - Insert newline - - - - Formfeed - - - - Indent one level - - - - De-indent one level - - - - Cancel - Avbryt - - - Undo last command - - - - Redo last command - - - - Zoom in - - - - Zoom out - - - - - QsciLexerCPP - - Default - Förvald - - - Inactive default - - - - C comment - - - - Inactive C comment - - - - C++ comment - - - - Inactive C++ comment - - - - JavaDoc style C comment - - - - Inactive JavaDoc style C comment - - - - Number - - - - Inactive number - - - - Keyword - Nyckelord - - - Inactive keyword - - - - Double-quoted string - - - - Inactive double-quoted string - - - - Single-quoted string - - - - Inactive single-quoted string - - - - IDL UUID - - - - Inactive IDL UUID - - - - Pre-processor block - - - - Inactive pre-processor block - - - - Operator - - - - Inactive operator - - - - Identifier - Identifierare - - - Inactive identifier - - - - Unclosed string - - - - Inactive unclosed string - - - - C# verbatim string - - - - Inactive C# verbatim string - - - - JavaScript regular expression - - - - Inactive JavaScript regular expression - - - - JavaDoc style C++ comment - - - - Inactive JavaDoc style C++ comment - - - - Secondary keywords and identifiers - - - - Inactive secondary keywords and identifiers - - - - JavaDoc keyword - - - - Inactive JavaDoc keyword - - - - JavaDoc keyword error - - - - Inactive JavaDoc keyword error - - - - Global classes and typedefs - - - - Inactive global classes and typedefs - - - - C++ raw string - - - - Inactive C++ raw string - - - - Vala triple-quoted verbatim string - - - - Inactive Vala triple-quoted verbatim string - - - - Pike hash-quoted string - - - - Inactive Pike hash-quoted string - - - - Pre-processor C comment - - - - Inactive pre-processor C comment - - - - JavaDoc style pre-processor comment - - - - Inactive JavaDoc style pre-processor comment - - - - User-defined literal - - - - Inactive user-defined literal - - - - Task marker - - - - Inactive task marker - - - - Escape sequence - - - - Inactive escape sequence - - - - - QsciLexerHTML - - HTML default - - - - Tag - - - - Unknown tag - - - - Attribute - - - - Unknown attribute - - - - HTML number - - - - HTML double-quoted string - - - - HTML single-quoted string - - - - Other text in a tag - - - - HTML comment - - - - Entity - - - - End of a tag - - - - Start of an XML fragment - - - - End of an XML fragment - - - - Script tag - - - - Start of an ASP fragment with @ - - - - Start of an ASP fragment - - - - CDATA - - - - Start of a PHP fragment - - - - Unquoted HTML value - - - - ASP X-Code comment - - - - SGML default - - - - SGML command - - - - First parameter of an SGML command - - - - SGML double-quoted string - - - - SGML single-quoted string - - - - SGML error - - - - SGML special entity - - - - SGML comment - - - - First parameter comment of an SGML command - - - - SGML block default - - - - Start of a JavaScript fragment - - - - JavaScript default - - - - JavaScript comment - - - - JavaScript line comment - - - - JavaDoc style JavaScript comment - - - - JavaScript number - - - - JavaScript word - - - - JavaScript keyword - - - - JavaScript double-quoted string - - - - JavaScript single-quoted string - - - - JavaScript symbol - - - - JavaScript unclosed string - - - - JavaScript regular expression - - - - Start of an ASP JavaScript fragment - - - - ASP JavaScript default - - - - ASP JavaScript comment - - - - ASP JavaScript line comment - - - - JavaDoc style ASP JavaScript comment - - - - ASP JavaScript number - - - - ASP JavaScript word - - - - ASP JavaScript keyword - - - - ASP JavaScript double-quoted string - - - - ASP JavaScript single-quoted string - - - - ASP JavaScript symbol - - - - ASP JavaScript unclosed string - - - - ASP JavaScript regular expression - - - - Start of a VBScript fragment - - - - VBScript default - - - - VBScript comment - - - - VBScript number - - - - VBScript keyword - - - - VBScript string - - - - VBScript identifier - - - - VBScript unclosed string - - - - Start of an ASP VBScript fragment - - - - ASP VBScript default - - - - ASP VBScript comment - - - - ASP VBScript number - - - - ASP VBScript keyword - - - - ASP VBScript string - - - - ASP VBScript identifier - - - - ASP VBScript unclosed string - - - - Start of a Python fragment - - - - Python default - - - - Python comment - - - - Python number - - - - Python double-quoted string - - - - Python single-quoted string - - - - Python keyword - - - - Python triple double-quoted string - - - - Python triple single-quoted string - - - - Python class name - - - - Python function or method name - - - - Python operator - - - - Python identifier - - - - Start of an ASP Python fragment - - - - ASP Python default - - - - ASP Python comment - - - - ASP Python number - - - - ASP Python double-quoted string - - - - ASP Python single-quoted string - - - - ASP Python keyword - - - - ASP Python triple double-quoted string - - - - ASP Python triple single-quoted string - - - - ASP Python class name - - - - ASP Python function or method name - - - - ASP Python operator - - - - ASP Python identifier - - - - PHP default - - - - PHP double-quoted string - - - - PHP single-quoted string - - - - PHP keyword - - - - PHP number - - - - PHP variable - - - - PHP comment - + Cancel + Avbryt + + + QsciLexerCPP - PHP line comment - + Default + Förvald - PHP double-quoted variable - + Keyword + Nyckelord - PHP operator - + Identifier + Identifierare QsciLexerJSON Default - Förvald - - - Number - + Förvald String - Sträng - - - Unclosed string - - - - Property - - - - Escape sequence - - - - Line comment - - - - Block comment - - - - Operator - - - - IRI - - - - JSON-LD compact IRI - - - - JSON keyword - - - - JSON-LD keyword - - - - Parsing error - - - - - QsciLexerJavaScript - - Regular expression - + Sträng QsciLexerPython Default - Förvald + Förvald Comment - Kommentar - - - Number - - - - Double-quoted string - - - - Single-quoted string - + Kommentar Keyword - Nyckelord - - - Triple single-quoted string - - - - Triple double-quoted string - - - - Class name - - - - Function or method name - - - - Operator - + Nyckelord Identifier - Identifierare - - - Comment block - - - - Unclosed string - - - - Highlighted identifier - - - - Decorator - - - - Double-quoted f-string - - - - Single-quoted f-string - - - - Triple single-quoted f-string - - - - Triple double-quoted f-string - + Identifierare QsciLexerSQL Default - Förvald + Förvald Comment - Kommentar - - - Comment line - - - - JavaDoc style comment - - - - Number - + Kommentar Keyword - Nyckelord - - - Double-quoted string - - - - Single-quoted string - - - - SQL*Plus keyword - - - - SQL*Plus prompt - - - - Operator - + Nyckelord Identifier - Identifierare - - - SQL*Plus comment - - - - # comment line - - - - JavaDoc keyword - - - - JavaDoc keyword error - - - - User defined 1 - - - - User defined 2 - - - - User defined 3 - - - - User defined 4 - - - - Quoted identifier - - - - Quoted operator - + Identifierare QsciScintilla - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Delete - Ta bort - - - Select All - + Ta bort @@ -7376,21 +6122,6 @@ Leave the field empty for using the database encoding. - - UndoStack - - Inserting %1 bytes - - - - Delete %1 chars - - - - Overwrite %1 chars - - - VacuumDialog diff --git a/src/translations/sqlb_tr.ts b/src/translations/sqlb_tr.ts index 116db3c9d..881738130 100644 --- a/src/translations/sqlb_tr.ts +++ b/src/translations/sqlb_tr.ts @@ -5765,1660 +5765,90 @@ Please check again. QsciCommand - - Move down one line - - - - - Extend selection down one line - - - - - Extend rectangular selection down one line - - - - - Scroll view down one line - - - - - Move up one line - - - - - Extend selection up one line - - - - - Extend rectangular selection up one line - - - - - Scroll view up one line - - - - - Scroll to start of document - - - - - Scroll to end of document - - - - - Scroll vertically to centre current line - - - - - Move down one paragraph - - - - - Extend selection down one paragraph - - - - - Move up one paragraph - - - - - Extend selection up one paragraph - - - - - Move left one character - - - - - Extend selection left one character - - - - - Extend rectangular selection left one character - - - - - Move right one character - - - - - Extend selection right one character - - - - - Extend rectangular selection right one character - - - - - Move left one word - - - - - Extend selection left one word - - - - - Move right one word - - - - - Extend selection right one word - - - - - Move to end of previous word - - - - - Extend selection to end of previous word - - - - - Move to end of next word - - - - - Extend selection to end of next word - - - - - Move left one word part - - - - - Extend selection left one word part - - - - - Move right one word part - - - - - Extend selection right one word part - - - - - Move to start of document line - - - - - Extend selection to start of document line - - - - - Extend rectangular selection to start of document line - - - - - Move to start of display line - - - - - Extend selection to start of display line - - - - - Move to start of display or document line - - - - - Extend selection to start of display or document line - - - - - Move to first visible character in document line - - - - - Extend selection to first visible character in document line - - - - - Extend rectangular selection to first visible character in document line - - - - - Move to first visible character of display in document line - - - - - Extend selection to first visible character in display or document line - - - - - Move to end of document line - - - - - Extend selection to end of document line - - - - - Extend rectangular selection to end of document line - - - - - Move to end of display line - - - - - Extend selection to end of display line - - - - - Move to end of display or document line - - - - - Extend selection to end of display or document line - - - - - Move to start of document - - - - - Extend selection to start of document - - - - - Move to end of document - - - - - Extend selection to end of document - - - - - Move up one page - - - - - Extend selection up one page - - - - - Extend rectangular selection up one page - - - - - Move down one page - - - - - Extend selection down one page - - - - - Extend rectangular selection down one page - - - - - Stuttered move up one page - - - - - Stuttered extend selection up one page - - - - - Stuttered move down one page - - - - - Stuttered extend selection down one page - - - - - Delete current character - - - - - Delete previous character - - - - - Delete previous character if not at start of line - - - - - Delete word to left - - - - - Delete word to right - - - - - Delete right to end of next word - - - - - Delete line to left - - - - - Delete line to right - - - - - Delete current line - - - - - Cut current line - - - - - Copy current line - - - - - Transpose current and previous lines - - - - - Duplicate the current line - - - - - Select all - - - - - Move selected lines up one line - - - - - Move selected lines down one line - - - - - Duplicate selection - - - - - Convert selection to lower case - - - - - Convert selection to upper case - - - - - Cut selection - - - - - Copy selection - - - - - Paste - Yapıştır - - - - Toggle insert/overtype - - - - - Insert newline - - - - - Formfeed - - - - - Indent one level - - - - - De-indent one level - - - - - Cancel - İptal - - - - Undo last command - - - - - Redo last command - - - - - Zoom in - - - - - Zoom out - - - - - QsciLexerCPP - - - Default - Varsayılan - - - - Inactive default - - - - - C comment - - - - - Inactive C comment - - - - - C++ comment - - - - - Inactive C++ comment - - - - - JavaDoc style C comment - - - - - Inactive JavaDoc style C comment - - - - - Number - - - - - Inactive number - - - - - Keyword - Anahtar Kelime - - - - Inactive keyword - - - - - Double-quoted string - - - - - Inactive double-quoted string - - - - - Single-quoted string - - - - - Inactive single-quoted string - - - - - IDL UUID - - - - - Inactive IDL UUID - - - - - Pre-processor block - - - - - Inactive pre-processor block - - - - - Operator - - - - - Inactive operator - - - - - Identifier - Kimlik - - - - Inactive identifier - - - - - Unclosed string - - - - - Inactive unclosed string - - - - - C# verbatim string - - - - - Inactive C# verbatim string - - - - - JavaScript regular expression - - - - - Inactive JavaScript regular expression - - - - - JavaDoc style C++ comment - - - - - Inactive JavaDoc style C++ comment - - - - - Secondary keywords and identifiers - - - - - Inactive secondary keywords and identifiers - - - - - JavaDoc keyword - - - - - Inactive JavaDoc keyword - - - - - JavaDoc keyword error - - - - - Inactive JavaDoc keyword error - - - - - Global classes and typedefs - - - - - Inactive global classes and typedefs - - - - - C++ raw string - - - - - Inactive C++ raw string - - - - - Vala triple-quoted verbatim string - - - - - Inactive Vala triple-quoted verbatim string - - - - - Pike hash-quoted string - - - - - Inactive Pike hash-quoted string - - - - - Pre-processor C comment - - - - - Inactive pre-processor C comment - - - - - JavaDoc style pre-processor comment - - - - - Inactive JavaDoc style pre-processor comment - - - - - User-defined literal - - - - - Inactive user-defined literal - - - - - Task marker - - - - - Inactive task marker - - - - - Escape sequence - - - - - Inactive escape sequence - - - - - QsciLexerHTML - - - HTML default - - - - - Tag - - - - - Unknown tag - - - - - Attribute - - - - - Unknown attribute - - - - - HTML number - - - - - HTML double-quoted string - - - - - HTML single-quoted string - - - - - Other text in a tag - - - - - HTML comment - - - - - Entity - - - - - End of a tag - - - - - Start of an XML fragment - - - - - End of an XML fragment - - - - - Script tag - - - - - Start of an ASP fragment with @ - - - - - Start of an ASP fragment - - - - - CDATA - - - - - Start of a PHP fragment - - - - - Unquoted HTML value - - - - - ASP X-Code comment - - - - - SGML default - - - - - SGML command - - - - - First parameter of an SGML command - - - - - SGML double-quoted string - - - - - SGML single-quoted string - - - - - SGML error - - - - - SGML special entity - - - - - SGML comment - - - - - First parameter comment of an SGML command - - - - - SGML block default - - - - - Start of a JavaScript fragment - - - - - JavaScript default - - - - - JavaScript comment - - - - - JavaScript line comment - - - - - JavaDoc style JavaScript comment - - - - - JavaScript number - - - - - JavaScript word - - - - - JavaScript keyword - - - - - JavaScript double-quoted string - - - - - JavaScript single-quoted string - - - - - JavaScript symbol - - - - - JavaScript unclosed string - - - - - JavaScript regular expression - - - - - Start of an ASP JavaScript fragment - - - - - ASP JavaScript default - - - - - ASP JavaScript comment - - - - - ASP JavaScript line comment - - - - - JavaDoc style ASP JavaScript comment - - - - - ASP JavaScript number - - - - - ASP JavaScript word - - - - - ASP JavaScript keyword - - - - - ASP JavaScript double-quoted string - - - - - ASP JavaScript single-quoted string - - - - - ASP JavaScript symbol - - - - - ASP JavaScript unclosed string - - - - - ASP JavaScript regular expression - - - - - Start of a VBScript fragment - - - - - VBScript default - - - - - VBScript comment - - - - - VBScript number - - - - - VBScript keyword - - - - - VBScript string - - - - - VBScript identifier - - - - - VBScript unclosed string - - - - - Start of an ASP VBScript fragment - - - - - ASP VBScript default - - - - - ASP VBScript comment - - - - - ASP VBScript number - - - - - ASP VBScript keyword - - - - - ASP VBScript string - - - - - ASP VBScript identifier - - - - - ASP VBScript unclosed string - - - - - Start of a Python fragment - - - - - Python default - - - - - Python comment - - - - - Python number - - - - - Python double-quoted string - - - - - Python single-quoted string - - - - - Python keyword - - - - - Python triple double-quoted string - - - - - Python triple single-quoted string - - - - - Python class name - - - - - Python function or method name - - - - - Python operator - - - - - Python identifier - - - - - Start of an ASP Python fragment - - - - - ASP Python default - - - - - ASP Python comment - - - - - ASP Python number - - - - - ASP Python double-quoted string - - - - - ASP Python single-quoted string - - - - - ASP Python keyword - - - - - ASP Python triple double-quoted string - - - - - ASP Python triple single-quoted string - - - - - ASP Python class name - - - - - ASP Python function or method name - - - - - ASP Python operator - - - - - ASP Python identifier - - - - - PHP default - - - - - PHP double-quoted string - - - - - PHP single-quoted string - - - - - PHP keyword - - - - - PHP number - - - - - PHP variable - + Paste + Yapıştır - - PHP comment - + Cancel + İptal + + + QsciLexerCPP - - PHP line comment - + Default + Varsayılan - - PHP double-quoted variable - + Keyword + Anahtar Kelime - - PHP operator - + Identifier + Kimlik QsciLexerJSON - Default - Varsayılan + Varsayılan - - Number - - - - String - String - - - - Unclosed string - - - - - Property - - - - - Escape sequence - - - - - Line comment - - - - - Block comment - - - - - Operator - - - - - IRI - - - - - JSON-LD compact IRI - - - - - JSON keyword - - - - - JSON-LD keyword - - - - - Parsing error - + String QsciLexerJavaScript - Regular expression - Düzenli ifadeler (RegEx) + Düzenli ifadeler (RegEx) QsciLexerPython - Default - Varsayılan + Varsayılan - Comment - Yorum - - - - Number - - - - - Double-quoted string - - - - - Single-quoted string - + Yorum - Keyword - Anahtar Kelime - - - - Triple single-quoted string - - - - - Triple double-quoted string - - - - - Class name - - - - - Function or method name - - - - - Operator - + Anahtar Kelime - Identifier - Kimlik - - - - Comment block - - - - - Unclosed string - - - - - Highlighted identifier - - - - - Decorator - - - - - Double-quoted f-string - - - - - Single-quoted f-string - - - - - Triple single-quoted f-string - - - - - Triple double-quoted f-string - + Kimlik QsciLexerSQL - Default - Varsayılan + Varsayılan - Comment - Yorum - - - - Comment line - - - - - JavaDoc style comment - - - - - Number - + Yorum - Keyword - Anahtar Kelime - - - - Double-quoted string - - - - - Single-quoted string - - - - - SQL*Plus keyword - - - - - SQL*Plus prompt - - - - - Operator - + Anahtar Kelime - Identifier - Kimlik - - - - SQL*Plus comment - - - - - # comment line - - - - - JavaDoc keyword - - - - - JavaDoc keyword error - - - - - User defined 1 - - - - - User defined 2 - - - - - User defined 3 - - - - - User defined 4 - - - - - Quoted identifier - - - - - Quoted operator - + Kimlik QsciScintilla - - &Undo - - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - Delete - - - - Select All - Tümünü Seç + Tümünü Seç @@ -9409,24 +7839,6 @@ Veritabanı kodlamasını kullanmak için alanı boş bırakın. - - UndoStack - - - Inserting %1 bytes - - - - - Delete %1 chars - - - - - Overwrite %1 chars - - - VacuumDialog diff --git a/src/translations/sqlb_uk_UA.ts b/src/translations/sqlb_uk_UA.ts index 20eaab30b..b1015ac1c 100644 --- a/src/translations/sqlb_uk_UA.ts +++ b/src/translations/sqlb_uk_UA.ts @@ -5723,1660 +5723,83 @@ Please check again. QsciCommand - - Move down one line - - - - - Extend selection down one line - - - - - Extend rectangular selection down one line - - - - - Scroll view down one line - - - - - Move up one line - - - - - Extend selection up one line - - - - - Extend rectangular selection up one line - - - - - Scroll view up one line - - - - - Scroll to start of document - - - - - Scroll to end of document - - - - - Scroll vertically to centre current line - - - - - Move down one paragraph - - - - - Extend selection down one paragraph - - - - - Move up one paragraph - - - - - Extend selection up one paragraph - - - - - Move left one character - - - - - Extend selection left one character - - - - - Extend rectangular selection left one character - - - - - Move right one character - - - - - Extend selection right one character - - - - - Extend rectangular selection right one character - - - - - Move left one word - - - - - Extend selection left one word - - - - - Move right one word - - - - - Extend selection right one word - - - - - Move to end of previous word - - - - - Extend selection to end of previous word - - - - - Move to end of next word - - - - - Extend selection to end of next word - - - - - Move left one word part - - - - - Extend selection left one word part - - - - - Move right one word part - - - - - Extend selection right one word part - - - - - Move to start of document line - - - - - Extend selection to start of document line - - - - - Extend rectangular selection to start of document line - - - - - Move to start of display line - - - - - Extend selection to start of display line - - - - - Move to start of display or document line - - - - - Extend selection to start of display or document line - - - - - Move to first visible character in document line - - - - - Extend selection to first visible character in document line - - - - - Extend rectangular selection to first visible character in document line - - - - - Move to first visible character of display in document line - - - - - Extend selection to first visible character in display or document line - - - - - Move to end of document line - - - - - Extend selection to end of document line - - - - - Extend rectangular selection to end of document line - - - - - Move to end of display line - - - - - Extend selection to end of display line - - - - - Move to end of display or document line - - - - - Extend selection to end of display or document line - - - - - Move to start of document - - - - - Extend selection to start of document - - - - - Move to end of document - - - - - Extend selection to end of document - - - - - Move up one page - - - - - Extend selection up one page - - - - - Extend rectangular selection up one page - - - - - Move down one page - - - - - Extend selection down one page - - - - - Extend rectangular selection down one page - - - - - Stuttered move up one page - - - - - Stuttered extend selection up one page - - - - - Stuttered move down one page - - - - - Stuttered extend selection down one page - - - - - Delete current character - - - - - Delete previous character - - - - - Delete previous character if not at start of line - - - - - Delete word to left - - - - - Delete word to right - - - - - Delete right to end of next word - - - - - Delete line to left - - - - - Delete line to right - - - - - Delete current line - - - - - Cut current line - - - - - Copy current line - - - - - Transpose current and previous lines - - - - - Duplicate the current line - - - - - Select all - - - - - Move selected lines up one line - - - - - Move selected lines down one line - - - - - Duplicate selection - - - - - Convert selection to lower case - - - - - Convert selection to upper case - - - - - Cut selection - - - - - Copy selection - - - - - Paste - Вставити - - - - Toggle insert/overtype - - - - - Insert newline - - - - - Formfeed - - - - - Indent one level - - - - - De-indent one level - - - - - Cancel - Скасувати - - - - Undo last command - - - - - Redo last command - - - - - Zoom in - - - - - Zoom out - - - - - QsciLexerCPP - - - Default - За замовчуванням - - - - Inactive default - - - - - C comment - - - - - Inactive C comment - - - - - C++ comment - - - - - Inactive C++ comment - - - - - JavaDoc style C comment - - - - - Inactive JavaDoc style C comment - - - - - Number - - - - - Inactive number - - - - - Keyword - Ключове слово - - - - Inactive keyword - - - - - Double-quoted string - - - - - Inactive double-quoted string - - - - - Single-quoted string - - - - - Inactive single-quoted string - - - - - IDL UUID - - - - - Inactive IDL UUID - - - - - Pre-processor block - - - - - Inactive pre-processor block - - - - - Operator - - - - - Inactive operator - - - - - Identifier - Ідентифікатор - - - - Inactive identifier - - - - - Unclosed string - - - - - Inactive unclosed string - - - - - C# verbatim string - - - - - Inactive C# verbatim string - - - - - JavaScript regular expression - - - - - Inactive JavaScript regular expression - - - - - JavaDoc style C++ comment - - - - - Inactive JavaDoc style C++ comment - - - - - Secondary keywords and identifiers - - - - - Inactive secondary keywords and identifiers - - - - - JavaDoc keyword - - - - - Inactive JavaDoc keyword - - - - - JavaDoc keyword error - - - - - Inactive JavaDoc keyword error - - - - - Global classes and typedefs - - - - - Inactive global classes and typedefs - - - - - C++ raw string - - - - - Inactive C++ raw string - - - - - Vala triple-quoted verbatim string - - - - - Inactive Vala triple-quoted verbatim string - - - - - Pike hash-quoted string - - - - - Inactive Pike hash-quoted string - - - - - Pre-processor C comment - - - - - Inactive pre-processor C comment - - - - - JavaDoc style pre-processor comment - - - - - Inactive JavaDoc style pre-processor comment - - - - - User-defined literal - - - - - Inactive user-defined literal - - - - - Task marker - - - - - Inactive task marker - - - - - Escape sequence - - - - - Inactive escape sequence - - - - - QsciLexerHTML - - - HTML default - - - - - Tag - - - - - Unknown tag - - - - - Attribute - - - - - Unknown attribute - - - - - HTML number - - - - - HTML double-quoted string - - - - - HTML single-quoted string - - - - - Other text in a tag - - - - - HTML comment - - - - - Entity - - - - - End of a tag - - - - - Start of an XML fragment - - - - - End of an XML fragment - - - - - Script tag - - - - - Start of an ASP fragment with @ - - - - - Start of an ASP fragment - - - - - CDATA - - - - - Start of a PHP fragment - - - - - Unquoted HTML value - - - - - ASP X-Code comment - - - - - SGML default - - - - - SGML command - - - - - First parameter of an SGML command - - - - - SGML double-quoted string - - - - - SGML single-quoted string - - - - - SGML error - - - - - SGML special entity - - - - - SGML comment - - - - - First parameter comment of an SGML command - - - - - SGML block default - - - - - Start of a JavaScript fragment - - - - - JavaScript default - - - - - JavaScript comment - - - - - JavaScript line comment - - - - - JavaDoc style JavaScript comment - - - - - JavaScript number - - - - - JavaScript word - - - - - JavaScript keyword - - - - - JavaScript double-quoted string - - - - - JavaScript single-quoted string - - - - - JavaScript symbol - - - - - JavaScript unclosed string - - - - - JavaScript regular expression - - - - - Start of an ASP JavaScript fragment - - - - - ASP JavaScript default - - - - - ASP JavaScript comment - - - - - ASP JavaScript line comment - - - - - JavaDoc style ASP JavaScript comment - - - - - ASP JavaScript number - - - - - ASP JavaScript word - - - - - ASP JavaScript keyword - - - - - ASP JavaScript double-quoted string - - - - - ASP JavaScript single-quoted string - - - - - ASP JavaScript symbol - - - - - ASP JavaScript unclosed string - - - - - ASP JavaScript regular expression - - - - - Start of a VBScript fragment - - - - - VBScript default - - - - - VBScript comment - - - - - VBScript number - - - - - VBScript keyword - - - - - VBScript string - - - - - VBScript identifier - - - - - VBScript unclosed string - - - - - Start of an ASP VBScript fragment - - - - - ASP VBScript default - - - - - ASP VBScript comment - - - - - ASP VBScript number - - - - - ASP VBScript keyword - - - - - ASP VBScript string - - - - - ASP VBScript identifier - - - - - ASP VBScript unclosed string - - - - - Start of a Python fragment - - - - - Python default - - - - - Python comment - - - - - Python number - - - - - Python double-quoted string - - - - - Python single-quoted string - - - - - Python keyword - - - - - Python triple double-quoted string - - - - - Python triple single-quoted string - - - - - Python class name - - - - - Python function or method name - - - - - Python operator - - - - - Python identifier - - - - - Start of an ASP Python fragment - - - - - ASP Python default - - - - - ASP Python comment - - - - - ASP Python number - - - - - ASP Python double-quoted string - - - - - ASP Python single-quoted string - - - - - ASP Python keyword - - - - - ASP Python triple double-quoted string - - - - - ASP Python triple single-quoted string - - - - - ASP Python class name - - - - - ASP Python function or method name - - - - - ASP Python operator - - - - - ASP Python identifier - - - - - PHP default - - - - - PHP double-quoted string - - - - - PHP single-quoted string - - - - - PHP keyword - - - - - PHP number - - - - - PHP variable - + Paste + Вставити - - PHP comment - + Cancel + Скасувати + + + QsciLexerCPP - - PHP line comment - + Default + За замовчуванням - - PHP double-quoted variable - + Keyword + Ключове слово - - PHP operator - + Identifier + Ідентифікатор QsciLexerJSON - Default - За замовчуванням - - - - Number - + За замовчуванням - String - Рядок - - - - Unclosed string - - - - - Property - - - - - Escape sequence - - - - - Line comment - - - - - Block comment - - - - - Operator - - - - - IRI - - - - - JSON-LD compact IRI - - - - - JSON keyword - - - - - JSON-LD keyword - - - - - Parsing error - - - - - QsciLexerJavaScript - - - Regular expression - + Рядок QsciLexerPython - Default - За замовчуванням + За замовчуванням - Comment - Коментар - - - - Number - - - - - Double-quoted string - - - - - Single-quoted string - + Коментар - Keyword - Ключове слово - - - - Triple single-quoted string - - - - - Triple double-quoted string - - - - - Class name - - - - - Function or method name - + Ключове слово - - Operator - - - - Identifier - Ідентифікатор - - - - Comment block - - - - - Unclosed string - - - - - Highlighted identifier - - - - - Decorator - - - - - Double-quoted f-string - - - - - Single-quoted f-string - - - - - Triple single-quoted f-string - - - - - Triple double-quoted f-string - + Ідентифікатор QsciLexerSQL - Default - За замовчуванням + За замовчуванням - Comment - Коментар - - - - Comment line - - - - - JavaDoc style comment - - - - - Number - + Коментар - Keyword - Ключове слово - - - - Double-quoted string - - - - - Single-quoted string - - - - - SQL*Plus keyword - - - - - SQL*Plus prompt - + Ключове слово - - Operator - - - - Identifier - Ідентифікатор - - - - SQL*Plus comment - - - - - # comment line - - - - - JavaDoc keyword - - - - - JavaDoc keyword error - - - - - User defined 1 - - - - - User defined 2 - - - - - User defined 3 - - - - - User defined 4 - - - - - Quoted identifier - - - - - Quoted operator - + Ідентифікатор QsciScintilla - - &Undo - - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - Delete - - - - Select All - Обрати все + Обрати все @@ -9365,24 +7788,6 @@ Leave the field empty for using the database encoding. - - UndoStack - - - Inserting %1 bytes - - - - - Delete %1 chars - - - - - Overwrite %1 chars - - - VacuumDialog diff --git a/src/translations/sqlb_zh.ts b/src/translations/sqlb_zh.ts index ec7f92e82..a913c66f6 100644 --- a/src/translations/sqlb_zh.ts +++ b/src/translations/sqlb_zh.ts @@ -5771,1660 +5771,94 @@ Please check again. QsciCommand - - Move down one line - - - - - Extend selection down one line - - - - - Extend rectangular selection down one line - - - - - Scroll view down one line - - - - - Move up one line - - - - - Extend selection up one line - - - - - Extend rectangular selection up one line - - - - - Scroll view up one line - - - - - Scroll to start of document - - - - - Scroll to end of document - - - - - Scroll vertically to centre current line - - - - - Move down one paragraph - - - - - Extend selection down one paragraph - - - - - Move up one paragraph - - - - - Extend selection up one paragraph - - - - - Move left one character - - - - - Extend selection left one character - - - - - Extend rectangular selection left one character - - - - - Move right one character - - - - - Extend selection right one character - - - - - Extend rectangular selection right one character - - - - - Move left one word - - - - - Extend selection left one word - - - - - Move right one word - - - - - Extend selection right one word - - - - - Move to end of previous word - - - - - Extend selection to end of previous word - - - - - Move to end of next word - - - - - Extend selection to end of next word - - - - - Move left one word part - - - - - Extend selection left one word part - - - - - Move right one word part - - - - - Extend selection right one word part - - - - - Move to start of document line - - - - - Extend selection to start of document line - - - - - Extend rectangular selection to start of document line - - - - - Move to start of display line - - - - - Extend selection to start of display line - - - - - Move to start of display or document line - - - - - Extend selection to start of display or document line - - - - - Move to first visible character in document line - - - - - Extend selection to first visible character in document line - - - - - Extend rectangular selection to first visible character in document line - - - - - Move to first visible character of display in document line - - - - - Extend selection to first visible character in display or document line - - - - - Move to end of document line - - - - - Extend selection to end of document line - - - - - Extend rectangular selection to end of document line - - - - - Move to end of display line - - - - - Extend selection to end of display line - - - - - Move to end of display or document line - - - - - Extend selection to end of display or document line - - - - - Move to start of document - - - - - Extend selection to start of document - - - - - Move to end of document - - - - - Extend selection to end of document - - - - - Move up one page - - - - - Extend selection up one page - - - - - Extend rectangular selection up one page - - - - - Move down one page - - - - - Extend selection down one page - - - - - Extend rectangular selection down one page - - - - - Stuttered move up one page - - - - - Stuttered extend selection up one page - - - - - Stuttered move down one page - - - - - Stuttered extend selection down one page - - - - - Delete current character - - - - - Delete previous character - - - - - Delete previous character if not at start of line - - - - - Delete word to left - - - - - Delete word to right - - - - - Delete right to end of next word - - - - - Delete line to left - - - - - Delete line to right - - - - - Delete current line - - - - - Cut current line - - - - - Copy current line - - - - - Transpose current and previous lines - - - - - Duplicate the current line - - - - - Select all - - - - - Move selected lines up one line - - - - - Move selected lines down one line - - - - - Duplicate selection - - - - - Convert selection to lower case - - - - - Convert selection to upper case - - - - - Cut selection - - - - - Copy selection - - - - - Paste - 粘贴 - - - - Toggle insert/overtype - - - - - Insert newline - - - - - Formfeed - - - - - Indent one level - - - - - De-indent one level - - - - - Cancel - 取消 - - - - Undo last command - - - - - Redo last command - - - - - Zoom in - - - - - Zoom out - - - - - QsciLexerCPP - - - Default - 默认 - - - - Inactive default - - - - - C comment - - - - - Inactive C comment - - - - - C++ comment - - - - - Inactive C++ comment - - - - - JavaDoc style C comment - - - - - Inactive JavaDoc style C comment - - - - - Number - - - - - Inactive number - - - - - Keyword - 关键字 - - - - Inactive keyword - - - - - Double-quoted string - - - - - Inactive double-quoted string - - - - - Single-quoted string - - - - - Inactive single-quoted string - - - - - IDL UUID - - - - - Inactive IDL UUID - - - - - Pre-processor block - - - - - Inactive pre-processor block - - - - - Operator - - - - - Inactive operator - - - - - Identifier - 识别符 - - - - Inactive identifier - - - - - Unclosed string - - - - - Inactive unclosed string - - - - - C# verbatim string - - - - - Inactive C# verbatim string - - - - - JavaScript regular expression - - - - - Inactive JavaScript regular expression - - - - - JavaDoc style C++ comment - - - - - Inactive JavaDoc style C++ comment - - - - - Secondary keywords and identifiers - - - - - Inactive secondary keywords and identifiers - - - - - JavaDoc keyword - - - - - Inactive JavaDoc keyword - - - - - JavaDoc keyword error - - - - - Inactive JavaDoc keyword error - - - - - Global classes and typedefs - - - - - Inactive global classes and typedefs - - - - - C++ raw string - - - - - Inactive C++ raw string - - - - - Vala triple-quoted verbatim string - - - - - Inactive Vala triple-quoted verbatim string - - - - - Pike hash-quoted string - - - - - Inactive Pike hash-quoted string - - - - - Pre-processor C comment - - - - - Inactive pre-processor C comment - - - - - JavaDoc style pre-processor comment - - - - - Inactive JavaDoc style pre-processor comment - - - - - User-defined literal - - - - - Inactive user-defined literal - - - - - Task marker - - - - - Inactive task marker - - - - - Escape sequence - - - - - Inactive escape sequence - - - - - QsciLexerHTML - - - HTML default - - - - - Tag - - - - - Unknown tag - - - - - Attribute - - - - - Unknown attribute - - - - - HTML number - - - - - HTML double-quoted string - - - - - HTML single-quoted string - - - - - Other text in a tag - - - - - HTML comment - - - - - Entity - - - - - End of a tag - - - - - Start of an XML fragment - - - - - End of an XML fragment - - - - - Script tag - - - - - Start of an ASP fragment with @ - - - - - Start of an ASP fragment - - - - - CDATA - - - - - Start of a PHP fragment - - - - - Unquoted HTML value - - - - - ASP X-Code comment - - - - - SGML default - - - - - SGML command - - - - - First parameter of an SGML command - - - - - SGML double-quoted string - - - - - SGML single-quoted string - - - - - SGML error - - - - - SGML special entity - - - - - SGML comment - - - - - First parameter comment of an SGML command - - - - - SGML block default - - - - - Start of a JavaScript fragment - - - - - JavaScript default - - - - - JavaScript comment - - - - - JavaScript line comment - - - - - JavaDoc style JavaScript comment - - - - - JavaScript number - - - - - JavaScript word - - - - - JavaScript keyword - - - - - JavaScript double-quoted string - - - - - JavaScript single-quoted string - - - - - JavaScript symbol - - - - - JavaScript unclosed string - - - - - JavaScript regular expression - - - - - Start of an ASP JavaScript fragment - - - - - ASP JavaScript default - - - - - ASP JavaScript comment - - - - - ASP JavaScript line comment - - - - - JavaDoc style ASP JavaScript comment - - - - - ASP JavaScript number - - - - - ASP JavaScript word - - - - - ASP JavaScript keyword - - - - - ASP JavaScript double-quoted string - - - - - ASP JavaScript single-quoted string - - - - - ASP JavaScript symbol - - - - - ASP JavaScript unclosed string - - - - - ASP JavaScript regular expression - - - - - Start of a VBScript fragment - - - - - VBScript default - - - - - VBScript comment - - - - - VBScript number - - - - - VBScript keyword - - - - - VBScript string - - - - - VBScript identifier - - - - - VBScript unclosed string - - - - - Start of an ASP VBScript fragment - - - - - ASP VBScript default - - - - - ASP VBScript comment - - - - - ASP VBScript number - - - - - ASP VBScript keyword - - - - - ASP VBScript string - - - - - ASP VBScript identifier - - - - - ASP VBScript unclosed string - - - - - Start of a Python fragment - - - - - Python default - - - - - Python comment - - - - - Python number - - - - - Python double-quoted string - - - - - Python single-quoted string - - - - - Python keyword - - - - - Python triple double-quoted string - - - - - Python triple single-quoted string - - - - - Python class name - - - - - Python function or method name - - - - - Python operator - - - - - Python identifier - - - - - Start of an ASP Python fragment - - - - - ASP Python default - - - - - ASP Python comment - - - - - ASP Python number - - - - - ASP Python double-quoted string - - - - - ASP Python single-quoted string - - - - - ASP Python keyword - - - - - ASP Python triple double-quoted string - - - - - ASP Python triple single-quoted string - - - - - ASP Python class name - - - - - ASP Python function or method name - - - - - ASP Python operator - - - - - ASP Python identifier - - - - - PHP default - - - - - PHP double-quoted string - - - - - PHP single-quoted string - - - - - PHP keyword - - - - - PHP number - - - - - PHP variable - + Paste + 粘贴 - - PHP comment - + Cancel + 取消 + + + QsciLexerCPP - - PHP line comment - + Default + 默认 - - PHP double-quoted variable - + Keyword + 关键字 - - PHP operator - + Identifier + 识别符 QsciLexerJSON - Default - 默认 + 默认 - - Number - - - - String - 字符串 - - - - Unclosed string - - - - - Property - - - - - Escape sequence - - - - - Line comment - - - - - Block comment - - - - - Operator - - - - - IRI - - - - - JSON-LD compact IRI - - - - - JSON keyword - - - - - JSON-LD keyword - - - - - Parsing error - + 字符串 QsciLexerJavaScript - Regular expression - 正则表达式 + 正则表达式 QsciLexerPython - Default - 默认 + 默认 - Comment - 注释 + 注释 - - Number - - - - - Double-quoted string - - - - - Single-quoted string - - - - Keyword - 关键字 - - - - Triple single-quoted string - - - - - Triple double-quoted string - - - - - Class name - - - - - Function or method name - - - - - Operator - + 关键字 - Identifier - 识别符 - - - - Comment block - - - - - Unclosed string - - - - - Highlighted identifier - - - - - Decorator - - - - - Double-quoted f-string - - - - - Single-quoted f-string - - - - - Triple single-quoted f-string - - - - - Triple double-quoted f-string - + 识别符 QsciLexerSQL - Default - 默认 + 默认 - Comment - 注释 + 注释 - - Comment line - - - - - JavaDoc style comment - - - - - Number - - - - Keyword - 关键字 - - - - Double-quoted string - - - - - Single-quoted string - - - - - SQL*Plus keyword - - - - - SQL*Plus prompt - - - - - Operator - + 关键字 - Identifier - 识别符 - - - - SQL*Plus comment - - - - - # comment line - - - - - JavaDoc keyword - - - - - JavaDoc keyword error - - - - - User defined 1 - - - - - User defined 2 - - - - - User defined 3 - - - - - User defined 4 - - - - - Quoted identifier - - - - - Quoted operator - + 识别符 QsciScintilla - &Undo - 撤销(&U) - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - Delete - + 撤销(&U) - Select All - 全选 + 全选 @@ -9423,24 +7857,6 @@ Leave the field empty for using the database encoding. 设定数据浏览器的新名称。被“&&”标记的字符可作为键盘快捷键的字符。 - - UndoStack - - - Inserting %1 bytes - - - - - Delete %1 chars - - - - - Overwrite %1 chars - - - VacuumDialog diff --git a/src/translations/sqlb_zh_TW.ts b/src/translations/sqlb_zh_TW.ts index 9b65e5d7b..b1eb42bc9 100644 --- a/src/translations/sqlb_zh_TW.ts +++ b/src/translations/sqlb_zh_TW.ts @@ -5774,1660 +5774,90 @@ Please check again. QsciCommand - - Move down one line - - - - - Extend selection down one line - - - - - Extend rectangular selection down one line - - - - - Scroll view down one line - - - - - Move up one line - - - - - Extend selection up one line - - - - - Extend rectangular selection up one line - - - - - Scroll view up one line - - - - - Scroll to start of document - - - - - Scroll to end of document - - - - - Scroll vertically to centre current line - - - - - Move down one paragraph - - - - - Extend selection down one paragraph - - - - - Move up one paragraph - - - - - Extend selection up one paragraph - - - - - Move left one character - - - - - Extend selection left one character - - - - - Extend rectangular selection left one character - - - - - Move right one character - - - - - Extend selection right one character - - - - - Extend rectangular selection right one character - - - - - Move left one word - - - - - Extend selection left one word - - - - - Move right one word - - - - - Extend selection right one word - - - - - Move to end of previous word - - - - - Extend selection to end of previous word - - - - - Move to end of next word - - - - - Extend selection to end of next word - - - - - Move left one word part - - - - - Extend selection left one word part - - - - - Move right one word part - - - - - Extend selection right one word part - - - - - Move to start of document line - - - - - Extend selection to start of document line - - - - - Extend rectangular selection to start of document line - - - - - Move to start of display line - - - - - Extend selection to start of display line - - - - - Move to start of display or document line - - - - - Extend selection to start of display or document line - - - - - Move to first visible character in document line - - - - - Extend selection to first visible character in document line - - - - - Extend rectangular selection to first visible character in document line - - - - - Move to first visible character of display in document line - - - - - Extend selection to first visible character in display or document line - - - - - Move to end of document line - - - - - Extend selection to end of document line - - - - - Extend rectangular selection to end of document line - - - - - Move to end of display line - - - - - Extend selection to end of display line - - - - - Move to end of display or document line - - - - - Extend selection to end of display or document line - - - - - Move to start of document - - - - - Extend selection to start of document - - - - - Move to end of document - - - - - Extend selection to end of document - - - - - Move up one page - - - - - Extend selection up one page - - - - - Extend rectangular selection up one page - - - - - Move down one page - - - - - Extend selection down one page - - - - - Extend rectangular selection down one page - - - - - Stuttered move up one page - - - - - Stuttered extend selection up one page - - - - - Stuttered move down one page - - - - - Stuttered extend selection down one page - - - - - Delete current character - - - - - Delete previous character - - - - - Delete previous character if not at start of line - - - - - Delete word to left - - - - - Delete word to right - - - - - Delete right to end of next word - - - - - Delete line to left - - - - - Delete line to right - - - - - Delete current line - - - - - Cut current line - - - - - Copy current line - - - - - Transpose current and previous lines - - - - - Duplicate the current line - - - - - Select all - - - - - Move selected lines up one line - - - - - Move selected lines down one line - - - - - Duplicate selection - - - - - Convert selection to lower case - - - - - Convert selection to upper case - - - - - Cut selection - - - - - Copy selection - - - - - Paste - 貼上 - - - - Toggle insert/overtype - - - - - Insert newline - - - - - Formfeed - - - - - Indent one level - - - - - De-indent one level - - - - - Cancel - 取消 - - - - Undo last command - - - - - Redo last command - - - - - Zoom in - - - - - Zoom out - - - - - QsciLexerCPP - - - Default - 預設 - - - - Inactive default - - - - - C comment - - - - - Inactive C comment - - - - - C++ comment - - - - - Inactive C++ comment - - - - - JavaDoc style C comment - - - - - Inactive JavaDoc style C comment - - - - - Number - - - - - Inactive number - - - - - Keyword - 關鍵字 - - - - Inactive keyword - - - - - Double-quoted string - - - - - Inactive double-quoted string - - - - - Single-quoted string - - - - - Inactive single-quoted string - - - - - IDL UUID - - - - - Inactive IDL UUID - - - - - Pre-processor block - - - - - Inactive pre-processor block - - - - - Operator - - - - - Inactive operator - - - - - Identifier - 識別符號 - - - - Inactive identifier - - - - - Unclosed string - - - - - Inactive unclosed string - - - - - C# verbatim string - - - - - Inactive C# verbatim string - - - - - JavaScript regular expression - - - - - Inactive JavaScript regular expression - - - - - JavaDoc style C++ comment - - - - - Inactive JavaDoc style C++ comment - - - - - Secondary keywords and identifiers - - - - - Inactive secondary keywords and identifiers - - - - - JavaDoc keyword - - - - - Inactive JavaDoc keyword - - - - - JavaDoc keyword error - - - - - Inactive JavaDoc keyword error - - - - - Global classes and typedefs - - - - - Inactive global classes and typedefs - - - - - C++ raw string - - - - - Inactive C++ raw string - - - - - Vala triple-quoted verbatim string - - - - - Inactive Vala triple-quoted verbatim string - - - - - Pike hash-quoted string - - - - - Inactive Pike hash-quoted string - - - - - Pre-processor C comment - - - - - Inactive pre-processor C comment - - - - - JavaDoc style pre-processor comment - - - - - Inactive JavaDoc style pre-processor comment - - - - - User-defined literal - - - - - Inactive user-defined literal - - - - - Task marker - - - - - Inactive task marker - - - - - Escape sequence - - - - - Inactive escape sequence - - - - - QsciLexerHTML - - - HTML default - - - - - Tag - - - - - Unknown tag - - - - - Attribute - - - - - Unknown attribute - - - - - HTML number - - - - - HTML double-quoted string - - - - - HTML single-quoted string - - - - - Other text in a tag - - - - - HTML comment - - - - - Entity - - - - - End of a tag - - - - - Start of an XML fragment - - - - - End of an XML fragment - - - - - Script tag - - - - - Start of an ASP fragment with @ - - - - - Start of an ASP fragment - - - - - CDATA - - - - - Start of a PHP fragment - - - - - Unquoted HTML value - - - - - ASP X-Code comment - - - - - SGML default - - - - - SGML command - - - - - First parameter of an SGML command - - - - - SGML double-quoted string - - - - - SGML single-quoted string - - - - - SGML error - - - - - SGML special entity - - - - - SGML comment - - - - - First parameter comment of an SGML command - - - - - SGML block default - - - - - Start of a JavaScript fragment - - - - - JavaScript default - - - - - JavaScript comment - - - - - JavaScript line comment - - - - - JavaDoc style JavaScript comment - - - - - JavaScript number - - - - - JavaScript word - - - - - JavaScript keyword - - - - - JavaScript double-quoted string - - - - - JavaScript single-quoted string - - - - - JavaScript symbol - - - - - JavaScript unclosed string - - - - - JavaScript regular expression - - - - - Start of an ASP JavaScript fragment - - - - - ASP JavaScript default - - - - - ASP JavaScript comment - - - - - ASP JavaScript line comment - - - - - JavaDoc style ASP JavaScript comment - - - - - ASP JavaScript number - - - - - ASP JavaScript word - - - - - ASP JavaScript keyword - - - - - ASP JavaScript double-quoted string - - - - - ASP JavaScript single-quoted string - - - - - ASP JavaScript symbol - - - - - ASP JavaScript unclosed string - - - - - ASP JavaScript regular expression - - - - - Start of a VBScript fragment - - - - - VBScript default - - - - - VBScript comment - - - - - VBScript number - - - - - VBScript keyword - - - - - VBScript string - - - - - VBScript identifier - - - - - VBScript unclosed string - - - - - Start of an ASP VBScript fragment - - - - - ASP VBScript default - - - - - ASP VBScript comment - - - - - ASP VBScript number - - - - - ASP VBScript keyword - - - - - ASP VBScript string - - - - - ASP VBScript identifier - - - - - ASP VBScript unclosed string - - - - - Start of a Python fragment - - - - - Python default - - - - - Python comment - - - - - Python number - - - - - Python double-quoted string - - - - - Python single-quoted string - - - - - Python keyword - - - - - Python triple double-quoted string - - - - - Python triple single-quoted string - - - - - Python class name - - - - - Python function or method name - - - - - Python operator - - - - - Python identifier - - - - - Start of an ASP Python fragment - - - - - ASP Python default - - - - - ASP Python comment - - - - - ASP Python number - - - - - ASP Python double-quoted string - - - - - ASP Python single-quoted string - - - - - ASP Python keyword - - - - - ASP Python triple double-quoted string - - - - - ASP Python triple single-quoted string - - - - - ASP Python class name - - - - - ASP Python function or method name - - - - - ASP Python operator - - - - - ASP Python identifier - - - - - PHP default - - - - - PHP double-quoted string - - - - - PHP single-quoted string - - - - - PHP keyword - - - - - PHP number - - - - - PHP variable - + Paste + 貼上 - - PHP comment - + Cancel + 取消 + + + QsciLexerCPP - - PHP line comment - + Default + 預設 - - PHP double-quoted variable - + Keyword + 關鍵字 - - PHP operator - + Identifier + 識別符號 QsciLexerJSON - Default - 預設 + 預設 - - Number - - - - String - 字串 - - - - Unclosed string - - - - - Property - - - - - Escape sequence - - - - - Line comment - - - - - Block comment - - - - - Operator - - - - - IRI - - - - - JSON-LD compact IRI - - - - - JSON keyword - - - - - JSON-LD keyword - - - - - Parsing error - + 字串 QsciLexerJavaScript - Regular expression - 正規表達式 + 正規表達式 QsciLexerPython - Default - 預設 + 預設 - Comment - 注釋 - - - - Number - - - - - Double-quoted string - - - - - Single-quoted string - + 注釋 - Keyword - 關鍵字 - - - - Triple single-quoted string - - - - - Triple double-quoted string - - - - - Class name - - - - - Function or method name - - - - - Operator - + 關鍵字 - Identifier - 識別符號 - - - - Comment block - - - - - Unclosed string - - - - - Highlighted identifier - - - - - Decorator - - - - - Double-quoted f-string - - - - - Single-quoted f-string - - - - - Triple single-quoted f-string - - - - - Triple double-quoted f-string - + 識別符號 QsciLexerSQL - Default - 預設 + 預設 - Comment - 注釋 - - - - Comment line - - - - - JavaDoc style comment - - - - - Number - + 注釋 - Keyword - 關鍵字 - - - - Double-quoted string - - - - - Single-quoted string - - - - - SQL*Plus keyword - - - - - SQL*Plus prompt - - - - - Operator - + 關鍵字 - Identifier - 識別符號 - - - - SQL*Plus comment - - - - - # comment line - - - - - JavaDoc keyword - - - - - JavaDoc keyword error - - - - - User defined 1 - - - - - User defined 2 - - - - - User defined 3 - - - - - User defined 4 - - - - - Quoted identifier - - - - - Quoted operator - + 識別符號 QsciScintilla - &Undo - &復原 - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - Delete - - - - - Select All - + &復原 @@ -9424,24 +7854,6 @@ Leave the field empty for using the database encoding. 為資料瀏覽器設定新名稱。使用 '&&' 字元以允許使用後續字元作為鍵盤快捷鍵。 - - UndoStack - - - Inserting %1 bytes - - - - - Delete %1 chars - - - - - Overwrite %1 chars - - - VacuumDialog From 6a160f61124d24e7dcdc0d0c966f303760edb61c Mon Sep 17 00:00:00 2001 From: mgrojo Date: Mon, 10 Jun 2024 23:13:48 +0200 Subject: [PATCH 04/67] Update Spanish translation for v3.13.0-rc2 See issue #3452. --- src/translations/sqlb_es_ES.ts | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/translations/sqlb_es_ES.ts b/src/translations/sqlb_es_ES.ts index e436ffaec..44add5d6c 100644 --- a/src/translations/sqlb_es_ES.ts +++ b/src/translations/sqlb_es_ES.ts @@ -16,7 +16,7 @@ <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> - + <html><head/><body><p><em>DB Browser for SQLite</em> es una herramienta visual gratuita y de código abierto que se utiliza para crear, diseñar y editar archivos de bases de datos SQLite.</p><p>Tiene licencia doble bajo la Licencia Pública de Mozilla versión 2, así como la Licencia Pública General de GNU versión 3 o posterior. Puede modificarlo o redistribuirlo bajo las condiciones de estas licencias.</p><p>Vea <a href="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> y <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> para los detalles.</p><p>Para obtener más información sobre este programa, visite nuestra página en: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">Esta aplicación usa el Qt Toolkit GPL/LGPL de </span><a href="http://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>Vea </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> para los detalles y los términos de licencia.</span></p><p><span style=" font-size:8pt;">Utilizamos la biblioteca nalgeon/sqlen para el soporte de extensiones SQLite.<br/>Esta biblioteca se distribuye bajo la licencia MIT, vea lo siguiente para más información:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">También utiliza el conjunto de iconos SVG de Michael Buckley bajo licencia Creative Commons Attribution Share Alike 4.0.<br/>Vea </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> para los detalles.</span></p></body></html> @@ -485,12 +485,12 @@ Si se modificaron cualquiera de los otros ajustes para este archivo de base de d WebKit / Chromium epoch to date - + WebKit / Chromium epoch a fecha WebKit / Chromium epoch to local time - + WebKit / Chromium epoch a hora local @@ -878,7 +878,7 @@ Mensaje de la base de datos: Error loading built-in extension: %1 - + Error cargando extensión incorporada: %1 @@ -1452,7 +1452,7 @@ Do you want to apply the edited data to row=%1, column=%2? Make this a 'WITHOUT ROWID' table. Setting this flag requires specifying a PRIMARY KEY (which can be of any type, and can be composite), and forbids the AUTOINCREMENT flag. - + Establecer la propiedad «WITHOUT ROWID» a la tabla. Establecer esta opción requiere especificar una clave primaria (que puede ser de cualquier tipo y puede ser compuesta), y prohibe el uso de la propiedad AUTOINCREMENT. @@ -3926,7 +3926,7 @@ Si responde no se intentarán importar los datos del archivo SQL en la base de d Automatically load the last opened DB file at startup - + Cargar automáticamente al inicio el último archivo abierto @@ -4032,7 +4032,7 @@ Si responde no se intentarán importar los datos del archivo SQL en la base de d Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. - + 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. @@ -5122,7 +5122,7 @@ Se puede poner a 0 para desactivar el autocompletado. Select built-in extensions to load for every database: - + Seleccione extensiones incorporadas a cargar para cualquier base de datos: @@ -5484,7 +5484,7 @@ Se puede poner a 0 para desactivar el autocompletado. Select extensions to load for every database: - Seleccione extensiones a cargar para cada base de datos: + Seleccione extensiones a cargar para cualquier base de datos: @@ -6499,12 +6499,12 @@ Are you sure you want to proceed? Ctrl+PgUp - + Ctrl+PgDown - + From a3a3a1fb736de1fa83e85712443c2cfd8b990112 Mon Sep 17 00:00:00 2001 From: FriedrichFroebel Date: Wed, 12 Jun 2024 02:29:34 +0200 Subject: [PATCH 05/67] Update German translation for latest v3.13.x changes (#3657) --- src/translations/sqlb_de.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/translations/sqlb_de.ts b/src/translations/sqlb_de.ts index 22a12c4ba..8e90423b5 100644 --- a/src/translations/sqlb_de.ts +++ b/src/translations/sqlb_de.ts @@ -16,7 +16,7 @@ <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> - + <html><head/><body><p>DB-Browser für SQLite ist eine freie Open-Source-Anwendung mit GUI zum Erstellen, Entwerfen und Bearbeiten von SQLite-Datenbanken.</p><p>Die Anwendung ist sowohl unter der Mozilla Public License Version 2 als auch der GNU General Public License Version 3 or later verfügbar. Modifikationen oder Weitergabe sind unter Beachtung der Bedingungen dieser Lizenzen möglich.</p><p>Siehe <a href="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> und <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> für Details.</p><p>Weitere Informationen über diese Anwendung gibt es auf unserer Webseite: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">Diese Software verwendet das Qt-Toolkit unter der GPL/LGPL Qt Toolkit, welches unter </span><a href="http://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a> verfügbar ist. <span style=" font-size:small;"><br/>Zugehörige Lizenzbedingungen und Informationen gibt es unter </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"></span></p><p><span style=" font-size:8pt;">Wir verwenden die nalgeon/sqlean-Bibliothek für die Unterstützung von SQLite-Erweiterungen.<br/>Diese Bibliothek ist unter der MIT license verfügbar; mehr Informationen gibt es unter:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">Zudem wird das Pastel SVG Iconset von Michael Buckley verwendet, das unter der Creative Commons Attribution Share Alike 4.0 Lizenz steht.<br/>Siehe </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> für weitere Details.</span></p></body></html> @@ -480,12 +480,12 @@ Wenn weitere Einstellungen für diese Datenbankdatei vorgenommen worden sind, m WebKit / Chromium epoch to date - + WebKit-/Chromium-Epoche zu Datum WebKit / Chromium epoch to local time - + WebKit-/Chromium-Epoche zu lokaler Zeit @@ -873,7 +873,7 @@ Meldung von Datenbank: Error loading built-in extension: %1 - + Fehler beim Laden der eingebauten Erweiterung: %1 @@ -1446,7 +1446,7 @@ Sollen die bearbeiteten Daten auf Zeile=%1, Spalte=%2 angewendet werden? Make this a 'WITHOUT ROWID' table. Setting this flag requires specifying a PRIMARY KEY (which can be of any type, and can be composite), and forbids the AUTOINCREMENT flag. - + Diese Tabelle zu "WITHOUT ROWID" umwandeln. Das Setzen dieses Flags erfordert die Angabe eines Primärschlüssels (welcher jeglichen Typ haben und auch zusammengesetzt sein darf), schließt aber das AUTOINCREMENT-Flag aus. @@ -4043,7 +4043,7 @@ Sind Sie sicher? Automatically load the last opened DB file at startup - + Beim Starten automatisch die zuletzt geöffnete Datenbank öffnen @@ -5377,7 +5377,7 @@ Kann auf 0 gesetzt werden, um die Vervollständigung zu deaktivieren. Select built-in extensions to load for every database: - + Bei jeder Datenbank zu ladende eingebaute Erweiterungen auswählen: @@ -6485,12 +6485,12 @@ Soll wirklich fortgefahren werden? Ctrl+PgUp - + Ctrl+PgDown - + From 4fb4581182e00a87be687da70a0487d0d6458674 Mon Sep 17 00:00:00 2001 From: SeongTae Jeong Date: Wed, 12 Jun 2024 09:49:12 +0900 Subject: [PATCH 06/67] Update Korean translation for latest v3.13.x changes --- src/translations/sqlb_ko_KR.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/translations/sqlb_ko_KR.ts b/src/translations/sqlb_ko_KR.ts index e641dbe83..5ae915506 100644 --- a/src/translations/sqlb_ko_KR.ts +++ b/src/translations/sqlb_ko_KR.ts @@ -17,7 +17,7 @@ <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> - + <html><head/><body><p>DB Browser for SQLite는 데이터베이스 파일을 생성, 디자인 및 편집하는 데 사용되는 오픈 소스 프리웨어 시각 도구입니다.</p><p>Mozilla Public License 버전 2와 GNU General Public License 버전 3 이상에 따라 이중 라이선스가 적용됩니다. 이러한 라이선스 조건에 따라 수정하거나 재배포할 수 있습니다.</p><p>자세한 사항은 <a href="https://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>이 프로그램에 대한 자세한 내용은 웹사이트에서 확인하세요: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">이 소프트웨어는 다음의 GPL/LGPL Qt 툴킷을 사용합니다.</span><a href="http://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;"> https://qt-project.org/</span></a><span style=" font-size:small;"><br/>자세한 라이센스 약관 및 정보는 </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;">를 확인하세요.</span></p><p><span style=" font-size:8pt;">저희는 SQLite 확장 지원을 위해 nalgeon/sqlean 라이브러리를 사용합니다.<br/>이 라이브러리는 MIT 라이선스에 따라 라이선스가 부여되며, 자세한 내용은 다음을 참조하세요:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">또한 크리에이티브 커먼즈 저작자표시 동일조건변경허락 4.0 라이선스에 따라 Michael Buckley가 설정한 파스텔 SVG 아이콘을 사용합니다.<br/>자세한 사항은 </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> 을 확인하세요.</span></p></body></html> @@ -481,12 +481,12 @@ If any of the other settings were altered for this database file you need to pro WebKit / Chromium epoch to date - + WebKit / Chromium을 날짜로 WebKit / Chromium epoch to local time - + 로WebKit / Chromium 시간을 지역 시간으로 @@ -872,7 +872,7 @@ Message from database engine: Error loading built-in extension: %1 - + 내장 확장기능을 불러오는데 실패했습니다: %1 @@ -1442,7 +1442,7 @@ Do you want to apply the edited data to row=%1, column=%2? Make this a 'WITHOUT ROWID' table. Setting this flag requires specifying a PRIMARY KEY (which can be of any type, and can be composite), and forbids the AUTOINCREMENT flag. - + 이 테이블을 'WITHOUT ROWID' 테이블로 만듭니다. 이 플래그를 설정하려면 PRIMARY KEY(모든 유형이 될 수 있으며 복합형일 수 있음)를 지정해야 하며 AUTOINCREMENT 플래그는 금지됩니다. @@ -4228,7 +4228,7 @@ Are you sure? Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. - + 드롭된 파일에 적용할 작업을 선택합니다. <br/>참고: '가져오기'만 두 개 이상의 파일을 처리합니다. @@ -4305,7 +4305,7 @@ Are you sure? Automatically load the last opened DB file at startup - + 시작 시 마지막으로 연 DB 파일 자동으로 불러오기 @@ -5070,7 +5070,7 @@ Can be set to 0 for disabling completion. Select built-in extensions to load for every database: - + 모든 데이터베이스에 대해 불러 올 내장 확장기능: @@ -6462,12 +6462,12 @@ Are you sure you want to proceed? Ctrl+PgUp - + Ctrl+PgDown - + From ea4c59b001ff18108d790c8aad3d0a96c253b2e7 Mon Sep 17 00:00:00 2001 From: SeongTae Jeong Date: Fri, 14 Jun 2024 11:11:08 +0900 Subject: [PATCH 07/67] Make not running deployment steps when running CI for PR --- .github/workflows/build-macos.yml | 3 ++- .github/workflows/build-windows.yml | 18 ++++++++++++------ 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 3e4abf254..747846ed3 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -53,7 +53,8 @@ jobs: - name: Build Extension run: clang -I /opt/homebrew/opt/db4subsqlitefts@5/include -L /opt/homebrew/opt/db4subsqlitefts@5/lib -fno-common -dynamiclib src/extensions/extension-formats.c - - name: Notarization + - if: github.event_name != 'pull_request' + name: Notarization id: notarization run: chmod +x ./installer/macos/notarize.sh && ./installer/macos/notarize.sh env: diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 09c7ef170..da9ab534c 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -131,7 +131,8 @@ jobs: devenv /Build Release sqlitebrowser.sln /Project ALL_BUILD mv "Release\DB Browser for SQLite.exe" "Release\DB Browser for SQLCipher.exe" - - name: Create MSI + - if: github.event_name != 'pull_request' + name: Create MSI env: ExePath: ${{ github.workspace }} OpenSSLPath: C:\dev\OpenSSL-${{ matrix.arch }} @@ -145,7 +146,8 @@ jobs: $DATE=$(Get-Date -Format "yyyy-MM-dd") mv DB.Browser.for.SQLite-*.msi "DB.Browser.for.SQLite-v3.13.0-rc2-$ARCH.msi" - - name: Upload artifacts for code signing with SignPath + - if: github.event_name != 'pull_request' + name: Upload artifacts for code signing with SignPath id: unsigned-artifacts uses: actions/upload-artifact@v4 with: @@ -153,7 +155,8 @@ jobs: path: installer\windows\DB.Browser.for.SQLite-*.msi # Change the signing-policy-slug when you release an RC, RTM or stable release. - - name: Code signing with SignPath + - if: github.event_name != 'pull_request' + name: Code signing with SignPath uses: signpath/github-action-submit-signing-request@v0.4 with: api-token: '${{ secrets.SIGNPATH_API_TOKEN }}' @@ -164,7 +167,8 @@ jobs: signing-policy-slug: 'test-signing' wait-for-completion: true - - name: Create ZIP + - if: github.event_name != 'pull_request' + name: Create ZIP run: | $ARCH="${{ matrix.arch }}".ToLower() $DATE=$(Get-Date -Format "yyyy-MM-dd") @@ -177,14 +181,16 @@ jobs: } Compress-Archive -Path "target\DB Browser for SQLite\*" -DestinationPath $FILENAME_FORMAT - - name: Prepare artifacts + - if: github.event_name != 'pull_request' + name: Prepare artifacts run: | mkdir build-artifacts move installer\windows\DB.Browser.for.SQLite-*.msi build-artifacts\ move DB.Browser.for.SQLite-*.zip build-artifacts\ Compress-Archive -Path build-artifacts\* -DestinationPath build-artifacts-${{ matrix.arch }}.zip - - name: Upload artifacts + - if: github.event_name != 'pull_request' + name: Upload artifacts uses: actions/upload-artifact@v4 with: name: build-artifacts-${{ matrix.os }}-${{ matrix.arch }} From 6a58b7eb0a15986116dbc13e0e997621394282d9 Mon Sep 17 00:00:00 2001 From: SeongTae Jeong Date: Fri, 14 Jun 2024 11:15:28 +0900 Subject: [PATCH 08/67] Unify filename format for build artifacts --- .github/workflows/build-appimage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-appimage.yml b/.github/workflows/build-appimage.yml index 4bcfb1573..0a433ec7c 100644 --- a/.github/workflows/build-appimage.yml +++ b/.github/workflows/build-appimage.yml @@ -47,7 +47,7 @@ jobs: run: | wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage" chmod a+x linuxdeployqt-continuous-x86_64.AppImage - export VERSION=3.13.0-rc2 + export VERSION=v3.13.0-rc2 ./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -appimage - name: Rename a file From 76f82366500ac6d11132a098963dea9dd6cd41fa Mon Sep 17 00:00:00 2001 From: SeongTae Jeong Date: Fri, 14 Jun 2024 17:48:40 +0900 Subject: [PATCH 09/67] Unset 'CMAKE_OSX_DEPLOYMENT_TARGET' in CMake-level --- .github/workflows/build-macos.yml | 2 ++ CMakeLists.txt | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 747846ed3..1730937ca 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -12,6 +12,8 @@ jobs: matrix: os: [macos-14] sqlcipher: ["0", "1"] + env: + MACOSX_DEPLOYMENT_TARGET: 10.13 steps: - name: Checkout uses: actions/checkout@v4 diff --git a/CMakeLists.txt b/CMakeLists.txt index 1c2f1e8ef..028725f26 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -631,8 +631,6 @@ if(WIN32 AND MSVC) endif() if(APPLE) - set(CMAKE_OSX_DEPLOYMENT_TARGET 10.15) - set(ENV{MACOSX_DEPLOYMENT_TARGET} 10.15) set_target_properties(${PROJECT_NAME} PROPERTIES BUNDLE True OUTPUT_NAME "DB Browser for SQLite" From 56a81a8c286b6b92d11978141b818eec5aba5ff0 Mon Sep 17 00:00:00 2001 From: hrwatahiki Date: Sun, 16 Jun 2024 00:13:34 +0900 Subject: [PATCH 10/67] Japanese translation for v3.13.0 rc2 (#3663) --- src/translations/sqlb_ja.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/translations/sqlb_ja.ts b/src/translations/sqlb_ja.ts index dbbfdb394..d8ebfabe4 100644 --- a/src/translations/sqlb_ja.ts +++ b/src/translations/sqlb_ja.ts @@ -16,7 +16,7 @@ <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</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="https://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>このプログラムの更なる情報を得るには、私たちのウェブサイトを訪れてください:<a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://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;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>ライセンス条項や情報は </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> をご覧ください。</span></p><p><span style=" font-size:8pt;">このソフトウェアはSQLite拡張サポートのため、nalgeon/sqlean library を使用しています。<br/>このライブラリはMITライセンスです。更なる情報は以下をご覧ください:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">また、Michael Buckley の Pastel SVG icon set を Creative Commons Attribution Share Alike 4.0 license の元に使用しています。<br/>詳細は </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> をご覧ください。</span></p></body></html> @@ -496,12 +496,12 @@ If any of the other settings were altered for this database file you need to pro WebKit / Chromium epoch to date - + WebKit / Chromium エポックを日付に WebKit / Chromium epoch to local time - + WebKit / Chromium エポックを地方時に @@ -885,7 +885,7 @@ Restoring some of the objects associated with this table failed. This is most li Error loading built-in extension: %1 - + ビルトイン拡張の読み込みでエラー: %1 @@ -1446,7 +1446,7 @@ Do you want to apply the edited data to row=%1, column=%2? Make this a 'WITHOUT ROWID' table. Setting this flag requires specifying a PRIMARY KEY (which can be of any type, and can be composite), and forbids the AUTOINCREMENT flag. - + 「ROWIDなし」のテーブルを作成します。このフラグを設定するには主キー(任意の型、複合でもよい)の設定が必要です。そして、自動増加フラグは使用できません。 @@ -3979,7 +3979,7 @@ Reason: %1 Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. - + ドロップされたファイルに対して行う操作を選択してください。 <br/>注意: 'インポート' のみが複数ファイルを処理できます。 @@ -4269,7 +4269,7 @@ If you answer no we will attempt to import the data in the SQL file to the curre Automatically load the last opened DB file at startup - + 最後に開いたDBファイルを起動時に自動的に読み込む @@ -5363,7 +5363,7 @@ Can be set to 0 for disabling completion. Select built-in extensions to load for every database: - + すべてのデータベースで読み込むビルトイン拡張を選択 @@ -6487,12 +6487,12 @@ Are you sure you want to proceed? Ctrl+PgUp - + Ctrl+PgDown - + From 76a03dd6528c20b46ce44b030b8920cf1aa69daf Mon Sep 17 00:00:00 2001 From: mgrojo Date: Sat, 15 Jun 2024 23:28:06 +0200 Subject: [PATCH 11/67] Refresh after detaching database from the Database Structure tab This fixes the crash identified in issue #3662 --- src/MainWindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index ac5569eda..06a7588e3 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -3401,6 +3401,7 @@ void MainWindow::fileDetachTreeViewSelected(QTreeView* treeView) if (db.detach(attached_as)) { isProjectModified = true; + refresh(); } } @@ -3970,4 +3971,4 @@ void MainWindow::toggleAutoLoadLastDBFileAtStartupOption() { optionToAutoLoadLastDBFileAtStartup->isChecked() ? Settings::setValue("General", "autoLoadLastDBFileAtStartup", true) : Settings::setValue("General", "autoLoadLastDBFileAtStartup", false); -} \ No newline at end of file +} From 75687bd98b80e43ce31a38edc87c9de9ba5863f9 Mon Sep 17 00:00:00 2001 From: SeongTae Jeong Date: Sun, 16 Jun 2024 18:43:07 +0900 Subject: [PATCH 12/67] Set to use the new Homebrew formulae Fix #3654, #3659 --- .github/workflows/build-macos.yml | 6 +++-- BUILDING.md | 38 +++---------------------------- CMakeLists.txt | 6 ++--- installer/macos/notarize.sh | 14 ++++++------ 4 files changed, 17 insertions(+), 47 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 1730937ca..d440764ec 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -30,7 +30,9 @@ jobs: run: | brew update brew tap sqlitebrowser/tap - brew install db4subqt@5 db4subsqlcipher db4subsqlitefts@5 ninja + brew unlink openssl@3 + brew install sqlb-openssl@3 + brew install sqlb-qt@5 sqlb-sqlcipher sqlb-sqlite ninja npm install -g appdmg - name: Configure build @@ -53,7 +55,7 @@ jobs: run: ninja test - name: Build Extension - run: clang -I /opt/homebrew/opt/db4subsqlitefts@5/include -L /opt/homebrew/opt/db4subsqlitefts@5/lib -fno-common -dynamiclib src/extensions/extension-formats.c + run: clang -I /opt/homebrew/opt/sqlb-sqlite/include -L /opt/homebrew/opt/sqlb-sqlite/lib -fno-common -dynamiclib src/extensions/extension-formats.c - if: github.event_name != 'pull_request' name: Notarization diff --git a/BUILDING.md b/BUILDING.md index 6e14a3ef4..5d6761ae5 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -27,7 +27,6 @@ The wiki has information that is a bit more detailed or less common, but may be - [OpenSUSE](#opensuse) - [macOS](#macos) - [Build an `.app` bundle](#build-an-app-bundle) - - [Add the extension to the app bundle (Optional)](#add-the-extension-to-the-app-bundle-optional) - [Windows](#windows) - [Compiling on Windows with MSVC](#compiling-on-windows-with-msvc) - [Cross compiling for Windows](#cross-compiling-for-windows) @@ -138,11 +137,9 @@ It requires SQLite and at least Qt 5.15.9 to be installed first. These are the ```bash brew tap sqlitebrowser/tap # If you are using Apple Silicon Mac -brew install db4subqt@5 db4subsqlcipher db4subsqlitefts@5 -# If you are using Intel Mac -brew install db4sqt@5 db4ssqlcipher db4ssqlitefts@5 +brew install sqlb-qt@5 sqlb-sqlcipher sqlb-sqlite ``` -> You can don't need SQLCipher support, you can skip `db4ssqlcipher` and `db4ssqlitefts@5`. +> You can don't need SQLCipher support, you can skip `sqlb-sqlcipher`. Then it's just a matter of getting the source: @@ -163,39 +160,10 @@ mv DB\ Browser\ for\ SQLite.app /Applications > If you want to build universal binary, change the `cmake` command to
> `cmake -DcustomTap=1 -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64" ..`
-> Of course, this requires you to have an Apple Silicon Mac and an installation of formula starting with `db4sub`. +> Of course, this requires you to have an Apple Silicon Mac. An icon for "DB Browser for SQLite" should now be in your main macOS Applications list, ready to launch. -#### Add the extension to the app bundle (Optional) - -> **Note**: The following lines look a bit complicated, but are all commands that you need to run. - -```bash -/opt/homebrew/opt/db4sqtub@5/bin/macdeployqt DB\ Browser\ for\ SQLite.app -mkdir build/DB\ Browser\ for\ SQLite.app/Contents/Extensions -clang -I /opt/homebrew/opt/db4ssqliteftsub@5/include -L /opt/homebrew/opt/db4ssqliteftsub@5/lib -fno-common -dynamiclib src/extensions/extension-formats.c -o formats-arm64.dylib -arch -x86_64 clang -I /opt/homebrew/opt/db4ssqliteftsub@5/include -L /opt/homebrew/opt/db4ssqliteftsub@5/lib -fno-common -dynamiclib src/extensions/extension-formats.c -o formats-x86_64.dylib -lipo -create -output build/DB\ Browser\ for\ SQLite.app/Contents/Extensions/formats.dylib formats-arm64.dylib formats-x86_64.dylib -install_name_tool -id "@executable_path/../Extensions/formats.dylib" build/DB\ Browser\ for\ SQLite.app/Contents/Extensions/formats.dylib -ln -s formats.dylib build/DB\ Browser\ for\ SQLite.app/Contents/Extensions/formats.dylib.dylib - -clang -I /opt/homebrew/opt/db4ssqliteftsub@5/include -L /opt/homebrew/opt/db4ssqliteftsub@5/lib -fno-common -dynamiclib src/extensions/extension-functions.c -o math-arm64.dylib -arch -x86_64 clang -I /opt/homebrew/opt/db4ssqliteftsub@5/include -L /opt/homebrew/opt/db4ssqliteftsub@5/lib -fno-common -dynamiclib src/extensions/extension-functions.c -o math-x86_64.dylib -lipo -create -output build/DB\ Browser\ for\ SQLite.app/Contents/Extensions/math.dylib math-arm64.dylib math-x86_64.dylib -install_name_tool -id "@executable_path/../Extensions/math.dylib" build/DB\ Browser\ for\ SQLite.app/Contents/Extensions/math.dylib -ln -s math.dylib build/DB\ Browser\ for\ SQLite.app/Contents/Extensions/math.dylib.dylib - -curl -L -o src/extensions/fileio.c 'https://sqlite.org/src/raw?filename=ext/misc/fileio.c&ci=trunk' -curl -L -o src/extensions/test_windirent.c 'https://sqlite.org/src/raw?filename=src/test_windirent.c&ci=trunk' -curl -L -o src/extensions/test_windirent.h 'https://sqlite.org/src/raw?filename=src/test_windirent.h&ci=trunk' -clang -I /opt/homebrew/opt/db4ssqliteftsub@5/include -L /opt/homebrew/opt/db4ssqliteftsub@5/lib -fno-common -dynamiclib src/extensions/fileio.c src/extensions/test_windirent.c -o fileio-arm64.dylib -arch -x86_64 clang -I /opt/homebrew/opt/db4ssqliteftsub@5/include -L /opt/homebrew/opt/db4ssqliteftsub@5/lib -fno-common -dynamiclib src/extensions/fileio.c src/extensions/test_windirent.c -o fileio-x86_64.dylib -lipo -create -output build/DB\ Browser\ for\ SQLite.app/Contents/Extensions/fileio.dylib fileio-arm64.dylib fileio-x86_64.dylib -install_name_tool -id "@executable_path/../Extensions/fileio.dylib" build/DB\ Browser\ for\ SQLite.app/Contents/Extensions/fileio.dylib -ln -s fileio.dylib build/DB\ Browser\ for\ SQLite.app/Contents/Extensions/fileio.dylib.dylib -``` - > Also, we have a CI workflow for macOS, you can check it out [here](https://github.com/sqlitebrowser/sqlitebrowser/blob/master/.github/workflows/build-macos.yml) ### Windows diff --git a/CMakeLists.txt b/CMakeLists.txt index 028725f26..c0c4c1e0f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -123,12 +123,12 @@ if(APPLE) # For Apple Silicon Mac's and install dependencies via our Homebrew tap(sqlitebrowser/homebrew-tap) if(customTap AND EXISTS /opt/homebrew/opt/) - list(PREPEND CMAKE_PREFIX_PATH "/opt/homebrew/opt/db4subqt@5") - list(PREPEND CMAKE_PREFIX_PATH "/opt/homebrew/opt/db4subsqlitefts@5") + list(PREPEND CMAKE_PREFIX_PATH "/opt/homebrew/opt/sqlb-qt@5") + list(PREPEND CMAKE_PREFIX_PATH "/opt/homebrew/opt/sqlb-sqlite") if(sqlcipher) list(APPEND SQLCIPHER_INCLUDE_DIR "/opt/homebrew/include") - list(APPEND SQLCIPHER_LIBRARY "/opt/homebrew/opt/db4subsqlcipher/lib/libsqlcipher.0.dylib") + list(APPEND SQLCIPHER_LIBRARY "/opt/homebrew/opt/sqlb-sqlcipher/lib/libsqlcipher.0.dylib") endif() endif() endif() diff --git a/installer/macos/notarize.sh b/installer/macos/notarize.sh index a7ed3298d..bb3950639 100644 --- a/installer/macos/notarize.sh +++ b/installer/macos/notarize.sh @@ -10,7 +10,7 @@ security import $CERTIFICATE_PATH -P "$P12_PW" -A -t cert -f pkcs12 -k $KEYCHAIN security list-keychain -d user -s $KEYCHAIN_PATH # Run macdeployqt -find build -name "DB Browser for SQL*.app" -exec $(brew --prefix db4subqt@5)/bin/macdeployqt {} -sign-for-notarization=$DEV_ID \; +find build -name "DB Browser for SQL*.app" -exec $(brew --prefix sqlb-qt@5)/bin/macdeployqt {} -sign-for-notarization=$DEV_ID \; # Add the 'formats' and 'nalgeon/sqlean' extensions to the app bundle gh auth login --with-token <<< "$GH_TOKEN" @@ -23,7 +23,7 @@ for TARGET in $(find build -name "DB Browser for SQL*.app" | sed -e 's/ /_/g'); TARGET=$(echo $TARGET | sed -e 's/_/ /g') mkdir "$TARGET/Contents/Extensions" - clang -I /opt/homebrew/opt/db4subsqlitefts@5/include -L /opt/homebrew/opt/db4subsqlitefts@5/lib -fno-common -dynamiclib src/extensions/extension-formats.c -o "$TARGET/Contents/Extensions/formats.dylib" + clang -I /opt/homebrew/opt/sqlb-sqlite/include -L /opt/homebrew/opt/sqlb-sqlite/lib -fno-common -dynamiclib src/extensions/extension-formats.c -o "$TARGET/Contents/Extensions/formats.dylib" if [ -f "$TARGET/Contents/Extensions/formats.dylib" ]; then install_name_tool -id "@executable_path/../Extensions/formats.dylib" "$TARGET/Contents/Extensions/formats.dylib" ln -s formats.dylib "$TARGET/Contents/Extensions/formats.dylib.dylib" @@ -47,11 +47,11 @@ for TARGET in $(find build -name "DB Browser for SQL*.app" | sed -e 's/ /_/g'); TARGET=$(echo $TARGET | sed -e 's/_/ /g') mkdir "$TARGET/Contents/translations" for i in ar cs de en es fr it ko pl pt pt_BR ru uk zh_CN zh_TW; do - find $(brew --prefix db4subqt@5)/translations -name "qt_${i}.qm" 2> /dev/null -exec cp {} "$TARGET/Contents/translations/" \; - find $(brew --prefix db4subqt@5)/translations -name "qtbase_${i}.qm" 2> /dev/null -exec cp {} "$TARGET/Contents/translations/" \; - find $(brew --prefix db4subqt@5)/translations -name "qtmultimedia_${i}.qm" 2> /dev/null -exec cp {} "$TARGET/Contents/translations/" \; - find $(brew --prefix db4subqt@5)/translations -name "qtscript_${i}.qm" 2> /dev/null -exec cp {} "$TARGET/Contents/translations/" \; - find $(brew --prefix db4subqt@5)/translations -name "qtxmlpatterns_${i}.qm" 2> /dev/null -exec cp {} "$TARGET/Contents/translations/" \; + find $(brew --prefix sqlb-qt@5)/translations -name "qt_${i}.qm" 2> /dev/null -exec cp {} "$TARGET/Contents/translations/" \; + find $(brew --prefix sqlb-qt@5)/translations -name "qtbase_${i}.qm" 2> /dev/null -exec cp {} "$TARGET/Contents/translations/" \; + find $(brew --prefix sqlb-qt@5)/translations -name "qtmultimedia_${i}.qm" 2> /dev/null -exec cp {} "$TARGET/Contents/translations/" \; + find $(brew --prefix sqlb-qt@5)/translations -name "qtscript_${i}.qm" 2> /dev/null -exec cp {} "$TARGET/Contents/translations/" \; + find $(brew --prefix sqlb-qt@5)/translations -name "qtxmlpatterns_${i}.qm" 2> /dev/null -exec cp {} "$TARGET/Contents/translations/" \; done done From 2e52d889ea84c5b73934ab9d3dc0859f1565f6e6 Mon Sep 17 00:00:00 2001 From: SeongTae Jeong Date: Mon, 17 Jun 2024 10:02:25 +0900 Subject: [PATCH 13/67] Update the license notice included with MSI Installer for Windows --- installer/windows/license.rtf | 1417 +++++++++++++++++++++++++++------ 1 file changed, 1179 insertions(+), 238 deletions(-) diff --git a/installer/windows/license.rtf b/installer/windows/license.rtf index a8d3c168b..2601ae905 100644 --- a/installer/windows/license.rtf +++ b/installer/windows/license.rtf @@ -1,238 +1,1179 @@ -{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fnil\fcharset0 Calibri;}} -{\colortbl ;\red0\green0\blue255;} -{\*\generator Msftedit 5.41.21.2510;}\viewkind4\uc1\pard\sa200\sl276\slmult1\lang9\f0\fs20 DB Browser for SQLite is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later.\par -You can modify or redistribute it under the conditions of these licenses.\par -\pard\sa200\sl276\slmult1\qc ----------------------------------------------------------------------------------------------------\par -\b\fs22 GNU GENERAL PUBLIC LICENSE\par -\b0\fs20 Version 3, 29 June 2007\par -\pard\sa200\sl276\slmult1\par -Copyright (C) 2007 Free Software Foundation, Inc. <{\field{\*\fldinst{HYPERLINK "http://fsf.org/"}}{\fldrslt{\ul\cf1 http://fsf.org/}}}\f0\fs20 >\par -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.\par -\par -\pard\sa200\sl276\slmult1\qc\b Preamble\b0\par -\pard\fi142\sa200\sl276\slmult1\qj The GNU General Public License is a free, copyleft license for software and other kinds of works.\par -The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.\par -When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.\par -To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.\par -For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.\par -Developers that use the GNU GPL protect your rights with two steps:\par -\pard\sa200\sl276\slmult1\qj (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.\par -\pard\fi142\sa200\sl276\slmult1\qj For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.\par -Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.\par -Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.\par -The precise terms and conditions for copying, distribution and modification follow.\par -\pard\sa200\sl276\slmult1\par -\pard\sa200\sl276\slmult1\qc\b TERMS AND CONDITIONS\b0\par -\pard\sa200\sl276\slmult1 0. Definitions.\par -\pard\fi142\sa200\sl276\slmult1 "This License" refers to version 3 of the GNU General Public License.\par -\pard\fi142\sa200\sl276\slmult1\qj "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.\par -"The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations.\par -To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work.\par -A "covered work" means either the unmodified Program or a work based on the Program.\par -To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.\par -To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.\par -An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.\par -\pard\sa200\sl276\slmult1 1. Source Code.\par -\pard\fi142\sa200\sl276\slmult1\qj The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work.\par -A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.\par -The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.\par -The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.\par -The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.\par -\pard\fi142\sa200\sl276\slmult1 The Corresponding Source for a work in source code form is that same work.\par -\pard\sa200\sl276\slmult1 2. Basic Permissions.\par -\pard\fi142\sa200\sl276\slmult1\qj All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.\par -You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.\par -Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.\par -\pard\sa200\sl276\slmult1 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\par -\pard\fi142\sa200\sl276\slmult1\qj No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.\par -When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.\par -\pard\sa200\sl276\slmult1 4. Conveying Verbatim Copies.\par -\pard\fi142\sa200\sl276\slmult1\qj You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.\par -You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.\par -\pard\sa200\sl276\slmult1 5. Conveying Modified Source Versions.\par -\pard\fi142\sa200\sl276\slmult1\qj You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:\par -\pard\li284\sa200\sl276\slmult1\qj a) The work must carry prominent notices stating that you modified it, and giving a relevant date.\par -b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices".\par -c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.\par -d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.\par -\pard\fi142\sa200\sl276\slmult1\qj A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.\par -\pard\sa200\sl276\slmult1 6. Conveying Non-Source Forms.\par -\pard\fi142\sa200\sl276\slmult1\qj You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:\par -\pard\li284\sa200\sl276\slmult1\qj a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.\par -b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.\par -c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.\par -d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.\par -e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.\par -\pard\fi142\sa200\sl276\slmult1\qj A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.\par -A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.\par -"Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.\par -If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).\par -The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.\par -Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.\par -\pard\sa200\sl276\slmult1 7. Additional Terms.\par -\pard\fi142\sa200\sl276\slmult1\qj "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.\par -When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.\par -Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:\par -\pard\li284\sa200\sl276\slmult1\qj a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or\par -b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or\par -c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or\par -d) Limiting the use for publicity purposes of names of licensors or authors of the material; or\par -e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or\par -f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.\par -\pard\fi142\sa200\sl276\slmult1\qj All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.\par -If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.\par -Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.\par -\pard\sa200\sl276\slmult1 8. Termination.\par -\pard\fi142\sa200\sl276\slmult1\qj You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).\par -However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.\par -Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.\par -Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.\par -\pard\sa200\sl276\slmult1 9. Acceptance Not Required for Having Copies.\par -\pard\fi142\sa200\sl276\slmult1\qj You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.\par -\pard\sa200\sl276\slmult1 10. Automatic Licensing of Downstream Recipients.\par -\pard\fi142\sa200\sl276\slmult1\qj Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.\par -An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.\par -You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.\par -\pard\sa200\sl276\slmult1 11. Patents.\par -\pard\fi142\sa200\sl276\slmult1\qj A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version".\par -A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.\par -Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.\par -In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.\par -If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.\par -If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.\par -A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.\par -Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.\par -\pard\sa200\sl276\slmult1 12. No Surrender of Others' Freedom.\par -\pard\fi142\sa200\sl276\slmult1\qj If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.\par -\pard\sa200\sl276\slmult1 13. Use with the GNU Affero General Public License.\par -\pard\fi142\sa200\sl276\slmult1\qj Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.\par -\pard\sa200\sl276\slmult1 14. Revised Versions of this License.\par -\pard\fi142\sa200\sl276\slmult1\qj The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\par -Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.\par -If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.\par -Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.\par -\pard\sa200\sl276\slmult1 15. Disclaimer of Warranty.\par -\pard\fi142\sa200\sl276\slmult1\qj THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\par -\pard\sa200\sl276\slmult1 16. Limitation of Liability.\par -\pard\fi142\sa200\sl276\slmult1\qj IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\par -\pard\sa200\sl276\slmult1 17. Interpretation of Sections 15 and 16.\par -\pard\fi142\sa200\sl276\slmult1\qj If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.\par -\pard\sa200\sl276\slmult1\qc\b END OF TERMS AND CONDITIONS\b0\par -\pard\sa200\sl276\slmult1\par -\pard\sa200\sl276\slmult1\qc\b How to Apply These Terms to Your New Programs\par -\pard\fi142\sa200\sl276\slmult1\qj\b0 If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.\par -To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found.\par -\pard\sa200\sl276\slmult1 \par -\pard\li284\sa200\sl276\slmult1\qj Copyright (C) \par -This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.\par -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\par -You should have received a copy of the GNU General Public License along with this program. If not, see <{\field{\*\fldinst{HYPERLINK "http://www.gnu.org/licenses/"}}{\fldrslt{\ul\cf1 http://www.gnu.org/licenses/}}}\f0\fs20 >.\par -\pard\sa200\sl276\slmult1 Also add information on how to contact you by electronic and paper mail.\par -\pard\fi142\sa200\sl276\slmult1\qj If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:\par -\pard\li284\sa200\sl276\slmult1\qj Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.\par -\pard\sa200\sl276\slmult1\qj The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box".\par -\pard\fi142\sa200\sl276\slmult1\qj You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see <{\field{\*\fldinst{HYPERLINK "http://www.gnu.org/licenses/"}}{\fldrslt{\ul\cf1 http://www.gnu.org/licenses/}}}\f0\fs20 >.\par -The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <{\field{\*\fldinst{HYPERLINK "http://www.gnu.org/philosophy/why-not-lgpl.html"}}{\fldrslt{\ul\cf1 http://www.gnu.org/philosophy/why-not-lgpl.html}}}\f0\fs20 >.\par -\pard\sa200\sl276\slmult1\par -\pard\sa200\sl276\slmult1\qc ----------------------------------------------------------------------------------------------------\par -\pard\sa200\sl276\slmult1\par -\pard\sa200\sl276\slmult1\qc\b\fs22 Mozilla Public License Version 2.0\par -\pard\sa200\sl276\slmult1\b0\fs20\par -\fs22 1. Definitions\fs20\par -1.1. "Contributor"\par -\pard\fi-10\li426\sa200\sl276\slmult1\qj means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software.\par -\pard\sa200\sl276\slmult1 1.2. "Contributor Version"\par -\pard\li426\sa200\sl276\slmult1\qj means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor's Contribution.\par -\pard\sa200\sl276\slmult1 1.3. "Contribution"\par -\pard\li426\sa200\sl276\slmult1\qj means Covered Software of a particular Contributor.\par -\pard\sa200\sl276\slmult1 1.4. "Covered Software"\par -\pard\li426\sa200\sl276\slmult1\qj means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof.\par -\pard\sa200\sl276\slmult1 1.5. "Incompatible With Secondary Licenses"\par -\pard\li426\sa200\sl276\slmult1\qj means\par -(a) that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or\par -(b) that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License.\par -\pard\sa200\sl276\slmult1 1.6. "Executable Form"\par -\pard\li426\sa200\sl276\slmult1\qj means any form of the work other than Source Code Form.\par -\pard\sa200\sl276\slmult1 1.7. "Larger Work"\par -\pard\li426\sa200\sl276\slmult1\qj means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software.\par -\pard\sa200\sl276\slmult1 1.8. "License"\par -\pard\li426\sa200\sl276\slmult1\qj means this document.\par -\pard\sa200\sl276\slmult1 1.9. "Licensable"\par -\pard\li426\sa200\sl276\slmult1\qj means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License.\par -\pard\sa200\sl276\slmult1 1.10. "Modifications"\par -\pard\li426\sa200\sl276\slmult1\qj means any of the following:\par -(a) any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or\par -(b) any new file in Source Code Form that contains any Covered Software.\par -\pard\sa200\sl276\slmult1 1.11. "Patent Claims" of a Contributor\par -\pard\li426\sa200\sl276\slmult1\qj means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version.\par -\pard\sa200\sl276\slmult1 1.12. "Secondary License"\par -\pard\li426\sa200\sl276\slmult1\qj means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses.\par -\pard\sa200\sl276\slmult1 1.13. "Source Code Form"\par -\pard\li426\sa200\sl276\slmult1\qj means the form of the work preferred for making modifications.\par -\pard\sa200\sl276\slmult1 1.14. "You" (or "Your")\par -\pard\li426\sa200\sl276\slmult1\qj means an individual or a legal entity exercising rights under this License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.\par -\pard\sa200\sl276\slmult1\fs22 2. License Grants and Conditions\fs20\par -2.1. Grants\par -Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license:\par -\pard\li426\sa200\sl276\slmult1\qj (a) under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and\par -(b) under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version.\par -\pard\sa200\sl276\slmult1 2.2. Effective Date\par -\pard\sa200\sl276\slmult1\qj The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution.\par -\pard\sa200\sl276\slmult1 2.3. Limitations on Grant Scope\par -\pard\sa200\sl276\slmult1\qj The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor:\par -\pard\li426\sa200\sl276\slmult1 (a) for any code that a Contributor has removed from Covered Software; or\par -(b) for infringements caused by: (i) Your and any other third party's modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or\par -(c) under Patent Claims infringed by Covered Software in the absence of its Contributions.\par -\pard\sa200\sl276\slmult1\qj This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4).\par -\pard\sa200\sl276\slmult1 2.4. Subsequent Licenses\par -\pard\sa200\sl276\slmult1\qj No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3).\par -\pard\sa200\sl276\slmult1 2.5. Representation\par -\pard\sa200\sl276\slmult1\qj Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License.\par -\pard\sa200\sl276\slmult1 2.6. Fair Use\par -\pard\sa200\sl276\slmult1\qj This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents.\par -\pard\sa200\sl276\slmult1 2.7. Conditions\par -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1.\par -\fs22 3. Responsibilities\par -\fs20 3.1. Distribution of Source Form\par -\pard\sa200\sl276\slmult1\qj All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients' rights in the Source Code Form.\par -\pard\sa200\sl276\slmult1 3.2. Distribution of Executable Form\par -If You distribute Covered Software in Executable Form then:\par -\pard\li426\sa200\sl276\slmult1\qj (a) such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and\par -(b) You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients' rights in the Source Code Form under this License.\par -\pard\sa200\sl276\slmult1 3.3. Distribution of a Larger Work\par -\pard\sa200\sl276\slmult1\qj You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s).\par -\pard\sa200\sl276\slmult1 3.4. Notices\par -\pard\sa200\sl276\slmult1\qj You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies.\par -\pard\sa200\sl276\slmult1 3.5. Application of Additional Terms\par -\pard\sa200\sl276\slmult1\qj You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction.\par -\pard\sa200\sl276\slmult1\fs22 4. Inability to Comply Due to Statute or Regulation\par -\pard\sa200\sl276\slmult1\qj\fs20 If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it.\par -\pard\sa200\sl276\slmult1\fs22 5. Termination\fs20\par -\pard\sa200\sl276\slmult1\qj 5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice.\par -5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate.\par -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination.\par -\pard\sa200\sl276\slmult1\fs22 6. Disclaimer of Warranty\fs20\par -\pard\sa200\sl276\slmult1\qj Covered Software is provided under this License on an "as is" basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer.\par -\pard\sa200\sl276\slmult1\fs22 7. Limitation of Liability\fs20\par -\pard\sa200\sl276\slmult1\qj Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You.\par -\pard\sa200\sl276\slmult1\fs22 8. Litigation\fs20\par -\pard\sa200\sl276\slmult1\qj Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party's ability to bring cross-claims or counter-claims.\par -\pard\sa200\sl276\slmult1\fs22 9. Miscellaneous\fs20\par -\pard\sa200\sl276\slmult1\qj This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor.\par -\pard\sa200\sl276\slmult1\fs22 10. Versions of the License\par -\fs20 10.1. New Versions\par -\pard\sa200\sl276\slmult1\qj Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number.\par -\pard\sa200\sl276\slmult1 10.2. Effect of New Versions\par -\pard\sa200\sl276\slmult1\qj You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward.\par -\pard\sa200\sl276\slmult1 10.3. Modified Versions\par -\pard\sa200\sl276\slmult1\qj If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License).\par -\pard\sa200\sl276\slmult1 10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses\par -\pard\sa200\sl276\slmult1\qj If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached.\par -\pard\sa200\sl276\slmult1\fs22 Exhibit A - Source Code Form License Notice\par -\pard\li284\sa200\sl276\slmult1\qj\fs20 This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at {\field{\*\fldinst{HYPERLINK "http://mozilla.org/MPL/2.0/"}}{\fldrslt{\ul\cf1 http://mozilla.org/MPL/2.0/}}}\f0\fs20 .\par -\pard\sa200\sl276\slmult1\qj If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice.\par -\pard\sa200\sl276\slmult1 You may add additional accurate notices of copyright ownership.\par -\fs22 Exhibit B - "Incompatible With Secondary Licenses" Notice\par -\pard\li284\sa200\sl276\slmult1\qj\fs20 This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0.\par -} - \ No newline at end of file +{\rtf1\ansi\ansicpg1252\cocoartf2761 +\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fswiss\fcharset0 Arial-BoldMT;\f1\fswiss\fcharset0 ArialMT;} +{\colortbl;\red255\green255\blue255;} +{\*\expandedcolortbl;;} +\paperw11900\paperh16840\margl1440\margr1440\vieww16560\viewh8400\viewkind0 +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0 + +\f0\b\fs28 \cf0 DB Browser for SQLite is bi-licensed under the Mozilla Public License\ +Version 2, as well as the GNU General Public License Version 3 or later.\ +\ +Modification or redistribution is permitted under the conditions of these licenses.\ +\ +Check `LICENSE-GPL-3.0` for the full text of the GNU General Public License Version 3.\ +Check `LICENSE-MPL-2.0` for the full text of the Mozilla Public License Version 2.\ +Check `LICENSE-MIT` for the full text of the MIT License. and that is the license for the `nalgeon/sqlean` library.\ +Check `LICENSE-PLUGINS` for other rights regarding included third-party resources. +\f1\b0\fs24 \ +\ + +\f0\b\fs26 LICENSE-GPL-3.0 +\f1\b0\fs24 \ + GNU GENERAL PUBLIC LICENSE\ + Version 3, 29 June 2007\ +\ + Copyright (C) 2007 Free Software Foundation, Inc. \ + Everyone is permitted to copy and distribute verbatim copies\ + of this license document, but changing it is not allowed.\ +\ + Preamble\ +\ + The GNU General Public License is a free, copyleft license for\ +software and other kinds of works.\ +\ + The licenses for most software and other practical works are designed\ +to take away your freedom to share and change the works. By contrast,\ +the GNU General Public License is intended to guarantee your freedom to\ +share and change all versions of a program--to make sure it remains free\ +software for all its users. We, the Free Software Foundation, use the\ +GNU General Public License for most of our software; it applies also to\ +any other work released this way by its authors. You can apply it to\ +your programs, too.\ +\ + When we speak of free software, we are referring to freedom, not\ +price. Our General Public Licenses are designed to make sure that you\ +have the freedom to distribute copies of free software (and charge for\ +them if you wish), that you receive source code or can get it if you\ +want it, that you can change the software or use pieces of it in new\ +free programs, and that you know you can do these things.\ +\ + To protect your rights, we need to prevent others from denying you\ +these rights or asking you to surrender the rights. Therefore, you have\ +certain responsibilities if you distribute copies of the software, or if\ +you modify it: responsibilities to respect the freedom of others.\ +\ + For example, if you distribute copies of such a program, whether\ +gratis or for a fee, you must pass on to the recipients the same\ +freedoms that you received. You must make sure that they, too, receive\ +or can get the source code. And you must show them these terms so they\ +know their rights.\ +\ + Developers that use the GNU GPL protect your rights with two steps:\ +(1) assert copyright on the software, and (2) offer you this License\ +giving you legal permission to copy, distribute and/or modify it.\ +\ + For the developers' and authors' protection, the GPL clearly explains\ +that there is no warranty for this free software. For both users' and\ +authors' sake, the GPL requires that modified versions be marked as\ +changed, so that their problems will not be attributed erroneously to\ +authors of previous versions.\ +\ + Some devices are designed to deny users access to install or run\ +modified versions of the software inside them, although the manufacturer\ +can do so. This is fundamentally incompatible with the aim of\ +protecting users' freedom to change the software. The systematic\ +pattern of such abuse occurs in the area of products for individuals to\ +use, which is precisely where it is most unacceptable. Therefore, we\ +have designed this version of the GPL to prohibit the practice for those\ +products. If such problems arise substantially in other domains, we\ +stand ready to extend this provision to those domains in future versions\ +of the GPL, as needed to protect the freedom of users.\ +\ + Finally, every program is threatened constantly by software patents.\ +States should not allow patents to restrict development and use of\ +software on general-purpose computers, but in those that do, we wish to\ +avoid the special danger that patents applied to a free program could\ +make it effectively proprietary. To prevent this, the GPL assures that\ +patents cannot be used to render the program non-free.\ +\ + The precise terms and conditions for copying, distribution and\ +modification follow.\ +\ + TERMS AND CONDITIONS\ +\ + 0. Definitions.\ +\ + "This License" refers to version 3 of the GNU General Public License.\ +\ + "Copyright" also means copyright-like laws that apply to other kinds of\ +works, such as semiconductor masks.\ +\ + "The Program" refers to any copyrightable work licensed under this\ +License. Each licensee is addressed as "you". "Licensees" and\ +"recipients" may be individuals or organizations.\ +\ + To "modify" a work means to copy from or adapt all or part of the work\ +in a fashion requiring copyright permission, other than the making of an\ +exact copy. The resulting work is called a "modified version" of the\ +earlier work or a work "based on" the earlier work.\ +\ + A "covered work" means either the unmodified Program or a work based\ +on the Program.\ +\ + To "propagate" a work means to do anything with it that, without\ +permission, would make you directly or secondarily liable for\ +infringement under applicable copyright law, except executing it on a\ +computer or modifying a private copy. Propagation includes copying,\ +distribution (with or without modification), making available to the\ +public, and in some countries other activities as well.\ +\ + To "convey" a work means any kind of propagation that enables other\ +parties to make or receive copies. Mere interaction with a user through\ +a computer network, with no transfer of a copy, is not conveying.\ +\ + An interactive user interface displays "Appropriate Legal Notices"\ +to the extent that it includes a convenient and prominently visible\ +feature that (1) displays an appropriate copyright notice, and (2)\ +tells the user that there is no warranty for the work (except to the\ +extent that warranties are provided), that licensees may convey the\ +work under this License, and how to view a copy of this License. If\ +the interface presents a list of user commands or options, such as a\ +menu, a prominent item in the list meets this criterion.\ +\ + 1. Source Code.\ +\ + The "source code" for a work means the preferred form of the work\ +for making modifications to it. "Object code" means any non-source\ +form of a work.\ +\ + A "Standard Interface" means an interface that either is an official\ +standard defined by a recognized standards body, or, in the case of\ +interfaces specified for a particular programming language, one that\ +is widely used among developers working in that language.\ +\ + The "System Libraries" of an executable work include anything, other\ +than the work as a whole, that (a) is included in the normal form of\ +packaging a Major Component, but which is not part of that Major\ +Component, and (b) serves only to enable use of the work with that\ +Major Component, or to implement a Standard Interface for which an\ +implementation is available to the public in source code form. A\ +"Major Component", in this context, means a major essential component\ +(kernel, window system, and so on) of the specific operating system\ +(if any) on which the executable work runs, or a compiler used to\ +produce the work, or an object code interpreter used to run it.\ +\ + The "Corresponding Source" for a work in object code form means all\ +the source code needed to generate, install, and (for an executable\ +work) run the object code and to modify the work, including scripts to\ +control those activities. However, it does not include the work's\ +System Libraries, or general-purpose tools or generally available free\ +programs which are used unmodified in performing those activities but\ +which are not part of the work. For example, Corresponding Source\ +includes interface definition files associated with source files for\ +the work, and the source code for shared libraries and dynamically\ +linked subprograms that the work is specifically designed to require,\ +such as by intimate data communication or control flow between those\ +subprograms and other parts of the work.\ +\ + The Corresponding Source need not include anything that users\ +can regenerate automatically from other parts of the Corresponding\ +Source.\ +\ + The Corresponding Source for a work in source code form is that\ +same work.\ +\ + 2. Basic Permissions.\ +\ + All rights granted under this License are granted for the term of\ +copyright on the Program, and are irrevocable provided the stated\ +conditions are met. This License explicitly affirms your unlimited\ +permission to run the unmodified Program. The output from running a\ +covered work is covered by this License only if the output, given its\ +content, constitutes a covered work. This License acknowledges your\ +rights of fair use or other equivalent, as provided by copyright law.\ +\ + You may make, run and propagate covered works that you do not\ +convey, without conditions so long as your license otherwise remains\ +in force. You may convey covered works to others for the sole purpose\ +of having them make modifications exclusively for you, or provide you\ +with facilities for running those works, provided that you comply with\ +the terms of this License in conveying all material for which you do\ +not control copyright. Those thus making or running the covered works\ +for you must do so exclusively on your behalf, under your direction\ +and control, on terms that prohibit them from making any copies of\ +your copyrighted material outside their relationship with you.\ +\ + Conveying under any other circumstances is permitted solely under\ +the conditions stated below. Sublicensing is not allowed; section 10\ +makes it unnecessary.\ +\ + 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\ +\ + No covered work shall be deemed part of an effective technological\ +measure under any applicable law fulfilling obligations under article\ +11 of the WIPO copyright treaty adopted on 20 December 1996, or\ +similar laws prohibiting or restricting circumvention of such\ +measures.\ +\ + When you convey a covered work, you waive any legal power to forbid\ +circumvention of technological measures to the extent such circumvention\ +is effected by exercising rights under this License with respect to\ +the covered work, and you disclaim any intention to limit operation or\ +modification of the work as a means of enforcing, against the work's\ +users, your or third parties' legal rights to forbid circumvention of\ +technological measures.\ +\ + 4. Conveying Verbatim Copies.\ +\ + You may convey verbatim copies of the Program's source code as you\ +receive it, in any medium, provided that you conspicuously and\ +appropriately publish on each copy an appropriate copyright notice;\ +keep intact all notices stating that this License and any\ +non-permissive terms added in accord with section 7 apply to the code;\ +keep intact all notices of the absence of any warranty; and give all\ +recipients a copy of this License along with the Program.\ +\ + You may charge any price or no price for each copy that you convey,\ +and you may offer support or warranty protection for a fee.\ +\ + 5. Conveying Modified Source Versions.\ +\ + You may convey a work based on the Program, or the modifications to\ +produce it from the Program, in the form of source code under the\ +terms of section 4, provided that you also meet all of these conditions:\ +\ + a) The work must carry prominent notices stating that you modified\ + it, and giving a relevant date.\ +\ + b) The work must carry prominent notices stating that it is\ + released under this License and any conditions added under section\ + 7. This requirement modifies the requirement in section 4 to\ + "keep intact all notices".\ +\ + c) You must license the entire work, as a whole, under this\ + License to anyone who comes into possession of a copy. This\ + License will therefore apply, along with any applicable section 7\ + additional terms, to the whole of the work, and all its parts,\ + regardless of how they are packaged. This License gives no\ + permission to license the work in any other way, but it does not\ + invalidate such permission if you have separately received it.\ +\ + d) If the work has interactive user interfaces, each must display\ + Appropriate Legal Notices; however, if the Program has interactive\ + interfaces that do not display Appropriate Legal Notices, your\ + work need not make them do so.\ +\ + A compilation of a covered work with other separate and independent\ +works, which are not by their nature extensions of the covered work,\ +and which are not combined with it such as to form a larger program,\ +in or on a volume of a storage or distribution medium, is called an\ +"aggregate" if the compilation and its resulting copyright are not\ +used to limit the access or legal rights of the compilation's users\ +beyond what the individual works permit. Inclusion of a covered work\ +in an aggregate does not cause this License to apply to the other\ +parts of the aggregate.\ +\ + 6. Conveying Non-Source Forms.\ +\ + You may convey a covered work in object code form under the terms\ +of sections 4 and 5, provided that you also convey the\ +machine-readable Corresponding Source under the terms of this License,\ +in one of these ways:\ +\ + a) Convey the object code in, or embodied in, a physical product\ + (including a physical distribution medium), accompanied by the\ + Corresponding Source fixed on a durable physical medium\ + customarily used for software interchange.\ +\ + b) Convey the object code in, or embodied in, a physical product\ + (including a physical distribution medium), accompanied by a\ + written offer, valid for at least three years and valid for as\ + long as you offer spare parts or customer support for that product\ + model, to give anyone who possesses the object code either (1) a\ + copy of the Corresponding Source for all the software in the\ + product that is covered by this License, on a durable physical\ + medium customarily used for software interchange, for a price no\ + more than your reasonable cost of physically performing this\ + conveying of source, or (2) access to copy the\ + Corresponding Source from a network server at no charge.\ +\ + c) Convey individual copies of the object code with a copy of the\ + written offer to provide the Corresponding Source. This\ + alternative is allowed only occasionally and noncommercially, and\ + only if you received the object code with such an offer, in accord\ + with subsection 6b.\ +\ + d) Convey the object code by offering access from a designated\ + place (gratis or for a charge), and offer equivalent access to the\ + Corresponding Source in the same way through the same place at no\ + further charge. You need not require recipients to copy the\ + Corresponding Source along with the object code. If the place to\ + copy the object code is a network server, the Corresponding Source\ + may be on a different server (operated by you or a third party)\ + that supports equivalent copying facilities, provided you maintain\ + clear directions next to the object code saying where to find the\ + Corresponding Source. Regardless of what server hosts the\ + Corresponding Source, you remain obligated to ensure that it is\ + available for as long as needed to satisfy these requirements.\ +\ + e) Convey the object code using peer-to-peer transmission, provided\ + you inform other peers where the object code and Corresponding\ + Source of the work are being offered to the general public at no\ + charge under subsection 6d.\ +\ + A separable portion of the object code, whose source code is excluded\ +from the Corresponding Source as a System Library, need not be\ +included in conveying the object code work.\ +\ + A "User Product" is either (1) a "consumer product", which means any\ +tangible personal property which is normally used for personal, family,\ +or household purposes, or (2) anything designed or sold for incorporation\ +into a dwelling. In determining whether a product is a consumer product,\ +doubtful cases shall be resolved in favor of coverage. For a particular\ +product received by a particular user, "normally used" refers to a\ +typical or common use of that class of product, regardless of the status\ +of the particular user or of the way in which the particular user\ +actually uses, or expects or is expected to use, the product. A product\ +is a consumer product regardless of whether the product has substantial\ +commercial, industrial or non-consumer uses, unless such uses represent\ +the only significant mode of use of the product.\ +\ + "Installation Information" for a User Product means any methods,\ +procedures, authorization keys, or other information required to install\ +and execute modified versions of a covered work in that User Product from\ +a modified version of its Corresponding Source. The information must\ +suffice to ensure that the continued functioning of the modified object\ +code is in no case prevented or interfered with solely because\ +modification has been made.\ +\ + If you convey an object code work under this section in, or with, or\ +specifically for use in, a User Product, and the conveying occurs as\ +part of a transaction in which the right of possession and use of the\ +User Product is transferred to the recipient in perpetuity or for a\ +fixed term (regardless of how the transaction is characterized), the\ +Corresponding Source conveyed under this section must be accompanied\ +by the Installation Information. But this requirement does not apply\ +if neither you nor any third party retains the ability to install\ +modified object code on the User Product (for example, the work has\ +been installed in ROM).\ +\ + The requirement to provide Installation Information does not include a\ +requirement to continue to provide support service, warranty, or updates\ +for a work that has been modified or installed by the recipient, or for\ +the User Product in which it has been modified or installed. Access to a\ +network may be denied when the modification itself materially and\ +adversely affects the operation of the network or violates the rules and\ +protocols for communication across the network.\ +\ + Corresponding Source conveyed, and Installation Information provided,\ +in accord with this section must be in a format that is publicly\ +documented (and with an implementation available to the public in\ +source code form), and must require no special password or key for\ +unpacking, reading or copying.\ +\ + 7. Additional Terms.\ +\ + "Additional permissions" are terms that supplement the terms of this\ +License by making exceptions from one or more of its conditions.\ +Additional permissions that are applicable to the entire Program shall\ +be treated as though they were included in this License, to the extent\ +that they are valid under applicable law. If additional permissions\ +apply only to part of the Program, that part may be used separately\ +under those permissions, but the entire Program remains governed by\ +this License without regard to the additional permissions.\ +\ + When you convey a copy of a covered work, you may at your option\ +remove any additional permissions from that copy, or from any part of\ +it. (Additional permissions may be written to require their own\ +removal in certain cases when you modify the work.) You may place\ +additional permissions on material, added by you to a covered work,\ +for which you have or can give appropriate copyright permission.\ +\ + Notwithstanding any other provision of this License, for material you\ +add to a covered work, you may (if authorized by the copyright holders of\ +that material) supplement the terms of this License with terms:\ +\ + a) Disclaiming warranty or limiting liability differently from the\ + terms of sections 15 and 16 of this License; or\ +\ + b) Requiring preservation of specified reasonable legal notices or\ + author attributions in that material or in the Appropriate Legal\ + Notices displayed by works containing it; or\ +\ + c) Prohibiting misrepresentation of the origin of that material, or\ + requiring that modified versions of such material be marked in\ + reasonable ways as different from the original version; or\ +\ + d) Limiting the use for publicity purposes of names of licensors or\ + authors of the material; or\ +\ + e) Declining to grant rights under trademark law for use of some\ + trade names, trademarks, or service marks; or\ +\ + f) Requiring indemnification of licensors and authors of that\ + material by anyone who conveys the material (or modified versions of\ + it) with contractual assumptions of liability to the recipient, for\ + any liability that these contractual assumptions directly impose on\ + those licensors and authors.\ +\ + All other non-permissive additional terms are considered "further\ +restrictions" within the meaning of section 10. If the Program as you\ +received it, or any part of it, contains a notice stating that it is\ +governed by this License along with a term that is a further\ +restriction, you may remove that term. If a license document contains\ +a further restriction but permits relicensing or conveying under this\ +License, you may add to a covered work material governed by the terms\ +of that license document, provided that the further restriction does\ +not survive such relicensing or conveying.\ +\ + If you add terms to a covered work in accord with this section, you\ +must place, in the relevant source files, a statement of the\ +additional terms that apply to those files, or a notice indicating\ +where to find the applicable terms.\ +\ + Additional terms, permissive or non-permissive, may be stated in the\ +form of a separately written license, or stated as exceptions;\ +the above requirements apply either way.\ +\ + 8. Termination.\ +\ + You may not propagate or modify a covered work except as expressly\ +provided under this License. Any attempt otherwise to propagate or\ +modify it is void, and will automatically terminate your rights under\ +this License (including any patent licenses granted under the third\ +paragraph of section 11).\ +\ + However, if you cease all violation of this License, then your\ +license from a particular copyright holder is reinstated (a)\ +provisionally, unless and until the copyright holder explicitly and\ +finally terminates your license, and (b) permanently, if the copyright\ +holder fails to notify you of the violation by some reasonable means\ +prior to 60 days after the cessation.\ +\ + Moreover, your license from a particular copyright holder is\ +reinstated permanently if the copyright holder notifies you of the\ +violation by some reasonable means, this is the first time you have\ +received notice of violation of this License (for any work) from that\ +copyright holder, and you cure the violation prior to 30 days after\ +your receipt of the notice.\ +\ + Termination of your rights under this section does not terminate the\ +licenses of parties who have received copies or rights from you under\ +this License. If your rights have been terminated and not permanently\ +reinstated, you do not qualify to receive new licenses for the same\ +material under section 10.\ +\ + 9. Acceptance Not Required for Having Copies.\ +\ + You are not required to accept this License in order to receive or\ +run a copy of the Program. Ancillary propagation of a covered work\ +occurring solely as a consequence of using peer-to-peer transmission\ +to receive a copy likewise does not require acceptance. However,\ +nothing other than this License grants you permission to propagate or\ +modify any covered work. These actions infringe copyright if you do\ +not accept this License. Therefore, by modifying or propagating a\ +covered work, you indicate your acceptance of this License to do so.\ +\ + 10. Automatic Licensing of Downstream Recipients.\ +\ + Each time you convey a covered work, the recipient automatically\ +receives a license from the original licensors, to run, modify and\ +propagate that work, subject to this License. You are not responsible\ +for enforcing compliance by third parties with this License.\ +\ + An "entity transaction" is a transaction transferring control of an\ +organization, or substantially all assets of one, or subdividing an\ +organization, or merging organizations. If propagation of a covered\ +work results from an entity transaction, each party to that\ +transaction who receives a copy of the work also receives whatever\ +licenses to the work the party's predecessor in interest had or could\ +give under the previous paragraph, plus a right to possession of the\ +Corresponding Source of the work from the predecessor in interest, if\ +the predecessor has it or can get it with reasonable efforts.\ +\ + You may not impose any further restrictions on the exercise of the\ +rights granted or affirmed under this License. For example, you may\ +not impose a license fee, royalty, or other charge for exercise of\ +rights granted under this License, and you may not initiate litigation\ +(including a cross-claim or counterclaim in a lawsuit) alleging that\ +any patent claim is infringed by making, using, selling, offering for\ +sale, or importing the Program or any portion of it.\ +\ + 11. Patents.\ +\ + A "contributor" is a copyright holder who authorizes use under this\ +License of the Program or a work on which the Program is based. The\ +work thus licensed is called the contributor's "contributor version".\ +\ + A contributor's "essential patent claims" are all patent claims\ +owned or controlled by the contributor, whether already acquired or\ +hereafter acquired, that would be infringed by some manner, permitted\ +by this License, of making, using, or selling its contributor version,\ +but do not include claims that would be infringed only as a\ +consequence of further modification of the contributor version. For\ +purposes of this definition, "control" includes the right to grant\ +patent sublicenses in a manner consistent with the requirements of\ +this License.\ +\ + Each contributor grants you a non-exclusive, worldwide, royalty-free\ +patent license under the contributor's essential patent claims, to\ +make, use, sell, offer for sale, import and otherwise run, modify and\ +propagate the contents of its contributor version.\ +\ + In the following three paragraphs, a "patent license" is any express\ +agreement or commitment, however denominated, not to enforce a patent\ +(such as an express permission to practice a patent or covenant not to\ +sue for patent infringement). To "grant" such a patent license to a\ +party means to make such an agreement or commitment not to enforce a\ +patent against the party.\ +\ + If you convey a covered work, knowingly relying on a patent license,\ +and the Corresponding Source of the work is not available for anyone\ +to copy, free of charge and under the terms of this License, through a\ +publicly available network server or other readily accessible means,\ +then you must either (1) cause the Corresponding Source to be so\ +available, or (2) arrange to deprive yourself of the benefit of the\ +patent license for this particular work, or (3) arrange, in a manner\ +consistent with the requirements of this License, to extend the patent\ +license to downstream recipients. "Knowingly relying" means you have\ +actual knowledge that, but for the patent license, your conveying the\ +covered work in a country, or your recipient's use of the covered work\ +in a country, would infringe one or more identifiable patents in that\ +country that you have reason to believe are valid.\ +\ + If, pursuant to or in connection with a single transaction or\ +arrangement, you convey, or propagate by procuring conveyance of, a\ +covered work, and grant a patent license to some of the parties\ +receiving the covered work authorizing them to use, propagate, modify\ +or convey a specific copy of the covered work, then the patent license\ +you grant is automatically extended to all recipients of the covered\ +work and works based on it.\ +\ + A patent license is "discriminatory" if it does not include within\ +the scope of its coverage, prohibits the exercise of, or is\ +conditioned on the non-exercise of one or more of the rights that are\ +specifically granted under this License. You may not convey a covered\ +work if you are a party to an arrangement with a third party that is\ +in the business of distributing software, under which you make payment\ +to the third party based on the extent of your activity of conveying\ +the work, and under which the third party grants, to any of the\ +parties who would receive the covered work from you, a discriminatory\ +patent license (a) in connection with copies of the covered work\ +conveyed by you (or copies made from those copies), or (b) primarily\ +for and in connection with specific products or compilations that\ +contain the covered work, unless you entered into that arrangement,\ +or that patent license was granted, prior to 28 March 2007.\ +\ + Nothing in this License shall be construed as excluding or limiting\ +any implied license or other defenses to infringement that may\ +otherwise be available to you under applicable patent law.\ +\ + 12. No Surrender of Others' Freedom.\ +\ + If conditions are imposed on you (whether by court order, agreement or\ +otherwise) that contradict the conditions of this License, they do not\ +excuse you from the conditions of this License. If you cannot convey a\ +covered work so as to satisfy simultaneously your obligations under this\ +License and any other pertinent obligations, then as a consequence you may\ +not convey it at all. For example, if you agree to terms that obligate you\ +to collect a royalty for further conveying from those to whom you convey\ +the Program, the only way you could satisfy both those terms and this\ +License would be to refrain entirely from conveying the Program.\ +\ + 13. Use with the GNU Affero General Public License.\ +\ + Notwithstanding any other provision of this License, you have\ +permission to link or combine any covered work with a work licensed\ +under version 3 of the GNU Affero General Public License into a single\ +combined work, and to convey the resulting work. The terms of this\ +License will continue to apply to the part which is the covered work,\ +but the special requirements of the GNU Affero General Public License,\ +section 13, concerning interaction through a network will apply to the\ +combination as such.\ +\ + 14. Revised Versions of this License.\ +\ + The Free Software Foundation may publish revised and/or new versions of\ +the GNU General Public License from time to time. Such new versions will\ +be similar in spirit to the present version, but may differ in detail to\ +address new problems or concerns.\ +\ + Each version is given a distinguishing version number. If the\ +Program specifies that a certain numbered version of the GNU General\ +Public License "or any later version" applies to it, you have the\ +option of following the terms and conditions either of that numbered\ +version or of any later version published by the Free Software\ +Foundation. If the Program does not specify a version number of the\ +GNU General Public License, you may choose any version ever published\ +by the Free Software Foundation.\ +\ + If the Program specifies that a proxy can decide which future\ +versions of the GNU General Public License can be used, that proxy's\ +public statement of acceptance of a version permanently authorizes you\ +to choose that version for the Program.\ +\ + Later license versions may give you additional or different\ +permissions. However, no additional obligations are imposed on any\ +author or copyright holder as a result of your choosing to follow a\ +later version.\ +\ + 15. Disclaimer of Warranty.\ +\ + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\ +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\ +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY\ +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\ +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\ +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\ +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\ +ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\ +\ + 16. Limitation of Liability.\ +\ + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\ +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\ +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\ +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\ +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\ +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\ +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\ +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\ +SUCH DAMAGES.\ +\ + 17. Interpretation of Sections 15 and 16.\ +\ + If the disclaimer of warranty and limitation of liability provided\ +above cannot be given local legal effect according to their terms,\ +reviewing courts shall apply local law that most closely approximates\ +an absolute waiver of all civil liability in connection with the\ +Program, unless a warranty or assumption of liability accompanies a\ +copy of the Program in return for a fee.\ +\ + END OF TERMS AND CONDITIONS\ +\ + How to Apply These Terms to Your New Programs\ +\ + If you develop a new program, and you want it to be of the greatest\ +possible use to the public, the best way to achieve this is to make it\ +free software which everyone can redistribute and change under these terms.\ +\ + To do so, attach the following notices to the program. It is safest\ +to attach them to the start of each source file to most effectively\ +state the exclusion of warranty; and each file should have at least\ +the "copyright" line and a pointer to where the full notice is found.\ +\ + \ + Copyright (C) \ +\ + This program is free software: you can redistribute it and/or modify\ + it under the terms of the GNU General Public License as published by\ + the Free Software Foundation, either version 3 of the License, or\ + (at your option) any later version.\ +\ + This program is distributed in the hope that it will be useful,\ + but WITHOUT ANY WARRANTY; without even the implied warranty of\ + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\ + GNU General Public License for more details.\ +\ + You should have received a copy of the GNU General Public License\ + along with this program. If not, see .\ +\ +Also add information on how to contact you by electronic and paper mail.\ +\ + If the program does terminal interaction, make it output a short\ +notice like this when it starts in an interactive mode:\ +\ + Copyright (C) \ + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\ + This is free software, and you are welcome to redistribute it\ + under certain conditions; type `show c' for details.\ +\ +The hypothetical commands `show w' and `show c' should show the appropriate\ +parts of the General Public License. Of course, your program's commands\ +might be different; for a GUI interface, you would use an "about box".\ +\ + You should also get your employer (if you work as a programmer) or school,\ +if any, to sign a "copyright disclaimer" for the program, if necessary.\ +For more information on this, and how to apply and follow the GNU GPL, see\ +.\ +\ + The GNU General Public License does not permit incorporating your program\ +into proprietary programs. If your program is a subroutine library, you\ +may consider it more useful to permit linking proprietary applications with\ +the library. If this is what you want to do, use the GNU Lesser General\ +Public License instead of this License. But first, please read\ +.\ +\ + +\f0\b\fs26 LICENSE-MPL-2.0 +\f1\b0\fs24 \ +Mozilla Public License Version 2.0\ +==================================\ +\ +1. Definitions\ +--------------\ +\ +1.1. "Contributor"\ + means each individual or legal entity that creates, contributes to\ + the creation of, or owns Covered Software.\ +\ +1.2. "Contributor Version"\ + means the combination of the Contributions of others (if any) used\ + by a Contributor and that particular Contributor's Contribution.\ +\ +1.3. "Contribution"\ + means Covered Software of a particular Contributor.\ +\ +1.4. "Covered Software"\ + means Source Code Form to which the initial Contributor has attached\ + the notice in Exhibit A, the Executable Form of such Source Code\ + Form, and Modifications of such Source Code Form, in each case\ + including portions thereof.\ +\ +1.5. "Incompatible With Secondary Licenses"\ + means\ +\ + (a) that the initial Contributor has attached the notice described\ + in Exhibit B to the Covered Software; or\ +\ + (b) that the Covered Software was made available under the terms of\ + version 1.1 or earlier of the License, but not also under the\ + terms of a Secondary License.\ +\ +1.6. "Executable Form"\ + means any form of the work other than Source Code Form.\ +\ +1.7. "Larger Work"\ + means a work that combines Covered Software with other material, in\ + a separate file or files, that is not Covered Software.\ +\ +1.8. "License"\ + means this document.\ +\ +1.9. "Licensable"\ + means having the right to grant, to the maximum extent possible,\ + whether at the time of the initial grant or subsequently, any and\ + all of the rights conveyed by this License.\ +\ +1.10. "Modifications"\ + means any of the following:\ +\ + (a) any file in Source Code Form that results from an addition to,\ + deletion from, or modification of the contents of Covered\ + Software; or\ +\ + (b) any new file in Source Code Form that contains any Covered\ + Software.\ +\ +1.11. "Patent Claims" of a Contributor\ + means any patent claim(s), including without limitation, method,\ + process, and apparatus claims, in any patent Licensable by such\ + Contributor that would be infringed, but for the grant of the\ + License, by the making, using, selling, offering for sale, having\ + made, import, or transfer of either its Contributions or its\ + Contributor Version.\ +\ +1.12. "Secondary License"\ + means either the GNU General Public License, Version 2.0, the GNU\ + Lesser General Public License, Version 2.1, the GNU Affero General\ + Public License, Version 3.0, or any later versions of those\ + licenses.\ +\ +1.13. "Source Code Form"\ + means the form of the work preferred for making modifications.\ +\ +1.14. "You" (or "Your")\ + means an individual or a legal entity exercising rights under this\ + License. For legal entities, "You" includes any entity that\ + controls, is controlled by, or is under common control with You. For\ + purposes of this definition, "control" means (a) the power, direct\ + or indirect, to cause the direction or management of such entity,\ + whether by contract or otherwise, or (b) ownership of more than\ + fifty percent (50%) of the outstanding shares or beneficial\ + ownership of such entity.\ +\ +2. License Grants and Conditions\ +--------------------------------\ +\ +2.1. Grants\ +\ +Each Contributor hereby grants You a world-wide, royalty-free,\ +non-exclusive license:\ +\ +(a) under intellectual property rights (other than patent or trademark)\ + Licensable by such Contributor to use, reproduce, make available,\ + modify, display, perform, distribute, and otherwise exploit its\ + Contributions, either on an unmodified basis, with Modifications, or\ + as part of a Larger Work; and\ +\ +(b) under Patent Claims of such Contributor to make, use, sell, offer\ + for sale, have made, import, and otherwise transfer either its\ + Contributions or its Contributor Version.\ +\ +2.2. Effective Date\ +\ +The licenses granted in Section 2.1 with respect to any Contribution\ +become effective for each Contribution on the date the Contributor first\ +distributes such Contribution.\ +\ +2.3. Limitations on Grant Scope\ +\ +The licenses granted in this Section 2 are the only rights granted under\ +this License. No additional rights or licenses will be implied from the\ +distribution or licensing of Covered Software under this License.\ +Notwithstanding Section 2.1(b) above, no patent license is granted by a\ +Contributor:\ +\ +(a) for any code that a Contributor has removed from Covered Software;\ + or\ +\ +(b) for infringements caused by: (i) Your and any other third party's\ + modifications of Covered Software, or (ii) the combination of its\ + Contributions with other software (except as part of its Contributor\ + Version); or\ +\ +(c) under Patent Claims infringed by Covered Software in the absence of\ + its Contributions.\ +\ +This License does not grant any rights in the trademarks, service marks,\ +or logos of any Contributor (except as may be necessary to comply with\ +the notice requirements in Section 3.4).\ +\ +2.4. Subsequent Licenses\ +\ +No Contributor makes additional grants as a result of Your choice to\ +distribute the Covered Software under a subsequent version of this\ +License (see Section 10.2) or under the terms of a Secondary License (if\ +permitted under the terms of Section 3.3).\ +\ +2.5. Representation\ +\ +Each Contributor represents that the Contributor believes its\ +Contributions are its original creation(s) or it has sufficient rights\ +to grant the rights to its Contributions conveyed by this License.\ +\ +2.6. Fair Use\ +\ +This License is not intended to limit any rights You have under\ +applicable copyright doctrines of fair use, fair dealing, or other\ +equivalents.\ +\ +2.7. Conditions\ +\ +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted\ +in Section 2.1.\ +\ +3. Responsibilities\ +-------------------\ +\ +3.1. Distribution of Source Form\ +\ +All distribution of Covered Software in Source Code Form, including any\ +Modifications that You create or to which You contribute, must be under\ +the terms of this License. You must inform recipients that the Source\ +Code Form of the Covered Software is governed by the terms of this\ +License, and how they can obtain a copy of this License. You may not\ +attempt to alter or restrict the recipients' rights in the Source Code\ +Form.\ +\ +3.2. Distribution of Executable Form\ +\ +If You distribute Covered Software in Executable Form then:\ +\ +(a) such Covered Software must also be made available in Source Code\ + Form, as described in Section 3.1, and You must inform recipients of\ + the Executable Form how they can obtain a copy of such Source Code\ + Form by reasonable means in a timely manner, at a charge no more\ + than the cost of distribution to the recipient; and\ +\ +(b) You may distribute such Executable Form under the terms of this\ + License, or sublicense it under different terms, provided that the\ + license for the Executable Form does not attempt to limit or alter\ + the recipients' rights in the Source Code Form under this License.\ +\ +3.3. Distribution of a Larger Work\ +\ +You may create and distribute a Larger Work under terms of Your choice,\ +provided that You also comply with the requirements of this License for\ +the Covered Software. If the Larger Work is a combination of Covered\ +Software with a work governed by one or more Secondary Licenses, and the\ +Covered Software is not Incompatible With Secondary Licenses, this\ +License permits You to additionally distribute such Covered Software\ +under the terms of such Secondary License(s), so that the recipient of\ +the Larger Work may, at their option, further distribute the Covered\ +Software under the terms of either this License or such Secondary\ +License(s).\ +\ +3.4. Notices\ +\ +You may not remove or alter the substance of any license notices\ +(including copyright notices, patent notices, disclaimers of warranty,\ +or limitations of liability) contained within the Source Code Form of\ +the Covered Software, except that You may alter any license notices to\ +the extent required to remedy known factual inaccuracies.\ +\ +3.5. Application of Additional Terms\ +\ +You may choose to offer, and to charge a fee for, warranty, support,\ +indemnity or liability obligations to one or more recipients of Covered\ +Software. However, You may do so only on Your own behalf, and not on\ +behalf of any Contributor. You must make it absolutely clear that any\ +such warranty, support, indemnity, or liability obligation is offered by\ +You alone, and You hereby agree to indemnify every Contributor for any\ +liability incurred by such Contributor as a result of warranty, support,\ +indemnity or liability terms You offer. You may include additional\ +disclaimers of warranty and limitations of liability specific to any\ +jurisdiction.\ +\ +4. Inability to Comply Due to Statute or Regulation\ +---------------------------------------------------\ +\ +If it is impossible for You to comply with any of the terms of this\ +License with respect to some or all of the Covered Software due to\ +statute, judicial order, or regulation then You must: (a) comply with\ +the terms of this License to the maximum extent possible; and (b)\ +describe the limitations and the code they affect. Such description must\ +be placed in a text file included with all distributions of the Covered\ +Software under this License. Except to the extent prohibited by statute\ +or regulation, such description must be sufficiently detailed for a\ +recipient of ordinary skill to be able to understand it.\ +\ +5. Termination\ +--------------\ +\ +5.1. The rights granted under this License will terminate automatically\ +if You fail to comply with any of its terms. However, if You become\ +compliant, then the rights granted under this License from a particular\ +Contributor are reinstated (a) provisionally, unless and until such\ +Contributor explicitly and finally terminates Your grants, and (b) on an\ +ongoing basis, if such Contributor fails to notify You of the\ +non-compliance by some reasonable means prior to 60 days after You have\ +come back into compliance. Moreover, Your grants from a particular\ +Contributor are reinstated on an ongoing basis if such Contributor\ +notifies You of the non-compliance by some reasonable means, this is the\ +first time You have received notice of non-compliance with this License\ +from such Contributor, and You become compliant prior to 30 days after\ +Your receipt of the notice.\ +\ +5.2. If You initiate litigation against any entity by asserting a patent\ +infringement claim (excluding declaratory judgment actions,\ +counter-claims, and cross-claims) alleging that a Contributor Version\ +directly or indirectly infringes any patent, then the rights granted to\ +You by any and all Contributors for the Covered Software under Section\ +2.1 of this License shall terminate.\ +\ +5.3. In the event of termination under Sections 5.1 or 5.2 above, all\ +end user license agreements (excluding distributors and resellers) which\ +have been validly granted by You or Your distributors under this License\ +prior to termination shall survive termination.\ +\ +************************************************************************\ +* *\ +* 6. Disclaimer of Warranty *\ +* ------------------------- *\ +* *\ +* Covered Software is provided under this License on an "as is" *\ +* basis, without warranty of any kind, either expressed, implied, or *\ +* statutory, including, without limitation, warranties that the *\ +* Covered Software is free of defects, merchantable, fit for a *\ +* particular purpose or non-infringing. The entire risk as to the *\ +* quality and performance of the Covered Software is with You. *\ +* Should any Covered Software prove defective in any respect, You *\ +* (not any Contributor) assume the cost of any necessary servicing, *\ +* repair, or correction. This disclaimer of warranty constitutes an *\ +* essential part of this License. No use of any Covered Software is *\ +* authorized under this License except under this disclaimer. *\ +* *\ +************************************************************************\ +\ +************************************************************************\ +* *\ +* 7. Limitation of Liability *\ +* -------------------------- *\ +* *\ +* Under no circumstances and under no legal theory, whether tort *\ +* (including negligence), contract, or otherwise, shall any *\ +* Contributor, or anyone who distributes Covered Software as *\ +* permitted above, be liable to You for any direct, indirect, *\ +* special, incidental, or consequential damages of any character *\ +* including, without limitation, damages for lost profits, loss of *\ +* goodwill, work stoppage, computer failure or malfunction, or any *\ +* and all other commercial damages or losses, even if such party *\ +* shall have been informed of the possibility of such damages. This *\ +* limitation of liability shall not apply to liability for death or *\ +* personal injury resulting from such party's negligence to the *\ +* extent applicable law prohibits such limitation. Some *\ +* jurisdictions do not allow the exclusion or limitation of *\ +* incidental or consequential damages, so this exclusion and *\ +* limitation may not apply to You. *\ +* *\ +************************************************************************\ +\ +8. Litigation\ +-------------\ +\ +Any litigation relating to this License may be brought only in the\ +courts of a jurisdiction where the defendant maintains its principal\ +place of business and such litigation shall be governed by laws of that\ +jurisdiction, without reference to its conflict-of-law provisions.\ +Nothing in this Section shall prevent a party's ability to bring\ +cross-claims or counter-claims.\ +\ +9. Miscellaneous\ +----------------\ +\ +This License represents the complete agreement concerning the subject\ +matter hereof. If any provision of this License is held to be\ +unenforceable, such provision shall be reformed only to the extent\ +necessary to make it enforceable. Any law or regulation which provides\ +that the language of a contract shall be construed against the drafter\ +shall not be used to construe this License against a Contributor.\ +\ +10. Versions of the License\ +---------------------------\ +\ +10.1. New Versions\ +\ +Mozilla Foundation is the license steward. Except as provided in Section\ +10.3, no one other than the license steward has the right to modify or\ +publish new versions of this License. Each version will be given a\ +distinguishing version number.\ +\ +10.2. Effect of New Versions\ +\ +You may distribute the Covered Software under the terms of the version\ +of the License under which You originally received the Covered Software,\ +or under the terms of any subsequent version published by the license\ +steward.\ +\ +10.3. Modified Versions\ +\ +If you create software not governed by this License, and you want to\ +create a new license for such software, you may create and use a\ +modified version of this License if you rename the license and remove\ +any references to the name of the license steward (except to note that\ +such modified license differs from this License).\ +\ +10.4. Distributing Source Code Form that is Incompatible With Secondary\ +Licenses\ +\ +If You choose to distribute Source Code Form that is Incompatible With\ +Secondary Licenses under the terms of this version of the License, the\ +notice described in Exhibit B of this License must be attached.\ +\ +Exhibit A - Source Code Form License Notice\ +-------------------------------------------\ +\ + This Source Code Form is subject to the terms of the Mozilla Public\ + License, v. 2.0. If a copy of the MPL was not distributed with this\ + file, You can obtain one at http://mozilla.org/MPL/2.0/.\ +\ +If it is not possible or desirable to put the notice in a particular\ +file, then You may include the notice in a location (such as a LICENSE\ +file in a relevant directory) where a recipient would be likely to look\ +for such a notice.\ +\ +You may add additional accurate notices of copyright ownership.\ +\ +Exhibit B - "Incompatible With Secondary Licenses" Notice\ +---------------------------------------------------------\ +\ + This Source Code Form is "Incompatible With Secondary Licenses", as\ + defined by the Mozilla Public License, v. 2.0.\ +\ + +\f0\b\fs26 LICENSE-MIT +\f1\b0\fs24 \ +MIT License\ +\ +Copyright (c) 2021+ Anton Zhiyanov \ +\ +Permission is hereby granted, free of charge, to any person obtaining a copy\ +of this software and associated documentation files (the "Software"), to deal\ +in the Software without restriction, including without limitation the rights\ +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ +copies of the Software, and to permit persons to whom the Software is\ +furnished to do so, subject to the following conditions:\ +\ +The above copyright notice and this permission notice shall be included in all\ +copies or substantial portions of the Software.\ +\ +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\ +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\ +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\ +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\ +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\ +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\ +SOFTWARE.\ +\ + +\f0\b\fs26 LICENSE-PLUGINS +\f1\b0\fs24 \ +DB Browser for SQLite includes support for TIFF and WebP images. The\ +support for these comes from the LibTIFF and WebP projects, which have\ +their own (Open Source) licenses, different to ours.\ +\ +LibTIFF - http://www.simplesystems.org/libtiff/\ +\ + Copyright (c) 1988-1997 Sam Leffler\ + Copyright (c) 1991-1997 Silicon Graphics, Inc.\ +\ + Permission to use, copy, modify, distribute, and sell this software and \ + its documentation for any purpose is hereby granted without fee, provided\ + that (i) the above copyright notices and this permission notice appear in\ + all copies of the software and related documentation, and (ii) the names of\ + Sam Leffler and Silicon Graphics may not be used in any advertising or\ + publicity relating to the software without the specific, prior written\ + permission of Sam Leffler and Silicon Graphics.\ +\ + THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, \ + EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY \ + WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. \ +\ + IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR\ + ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,\ + OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,\ + WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF \ + LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE \ + OF THIS SOFTWARE. \ +\ +WebP - https://developers.google.com/speed/webp/\ +\ + Copyright (c) 2010, Google Inc. All rights reserved.\ +\ + Redistribution and use in source and binary forms, with or without\ + modification, are permitted provided that the following conditions are\ + met:\ +\ + * Redistributions of source code must retain the above copyright\ + notice, this list of conditions and the following disclaimer.\ +\ + * Redistributions in binary form must reproduce the above copyright\ + notice, this list of conditions and the following disclaimer in\ + the documentation and/or other materials provided with the\ + distribution.\ +\ + * Neither the name of Google nor the names of its contributors may\ + be used to endorse or promote products derived from this software\ + without specific prior written permission.\ +\ + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\ + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\ + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\ + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\ + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\ + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\ + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\ + DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\ + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\ + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\ + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\ +\ +Icons - https://codefisher.org/pastel-svg/\ +\ +Most of the icons come from the Pastel SVG icon set created by Michael\ +Buckley. We have obtained a special license (Creative Commons\ +Attribution Share Alike 4.0\ +http://creativecommons.org/licenses/by-sa/4.0/) but you might be\ +required to redistribute it under Creative Commons Attribution\ +NonCommercial Share Alike 4.0\ +http://creativecommons.org/licenses/by-nc-sa/4.0/\ +Check https://codefisher.org/pastel-svg/ for clarification.\ +\ +The construction emoji for the icon used in the nightly version come\ +from the OpenMoji under CC BY-SA 4.0 license.\ +Check https://openmoji.org/library/emoji-1F6A7/ and\ +https://openmoji.org/faq/ for clarification.\ +\ +Some icons might have other open licenses, check history of the files\ +under `src/icons`.} \ No newline at end of file From 1ff08ae3796fe3527c29b60347197c1a12561752 Mon Sep 17 00:00:00 2001 From: SeongTae Jeong Date: Mon, 17 Jun 2024 10:06:54 +0900 Subject: [PATCH 14/67] Prepare to build v3.13.0-rc3 --- .github/workflows/build-appimage.yml | 2 +- .github/workflows/build-macos.yml | 4 ++-- .github/workflows/build-windows.yml | 6 ++---- .github/workflows/cppcmake.yml | 2 +- .github/workflows/release.yml | 2 +- installer/macos/notarize.sh | 8 ++++---- 6 files changed, 11 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build-appimage.yml b/.github/workflows/build-appimage.yml index 0a433ec7c..eeb07bad8 100644 --- a/.github/workflows/build-appimage.yml +++ b/.github/workflows/build-appimage.yml @@ -47,7 +47,7 @@ jobs: run: | wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage" chmod a+x linuxdeployqt-continuous-x86_64.AppImage - export VERSION=v3.13.0-rc2 + export VERSION=v3.13.0-rc3 ./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -appimage - name: Rename a file diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index d440764ec..8bba2516b 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -38,9 +38,9 @@ jobs: - name: Configure build run: | if [ "${{ matrix.sqlcipher }}" = "1" ]; then - sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLCipher-v3.13.0-rc2"/' CMakeLists.txt + sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLCipher-v3.13.0-rc3"/' CMakeLists.txt else - sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLite-v3.13.0-rc2"/' CMakeLists.txt + sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLite-v3.13.0-rc3"/' CMakeLists.txt fi mkdir build && cd build diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index da9ab534c..8379b9abc 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -143,8 +143,7 @@ jobs: cd installer/windows ./build.cmd "${{ matrix.arch }}".ToLower() $ARCH="${{ matrix.arch }}".ToLower() - $DATE=$(Get-Date -Format "yyyy-MM-dd") - mv DB.Browser.for.SQLite-*.msi "DB.Browser.for.SQLite-v3.13.0-rc2-$ARCH.msi" + mv DB.Browser.for.SQLite-*.msi "DB.Browser.for.SQLite-v3.13.0-rc3-$ARCH.msi" - if: github.event_name != 'pull_request' name: Upload artifacts for code signing with SignPath @@ -171,8 +170,7 @@ jobs: name: Create ZIP run: | $ARCH="${{ matrix.arch }}".ToLower() - $DATE=$(Get-Date -Format "yyyy-MM-dd") - $FILENAME_FORMAT="DB.Browser.for.SQLite-v3.13.0-rc2-$ARCH.zip" + $FILENAME_FORMAT="DB.Browser.for.SQLite-v3.13.0-rc3-$ARCH.zip" Start-Process msiexec.exe -ArgumentList "/a $(dir installer\windows\DB.Browser.for.SQLite-*.msi) /q TARGETDIR=$PWD\target\" -Wait if ("${{ matrix.arch }}" -eq "Win32") { move target\System\* "target\DB Browser for SQLite\" diff --git a/.github/workflows/cppcmake.yml b/.github/workflows/cppcmake.yml index 884dbbe4e..4113679a5 100644 --- a/.github/workflows/cppcmake.yml +++ b/.github/workflows/cppcmake.yml @@ -1,4 +1,4 @@ -name: Build v3.13.0-rc2 +name: Build v3.13.0-rc3 on: workflow_dispatch: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 661937230..19f4fccc8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,7 +4,7 @@ on: workflow_call: env: - tag_name: "v3.13.0-rc2" + tag_name: "v3.13.0-rc3" jobs: release: diff --git a/installer/macos/notarize.sh b/installer/macos/notarize.sh index bb3950639..6e94ed6c0 100644 --- a/installer/macos/notarize.sh +++ b/installer/macos/notarize.sh @@ -77,13 +77,13 @@ mv build/*.app installer/macos export DATE=$(date +%Y%m%d) if [ "$SQLCIPHER" = "1" ]; then - sed -i "" 's/"DB Browser for SQLCipher Nightly.app"/"DB Browser for SQLCipher-v3.13.0-rc2.app"/' installer/macos/sqlcipher-nightly.json - TARGET="DB.Browser.for.SQLCipher-v3.13.0-rc2.dmg" + sed -i "" 's/"DB Browser for SQLCipher Nightly.app"/"DB Browser for SQLCipher-v3.13.0-rc3.app"/' installer/macos/sqlcipher-nightly.json + TARGET="DB.Browser.for.SQLCipher-v3.13.0-rc3.dmg" appdmg --quiet installer/macos/sqlcipher-nightly.json "$TARGET" else # Continuous without SQLCipher - sed -i "" 's/"DB Browser for SQLite Nightly.app"/"DB Browser for SQLite-v3.13.0-rc2.app"/' installer/macos/nightly.json - TARGET="DB.Browser.for.SQLite-v3.13.0-rc2.dmg" + sed -i "" 's/"DB Browser for SQLite Nightly.app"/"DB Browser for SQLite-v3.13.0-rc3.app"/' installer/macos/nightly.json + TARGET="DB.Browser.for.SQLite-v3.13.0-rc3.dmg" appdmg --quiet installer/macos/nightly.json "$TARGET" fi From b0171b629d30603ee911949d992dccfc56e32a67 Mon Sep 17 00:00:00 2001 From: SeongTae Jeong Date: Tue, 18 Jun 2024 16:15:54 +0900 Subject: [PATCH 15/67] Update the license notice included with MSI Installer for Windows This commit include changes that are missing from recent '73ebe93ef0eb07247457c03eab532934a38d9679' commits. --- .github/patch/product.wxs.patch | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/.github/patch/product.wxs.patch b/.github/patch/product.wxs.patch index 5910ab7c7..c0e14c061 100644 --- a/.github/patch/product.wxs.patch +++ b/.github/patch/product.wxs.patch @@ -1,5 +1,5 @@ diff --git a/installer/windows/product.wxs b/installer/windows/product.wxs -index c040591a..23a9b40a 100644 +index c040591a..12c3aee8 100644 --- a/installer/windows/product.wxs +++ b/installer/windows/product.wxs @@ -63,7 +63,8 @@ @@ -12,7 +12,17 @@ index c040591a..23a9b40a 100644 -@@ -149,8 +150,11 @@ +@@ -84,6 +85,9 @@ + + + ++ ++ ++ + + + +@@ -149,8 +153,11 @@ @@ -25,3 +35,13 @@ index c040591a..23a9b40a 100644 +@@ -186,6 +193,9 @@ + + + ++ ++ ++ + + + From aeda1b4c2dcccf9413258ed3263e84a7808b5d3b Mon Sep 17 00:00:00 2001 From: mgrojo Date: Fri, 21 Jun 2024 21:52:54 +0200 Subject: [PATCH 16/67] Clear Table Browser settings when the table does not exist any longer For example, when a database is detached. See issue #3662 --- src/MainWindow.cpp | 6 ++++-- src/MainWindow.h | 3 ++- src/TableBrowser.cpp | 15 ++++++++++++--- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 06a7588e3..c3ce01ce4 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -670,14 +670,14 @@ void MainWindow::populateStructure(const std::vector& ol ui->treeSchemaDock->resizeColumnToContents(DbStructureModel::ColumnName); } -void MainWindow::refreshTableBrowsers() +void MainWindow::refreshTableBrowsers(bool all) { QApplication::setOverrideCursor(Qt::WaitCursor); for(const auto& d : allTableBrowserDocks()) { // When in the Browse Data tab update all docks. Otherwise just update the floating ones because they might // be visible even when another tab is active. - if(ui->mainTab->currentWidget() == ui->browser || d->isFloating()) + if(all || ui->mainTab->currentWidget() == ui->browser || d->isFloating()) { TableBrowser* t = d->tableBrowser(); if(t) @@ -3400,6 +3400,8 @@ void MainWindow::fileDetachTreeViewSelected(QTreeView* treeView) std::string attached_as = treeView->model()->data(treeView->currentIndex().sibling(treeView->currentIndex().row(), DbStructureModel::ColumnSchema), Qt::EditRole).toString().toStdString(); if (db.detach(attached_as)) { + db.updateSchema(); + refreshTableBrowsers(/* all */ true); isProjectModified = true; refresh(); } diff --git a/src/MainWindow.h b/src/MainWindow.h index 323d02920..7ea701a2a 100644 --- a/src/MainWindow.h +++ b/src/MainWindow.h @@ -175,7 +175,8 @@ private slots: void changeTreeSelection(); void fileNew(); void fileNewInMemoryDatabase(bool open_create_dialog = true); - void refreshTableBrowsers(); + // Refresh visible table browsers. When all is true, refresh all browsers. + void refreshTableBrowsers(bool all = false); bool fileClose(); bool fileSaveAs(); void createTable(); diff --git a/src/TableBrowser.cpp b/src/TableBrowser.cpp index 9f6bb48fa..22b679f58 100644 --- a/src/TableBrowser.cpp +++ b/src/TableBrowser.cpp @@ -536,6 +536,15 @@ void TableBrowser::refresh() }); } + // Delete settings of no-longer existent tables + for (auto it = m_settings.cbegin(); it != m_settings.cend(); ) { + if (!db->getTableByName(it->first)) { + it = m_settings.erase(it); + } else { + ++it; + } + } + // Retrieve the stored data for this table if there is any. If there are no settings for this table, // this will insert and return a settings object with default values. const sqlb::ObjectIdentifier tablename = currentlyBrowsedTableName(); @@ -551,9 +560,9 @@ void TableBrowser::refresh() emit currentTableChanged(tablename); // Build query and apply settings - applyModelSettings(storedData, buildQuery(storedData, tablename)); - applyViewportSettings(storedData, tablename); - emit updatePlot(ui->dataTable, m_model, &m_settings[tablename], true); + applyModelSettings(storedData, buildQuery(storedData, tablename)); + applyViewportSettings(storedData, tablename); + emit updatePlot(ui->dataTable, m_model, &m_settings[tablename], true); } void TableBrowser::clearFilters() From ad02e28f957925f8b12412d880048f1c79776f21 Mon Sep 17 00:00:00 2001 From: mgrojo Date: Sat, 22 Jun 2024 16:45:54 +0200 Subject: [PATCH 17/67] Table Browser: optimizations in copy to clipboard - Minimize string concatenations - Minify HTML string (no unnecessary whitespace) - Avoid wasting time in the SQL version when copying HTML+text and viceversa; reuse `result` string for SQL and plain text - Code simplifications that improve performance or are neutral - Add wait cursor to indicate a long operation See issue #3664 --- src/ExtendedTableWidget.cpp | 187 ++++++++++++++++++++---------------- 1 file changed, 102 insertions(+), 85 deletions(-) diff --git a/src/ExtendedTableWidget.cpp b/src/ExtendedTableWidget.cpp index ebb9a76a4..4f9f377dd 100644 --- a/src/ExtendedTableWidget.cpp +++ b/src/ExtendedTableWidget.cpp @@ -506,9 +506,10 @@ void ExtendedTableWidget::reloadSettings() void ExtendedTableWidget::copyMimeData(const QModelIndexList& fromIndices, QMimeData* mimeData, const bool withHeaders, const bool inSQL) { + QApplication::setOverrideCursor(Qt::WaitCursor); QModelIndexList indices = fromIndices; - // Remove all indices from hidden columns, because if we don't we might copy data from hidden columns as well which is very + // Remove all indices from hidden columns, because if we don't, we might copy data from hidden columns as well which is very // unintuitive; especially copying the rowid column when selecting all columns of a table is a problem because pasting the data // won't work as expected. QMutableListIterator it(indices); @@ -558,11 +559,13 @@ void ExtendedTableWidget::copyMimeData(const QModelIndexList& fromIndices, QMime } m_buffer.push_back(lst); - QString sqlResult; + // TSV text or SQL QString result; - QString htmlResult = ""; - htmlResult.append(""); - htmlResult.append(""); + + // HTML text + QString htmlResult = "" + "" + ""; // The generator-stamp is later used to know whether the data in the system clipboard is still ours. // In that case we will give precedence to our internal copy buffer. @@ -580,8 +583,6 @@ void ExtendedTableWidget::copyMimeData(const QModelIndexList& fromIndices, QMime rowsInIndexes.insert(idx.row()); } - int currentRow = indices.first().row(); - const QString fieldSepText = "\t"; #ifdef Q_OS_WIN const QString rowSepText = "\r\n"; @@ -589,121 +590,137 @@ void ExtendedTableWidget::copyMimeData(const QModelIndexList& fromIndices, QMime const QString rowSepText = "\n"; #endif - QString sqlInsertStatement = QString("INSERT INTO %1 (").arg(QString::fromStdString(m->currentTableName().toString())); + QString sqlInsertStatement; // Table headers if (withHeaders || inSQL) { - htmlResult.append(""); + if (inSQL) + sqlInsertStatement = QString("INSERT INTO %1 (").arg(QString::fromStdString(m->currentTableName().toString())); + else + htmlResult.append(""); int firstColumn = *colsInIndexes.begin(); for(int col : colsInIndexes) { QByteArray headerText = model()->headerData(col, Qt::Horizontal, Qt::EditRole).toByteArray(); if (col != firstColumn) { - result.append(fieldSepText); - htmlResult.append(""); - sqlInsertStatement.append(", "); + if (inSQL) + sqlInsertStatement.append(", "); + else { + result.append(fieldSepText); + htmlResult.append(""); + } + } + if (inSQL) + sqlInsertStatement.append(sqlb::escapeIdentifier(headerText)); + else { + result.append(headerText); + htmlResult.append(headerText); } - - result.append(headerText); - htmlResult.append(headerText); - sqlInsertStatement.append(sqlb::escapeIdentifier(headerText)); } - result.append(rowSepText); - htmlResult.append(""); - sqlInsertStatement.append(") VALUES ("); + if (inSQL) + sqlInsertStatement.append(") VALUES ("); + else { + result.append(rowSepText); + htmlResult.append(""); + } } // Iterate over rows x cols checking if the index actually exists when needed, in order // to support non-rectangular selections. for(const int row : rowsInIndexes) { + + // Beggining of row + if (inSQL) + result.append(sqlInsertStatement); + else + htmlResult.append(""); + for(const int column : colsInIndexes) { const QModelIndex index = indices.first().sibling(row, column); - QString style; + + if (index.column() != *colsInIndexes.begin()) { + // Add text separators + if (inSQL) + result.append(", "); + else + result.append(fieldSepText); + } + if(indices.contains(index)) { QFont font; font.fromString(index.data(Qt::FontRole).toString()); - const QString fontStyle(font.italic() ? "italic" : "normal"); - const QString fontWeigth(font.bold() ? "bold" : "normal"); - const QString fontDecoration(font.underline() ? " text-decoration: underline;" : ""); - const QColor bgColor(index.data(Qt::BackgroundRole).toString()); - const QColor fgColor(index.data(Qt::ForegroundRole).toString()); + const Qt::Alignment align(index.data(Qt::TextAlignmentRole).toInt()); const QString textAlign(CondFormat::alignmentTexts().at(CondFormat::fromCombinedAlignment(align)).toLower()); - style = QString("style=\"font-family: '%1'; font-size: %2pt; font-style: %3; font-weight: %4;%5 " - "background-color: %6; color: %7; text-align: %8\"").arg( - font.family().toHtmlEscaped(), - QString::number(font.pointSize()), - fontStyle, - fontWeigth, - fontDecoration, - bgColor.name(), - fgColor.name(), - textAlign); - } - - // Separators. For first cell, only opening table row tags must be added for the HTML and nothing for the text version. - if (index.row() == *rowsInIndexes.begin() && index.column() == *colsInIndexes.begin()) { - htmlResult.append(QString("").arg(style)); - sqlResult.append(sqlInsertStatement); - } else if (index.row() != currentRow) { - result.append(rowSepText); - htmlResult.append(QString("").arg(style)); - sqlResult.append(");" + rowSepText + sqlInsertStatement); + htmlResult.append(QString("").arg( + font.family().toHtmlEscaped(), // font-family + QString::number(font.pointSize()), // font-size + font.italic() ? "italic" : "normal", // font-style, + font.bold() ? "bold" : "normal", // font-weigth, + font.underline() ? " text-decoration: underline;" : "", // text-decoration, + index.data(Qt::BackgroundRole).toString(), // background-color + index.data(Qt::ForegroundRole).toString(), // color + textAlign)); } else { - result.append(fieldSepText); - htmlResult.append(QString("").arg(style)); - sqlResult.append(", "); + htmlResult.append(""); } - - currentRow = index.row(); - QImage img; - QVariant bArrdata = indices.contains(index) ? index.data(Qt::EditRole) : QVariant(); - - // Table cell data: image? Store it as an embedded image in HTML - if (!inSQL && img.loadFromData(bArrdata.toByteArray())) - { + const QVariant bArrdata = indices.contains(index) ? index.data(Qt::EditRole) : QVariant(); + + if (bArrdata.isNull()) { + // NULL data: NULL in SQL, empty in HTML or text. + if (inSQL) result.append("NULL"); + } else if(!m->isBinary(index)) { + // Text data + QByteArray text = bArrdata.toByteArray(); + + if (inSQL) + result.append(sqlb::escapeString(text)); + else { + result.append(text); + // Table cell data: text + if (text.contains('\n') || text.contains('\t')) + htmlResult.append(QString("
%1
").arg(QString(text).toHtmlEscaped())); + else + htmlResult.append(QString(text).toHtmlEscaped()); + } + } else if (inSQL) { + // Table cell data: binary in SQL. Save as BLOB literal. + result.append(QString("X'%1'").arg(QString(bArrdata.toByteArray().toHex()))); + } else if (img.loadFromData(bArrdata.toByteArray())) { + // Table cell data: image. Store it as an embedded image in HTML QByteArray ba; QBuffer buffer(&ba); buffer.open(QIODevice::WriteOnly); img.save(&buffer, "PNG"); buffer.close(); - QString imageBase64 = ba.toBase64(); - htmlResult.append("\"Image\""); - } else { - if (bArrdata.isNull()) { - sqlResult.append("NULL"); - } else if(!m->isBinary(index)) { - QByteArray text = bArrdata.toByteArray(); + htmlResult.append(QString("\"Image\"") + .arg(QString(ba.toBase64()))); + result.append(index.data(Qt::DisplayRole).toByteArray()); + } - // Table cell data: text - if (text.contains('\n') || text.contains('\t')) - htmlResult.append("
" + QString(text).toHtmlEscaped() + "
"); - else - htmlResult.append(QString(text).toHtmlEscaped()); + // End of column + // Add HTML cell terminator + htmlResult.append(""); + } - result.append(text); - sqlResult.append(sqlb::escapeString(text)); - } else - // Table cell data: binary. Save as BLOB literal in SQL - sqlResult.append( "X'" + bArrdata.toByteArray().toHex() + "'" ); - } + // End of row + if (inSQL) + result.append(QString(");%1").arg(rowSepText)); + else { + result.append(rowSepText); + htmlResult.append(""); } } - sqlResult.append(");"); - - if ( inSQL ) - { - mimeData->setText(sqlResult); - } else { - mimeData->setHtml(htmlResult + ""); - mimeData->setText(result); + if (!inSQL) { + htmlResult.append(""); + mimeData->setHtml(htmlResult); } + mimeData->setText(result); + QApplication::restoreOverrideCursor(); } void ExtendedTableWidget::copy(const bool withHeaders, const bool inSQL ) From 63228b987879a65869c9f58d75a6505b2b3c0b5c Mon Sep 17 00:00:00 2001 From: mgrojo Date: Sat, 22 Jun 2024 20:31:14 +0200 Subject: [PATCH 18/67] Table Browser: further optimizations in copy to clipboard Move some calls out of the nested loop. See issues #3664 and #3632. --- src/ExtendedTableWidget.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/ExtendedTableWidget.cpp b/src/ExtendedTableWidget.cpp index 4f9f377dd..9dcd85094 100644 --- a/src/ExtendedTableWidget.cpp +++ b/src/ExtendedTableWidget.cpp @@ -590,6 +590,7 @@ void ExtendedTableWidget::copyMimeData(const QModelIndexList& fromIndices, QMime const QString rowSepText = "\n"; #endif + int firstColumn = *colsInIndexes.begin(); QString sqlInsertStatement; // Table headers if (withHeaders || inSQL) { @@ -597,7 +598,6 @@ void ExtendedTableWidget::copyMimeData(const QModelIndexList& fromIndices, QMime sqlInsertStatement = QString("INSERT INTO %1 (").arg(QString::fromStdString(m->currentTableName().toString())); else htmlResult.append(""); - int firstColumn = *colsInIndexes.begin(); for(int col : colsInIndexes) { QByteArray headerText = model()->headerData(col, Qt::Horizontal, Qt::EditRole).toByteArray(); @@ -628,7 +628,7 @@ void ExtendedTableWidget::copyMimeData(const QModelIndexList& fromIndices, QMime // to support non-rectangular selections. for(const int row : rowsInIndexes) { - // Beggining of row + // Beginning of row if (inSQL) result.append(sqlInsertStatement); else @@ -637,8 +637,9 @@ void ExtendedTableWidget::copyMimeData(const QModelIndexList& fromIndices, QMime for(const int column : colsInIndexes) { const QModelIndex index = indices.first().sibling(row, column); + const bool isContained = indices.contains(index); - if (index.column() != *colsInIndexes.begin()) { + if (column != firstColumn) { // Add text separators if (inSQL) result.append(", "); @@ -646,7 +647,7 @@ void ExtendedTableWidget::copyMimeData(const QModelIndexList& fromIndices, QMime result.append(fieldSepText); } - if(indices.contains(index)) { + if(isContained) { QFont font; font.fromString(index.data(Qt::FontRole).toString()); @@ -666,7 +667,7 @@ void ExtendedTableWidget::copyMimeData(const QModelIndexList& fromIndices, QMime htmlResult.append(""); } QImage img; - const QVariant bArrdata = indices.contains(index) ? index.data(Qt::EditRole) : QVariant(); + const QVariant bArrdata = isContained ? index.data(Qt::EditRole) : QVariant(); if (bArrdata.isNull()) { // NULL data: NULL in SQL, empty in HTML or text. @@ -708,11 +709,10 @@ void ExtendedTableWidget::copyMimeData(const QModelIndexList& fromIndices, QMime // End of row if (inSQL) - result.append(QString(");%1").arg(rowSepText)); - else { - result.append(rowSepText); + result.append(");"); + else htmlResult.append(""); - } + result.append(rowSepText); } if (!inSQL) { From 78539b177f921f3d5cdeaf0f59b6fe8442688860 Mon Sep 17 00:00:00 2001 From: mgrojo Date: Sun, 23 Jun 2024 00:29:21 +0200 Subject: [PATCH 19/67] Apply spelling fixes found in #3574 to sources and all translation files Except "savepoint" which is correct sqlite parlance. https://sqlite.org/lang_savepoint.html SOCKS5 is the correct term. --- src/Application.cpp | 2 +- src/MainWindow.cpp | 4 ++-- src/ProxyDialog.cpp | 2 +- src/TableBrowser.cpp | 2 +- src/TableBrowser.ui | 4 ++-- src/translations/sqlb_ar_SA.ts | 16 ++++++++-------- src/translations/sqlb_cs.ts | 12 ++++++------ src/translations/sqlb_de.ts | 14 +++++++------- src/translations/sqlb_en_GB.ts | 12 ++++++------ src/translations/sqlb_es_ES.ts | 14 +++++++------- src/translations/sqlb_fa.ts | 12 ++++++------ src/translations/sqlb_fr.ts | 14 +++++++------- src/translations/sqlb_id.ts | 18 +++++++++--------- src/translations/sqlb_it.ts | 16 ++++++++-------- src/translations/sqlb_ja.ts | 14 +++++++------- src/translations/sqlb_ko_KR.ts | 14 +++++++------- src/translations/sqlb_nl.ts | 18 +++++++++--------- src/translations/sqlb_pl.ts | 16 ++++++++-------- src/translations/sqlb_pt_BR.ts | 14 +++++++------- src/translations/sqlb_ro.ts | 18 ++++++++---------- src/translations/sqlb_ru.ts | 12 ++++++------ src/translations/sqlb_sv.ts | 12 ++++++------ src/translations/sqlb_tr.ts | 14 +++++++------- src/translations/sqlb_uk_UA.ts | 12 ++++++------ src/translations/sqlb_zh.ts | 16 ++++++++-------- src/translations/sqlb_zh_TW.ts | 16 ++++++++-------- 26 files changed, 158 insertions(+), 160 deletions(-) diff --git a/src/Application.cpp b/src/Application.cpp index 7c552af55..d47b5b4fa 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -272,7 +272,7 @@ Application::Application(int& argc, char** argv) : if(QFile::exists(arguments().at(i))) fileToOpen = arguments().at(i); else - qWarning() << qPrintable(tr("Invalid option/non-existant file: %1").arg(arguments().at(i))); + qWarning() << qPrintable(tr("Invalid option/non-existent file: %1").arg(arguments().at(i))); } } diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index c3ce01ce4..23b72d129 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -340,7 +340,7 @@ void MainWindow::init() ui->viewProjectToolbarAction->setChecked(!ui->toolbarProject->isHidden()); }); QAction* simplifyLayoutAction = layoutMenu->addAction(tr("Simplify Window Layout")); - simplifyLayoutAction->setShortcut(QKeySequence(tr("Shift+Alt+0"))); + simplifyLayoutAction->setShortcut(QKeySequence(tr("Alt+Shift+0"))); connect(simplifyLayoutAction, &QAction::triggered, this, [=]() { ui->viewMenu->findChild(ui->pragmas->accessibleName())->activate(QAction::Trigger); ui->dockLog->hide(); @@ -371,7 +371,7 @@ void MainWindow::init() statusBusyLabel = new QLabel(ui->statusbar); statusBusyLabel->setEnabled(false); statusBusyLabel->setVisible(false); - statusBusyLabel->setToolTip(tr("The database is currenctly busy.")); + statusBusyLabel->setToolTip(tr("The database is currently busy.")); ui->statusbar->addPermanentWidget(statusBusyLabel); statusStopButton = new QToolButton(ui->statusbar); diff --git a/src/ProxyDialog.cpp b/src/ProxyDialog.cpp index c9e8b63bf..2da7aa506 100644 --- a/src/ProxyDialog.cpp +++ b/src/ProxyDialog.cpp @@ -12,7 +12,7 @@ ProxyDialog::ProxyDialog(QWidget *parent) : ui->comboType->addItem(tr("None"), "none"); ui->comboType->addItem(tr("System settings"), "system"); ui->comboType->addItem(tr("HTTP"), "http"); - ui->comboType->addItem(tr("Socks v5"), "socks5"); + ui->comboType->addItem(tr("SOCKS5"), "socks5"); // Load current settings ui->comboType->setCurrentIndex(ui->comboType->findData(Settings::getValue("proxy", "type").toString())); diff --git a/src/TableBrowser.cpp b/src/TableBrowser.cpp index 22b679f58..2a9b2acc8 100644 --- a/src/TableBrowser.cpp +++ b/src/TableBrowser.cpp @@ -1332,7 +1332,7 @@ void TableBrowser::addRecord() selectTableLine(row); } else { // Error inserting empty row. - // User has to provide values acomplishing the constraints. Open Add Record Dialog. + // User has to provide values accomplishing the constraints. Open Add Record Dialog. insertValues(); } updateRecordsetLabel(); diff --git a/src/TableBrowser.ui b/src/TableBrowser.ui index 4f49c3c13..d54a3dc13 100644 --- a/src/TableBrowser.ui +++ b/src/TableBrowser.ui @@ -610,7 +610,7 @@ 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>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 accomplishing 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> @@ -714,7 +714,7 @@ 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>This pop-up 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> diff --git a/src/translations/sqlb_ar_SA.ts b/src/translations/sqlb_ar_SA.ts index d2526e5d8..6fa3630fe 100644 --- a/src/translations/sqlb_ar_SA.ts +++ b/src/translations/sqlb_ar_SA.ts @@ -285,7 +285,7 @@
- Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 خيار غير صالح/ملف غير موجود: %L1 @@ -4019,8 +4019,8 @@ Are you sure? - Shift+Alt+0 - Shift+Alt+0 + Alt+Shift+0 + Alt+Shift+0 @@ -4039,7 +4039,7 @@ Are you sure? - The database is currenctly busy. + The database is currently busy. قاعدة البيانات مشغولة حاليًا. @@ -5640,8 +5640,8 @@ Please check again. - Socks v5 - Socks v5 + SOCKS5 + SOCKS5
@@ -7389,7 +7389,7 @@ Hold %3Shift and click to jump there - <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>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 accomplishing 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> @@ -7471,7 +7471,7 @@ Hold %3Shift and click to jump there - <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>This pop-up 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> diff --git a/src/translations/sqlb_cs.ts b/src/translations/sqlb_cs.ts index 471f0d479..638e5cd04 100644 --- a/src/translations/sqlb_cs.ts +++ b/src/translations/sqlb_cs.ts @@ -278,7 +278,7 @@ - Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 Neplatná volba/neexistující soubor: %1 @@ -4000,7 +4000,7 @@ Are you sure? - Shift+Alt+0 + Alt+Shift+0 @@ -4020,7 +4020,7 @@ Are you sure? - The database is currenctly busy. + The database is currently busy. @@ -5561,7 +5561,7 @@ Please check again. - Socks v5 + SOCKS5 @@ -7279,7 +7279,7 @@ Hold %3Shift and click to jump there - <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>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 accomplishing 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> @@ -7361,7 +7361,7 @@ Hold %3Shift and click to jump there - <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>This pop-up 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> diff --git a/src/translations/sqlb_de.ts b/src/translations/sqlb_de.ts index 8e90423b5..39d37b8a9 100644 --- a/src/translations/sqlb_de.ts +++ b/src/translations/sqlb_de.ts @@ -315,7 +315,7 @@ - Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 Ungültige Option/nicht vorhandene Datei: %1
@@ -3830,7 +3830,7 @@ Sie können SQL-Anweisungen aus der Schemaspalte nehmen und in den SQL-Editor od - The database is currenctly busy. + The database is currently busy. Die Datenbank ist aktuell beschäftigt. @@ -3964,7 +3964,7 @@ Bei der Antwort NEIN werden die Daten in die SQL-Datei der aktuellen Datenbank i - Shift+Alt+0 + Alt+Shift+0 @@ -5632,8 +5632,8 @@ Bitte erneut prüfen. - Socks v5 - SOCKS v5 + SOCKS5 + SOCKS5 @@ -7377,7 +7377,7 @@ Halten Sie %3Umschalt und klicken Sie, um hierher zu springen - <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>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 accomplishing 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 Beschränkungen Genüge tun. Dieser Dialog wird auch geöffnet, wenn die Option <span style=" font-weight:600;">Neuer Eintrag</span> aufgrund dieser Beschränkungen fehlschlägt.</li></ul></body></html> @@ -7459,7 +7459,7 @@ Halten Sie %3Umschalt und klicken Sie, um hierher zu springen - <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>This pop-up 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-Ansicht, die Sie später durchsuchen oder in SQL-Anweisungen verwenden können.</li></ul></body></html> diff --git a/src/translations/sqlb_en_GB.ts b/src/translations/sqlb_en_GB.ts index f347aac64..57371f558 100644 --- a/src/translations/sqlb_en_GB.ts +++ b/src/translations/sqlb_en_GB.ts @@ -278,7 +278,7 @@ - Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 @@ -3870,12 +3870,12 @@ If you answer no we will attempt to import the data in the SQL file to the curre - Shift+Alt+0 + Alt+Shift+0 - The database is currenctly busy. + The database is currently busy. @@ -5555,7 +5555,7 @@ Please check again. - Socks v5 + SOCKS5 @@ -7008,7 +7008,7 @@ Hold %3Shift and click to jump there - <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>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 accomplishing 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> @@ -7029,7 +7029,7 @@ Hold %3Shift and click to jump there - <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>This pop-up 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> diff --git a/src/translations/sqlb_es_ES.ts b/src/translations/sqlb_es_ES.ts index 44add5d6c..e252ffe6a 100644 --- a/src/translations/sqlb_es_ES.ts +++ b/src/translations/sqlb_es_ES.ts @@ -316,7 +316,7 @@ - Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 Opción inválida o archivo inexistente: %1 @@ -4182,7 +4182,7 @@ Are you sure? - Shift+Alt+0 + Alt+Shift+0 @@ -4202,7 +4202,7 @@ Are you sure? - The database is currenctly busy. + The database is currently busy. La base de datos está ocupada @@ -5646,8 +5646,8 @@ Por favor compruebe que es correcto. - Socks v5 - Socks v5 + SOCKS5 + SOCKS5 @@ -7391,7 +7391,7 @@ Mantenga pulsado %3Mayús. y haga clic para ir ahí - <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>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 accomplishing 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> @@ -7473,7 +7473,7 @@ Mantenga pulsado %3Mayús. y haga clic para ir ahí - <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>This pop-up 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> diff --git a/src/translations/sqlb_fa.ts b/src/translations/sqlb_fa.ts index 611811f8a..90fa329ae 100644 --- a/src/translations/sqlb_fa.ts +++ b/src/translations/sqlb_fa.ts @@ -308,7 +308,7 @@ - Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 @@ -3774,7 +3774,7 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed - The database is currenctly busy. + The database is currently busy. @@ -4073,7 +4073,7 @@ If you answer no we will attempt to import the data in the SQL file to the curre - Shift+Alt+0 + Alt+Shift+0 @@ -5551,7 +5551,7 @@ Please check again. - Socks v5 + SOCKS5 @@ -7183,7 +7183,7 @@ Hold %3Shift and click to jump there - <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>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 accomplishing 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> @@ -7265,7 +7265,7 @@ Hold %3Shift and click to jump there - <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>This pop-up 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> diff --git a/src/translations/sqlb_fr.ts b/src/translations/sqlb_fr.ts index 900195eb3..6ec06f71b 100644 --- a/src/translations/sqlb_fr.ts +++ b/src/translations/sqlb_fr.ts @@ -285,7 +285,7 @@ - Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 Option invalide ou fichier %1 inexistant @@ -3845,7 +3845,7 @@ Vous pouvez faire glisser les instructions SQL d'une ligne d'objet et - The database is currenctly busy. + The database is currently busy. La base de données est actuellement occupée. @@ -3980,7 +3980,7 @@ Si vous répondez non, nous essaierons d'importer les données du fichier S - Shift+Alt+0 + Alt+Shift+0 Maj+Alt+0 @@ -5649,8 +5649,8 @@ Veuillez vérifier à nouveau. - Socks v5 - Socks v5 + SOCKS5 + SOCKS5 @@ -7397,7 +7397,7 @@ Appuyez simultanément sur %3+Maj et cliquez pour arriver ici - <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>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 accomplishing 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 insertion 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> @@ -7479,7 +7479,7 @@ Appuyez simultanément sur %3+Maj et cliquez pour arriver ici - <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>This pop-up 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> diff --git a/src/translations/sqlb_id.ts b/src/translations/sqlb_id.ts index 3b608df1e..b22d3180a 100644 --- a/src/translations/sqlb_id.ts +++ b/src/translations/sqlb_id.ts @@ -285,7 +285,7 @@ - Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 Opsi tidak valid/berkas tidak ada: %1 @@ -4026,7 +4026,7 @@ Anda yakin? - The database is currenctly busy. + The database is currently busy. Basis data saat ini sibuk. @@ -4320,8 +4320,8 @@ Anda yakin ingin menyimpan basis data? - Shift+Alt+0 - Shift+Alt+0 + Alt+Shift+0 + Alt+Shift+0 @@ -5632,8 +5632,8 @@ Harap periksa lagi. - Socks v5 - Socks v5 + SOCKS5 + SOCKS5 @@ -7377,7 +7377,7 @@ Tahan Shift%3 dan klik untuk melompat ke sana - <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>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 accomplishing 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>Tombol ini membuat sebuah record baru dalam basis data. Tahan tombol tetikus untuk membuka sebuah menu pop-up dengan opsi-opsi berbeda:</p><ul><li><span style=" font-weight:600;">Record Baru</span>: menyisipkan sebuah record baru dengan nilai-nilai baku dalam basis data.</li><li><span style=" font-weight:600;">Sisipkan Nilai...</span>: membuka suatu dialog untuk memasukkan nilai-nilai sebelum mereka disisipkan dalam basis data. Ini memungkinkan memasukkan nilai-nilai yang memenuhi konstrain lain. Dialog ini juga dibuka bila opsi <span style=" font-weight:600;">Record Baru</span> gagal karena konstrain ini.</li></ul></body></html> @@ -7459,8 +7459,8 @@ Tahan Shift%3 dan klik untuk melompat ke sana - <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>Menu popup ini menyediakan opsi-opsi berikut yang diterapkan ke tabel yang saat ini diramban dan disaring:</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;">Ekspor ke CSV: opsi ini mengekspor data dari tabel yang diramban sebagaimana saat ini ditampilkan (setelah penyaring, format tampilan, dan urutan kolom) ke sebuah berkas CSV.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Simpan sebagai view: opsi ini menyimpan pengaturan saat ini dari tabel yang diramban (penyaring, format tampilan, dan urutan kolom) sebagai sebuah view SQL yang nanti akan dapat Anda ramban atau pakai dalam pernyataan SQL.</li></ul></body></html> + <html><head/><body><p>This pop-up 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>Menu pop-up ini menyediakan opsi-opsi berikut yang diterapkan ke tabel yang saat ini diramban dan disaring:</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;">Ekspor ke CSV: opsi ini mengekspor data dari tabel yang diramban sebagaimana saat ini ditampilkan (setelah penyaring, format tampilan, dan urutan kolom) ke sebuah berkas CSV.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Simpan sebagai view: opsi ini menyimpan pengaturan saat ini dari tabel yang diramban (penyaring, format tampilan, dan urutan kolom) sebagai sebuah view SQL yang nanti akan dapat Anda ramban atau pakai dalam pernyataan SQL.</li></ul></body></html> diff --git a/src/translations/sqlb_it.ts b/src/translations/sqlb_it.ts index f37a9eea3..900522664 100644 --- a/src/translations/sqlb_it.ts +++ b/src/translations/sqlb_it.ts @@ -315,7 +315,7 @@ - Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 Opzione non valida/file inesistente: %1 @@ -3825,7 +3825,7 @@ Puoi trascinare statement SQL dalla colonna Schema e rilasciarli dentro l'e - The database is currenctly busy. + The database is currently busy. Il database è occupato. @@ -4191,8 +4191,8 @@ Se rispondi di no proveremo ad importare i dati del file SQL all'interno de - Shift+Alt+0 - Shift+Alt+0 + Alt+Shift+0 + Alt+Shift+0 @@ -5633,8 +5633,8 @@ Si prega di ricontrollare. - Socks v5 - Socks v5 + SOCKS5 + SOCKS5 @@ -8624,7 +8624,7 @@ Tieni premuto %3Shift e clicca per saltare lì - <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>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 accomplishing 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> @@ -8706,7 +8706,7 @@ Tieni premuto %3Shift e clicca per saltare lì - <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>This pop-up 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> diff --git a/src/translations/sqlb_ja.ts b/src/translations/sqlb_ja.ts index d8ebfabe4..ca903e611 100644 --- a/src/translations/sqlb_ja.ts +++ b/src/translations/sqlb_ja.ts @@ -316,7 +316,7 @@ - Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 不正なオプション/存在しないファイルです: %1 @@ -3857,7 +3857,7 @@ SQL文をスキーマカラムからSQLエディターや他のアプリケー - Shift+Alt+0 + Alt+Shift+0 @@ -3877,7 +3877,7 @@ SQL文をスキーマカラムからSQLエディターや他のアプリケー - The database is currenctly busy. + The database is currently busy. データベースは現在ビジー状態です。 @@ -5633,8 +5633,8 @@ Please check again. - Socks v5 - Socks v5 + SOCKS5 + SOCKS5 @@ -7380,7 +7380,7 @@ Hold %3Shift and click to jump there - <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>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 accomplishing 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> @@ -7462,7 +7462,7 @@ Hold %3Shift and click to jump there - <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>This pop-up 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> diff --git a/src/translations/sqlb_ko_KR.ts b/src/translations/sqlb_ko_KR.ts index 5ae915506..775b0d59c 100644 --- a/src/translations/sqlb_ko_KR.ts +++ b/src/translations/sqlb_ko_KR.ts @@ -286,7 +286,7 @@ - Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 잘못된 옵션을 사용하였거나 파일이 존재하지 않습니다: %1 @@ -4044,7 +4044,7 @@ Are you sure? - Shift+Alt+0 + Alt+Shift+0 @@ -4064,7 +4064,7 @@ Are you sure? - The database is currenctly busy. + The database is currently busy. 이 데이터베이스는 현재 사용 중입니다. @@ -5628,8 +5628,8 @@ Please check again. - Socks v5 - Socks v5 + SOCKS5 + SOCKS5 @@ -7314,7 +7314,7 @@ Hold %3Shift and click to jump there - <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>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 accomplishing 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> @@ -7412,7 +7412,7 @@ Hold %3Shift and click to jump there - <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>This pop-up 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> diff --git a/src/translations/sqlb_nl.ts b/src/translations/sqlb_nl.ts index 527d652ba..d4a48e093 100644 --- a/src/translations/sqlb_nl.ts +++ b/src/translations/sqlb_nl.ts @@ -285,7 +285,7 @@ - Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 Ongeldige optie of niet bestaand bestand: %1 @@ -3854,7 +3854,7 @@ Je kunt SQL-instructies vanuit de Schema-kolom naar de SQL-bewerker of naar ande - Shift+Alt+0 + Alt+Shift+0 @@ -3874,7 +3874,7 @@ Je kunt SQL-instructies vanuit de Schema-kolom naar de SQL-bewerker of naar ande - The database is currenctly busy. + The database is currently busy. De database is momenteel bezig. @@ -5626,8 +5626,8 @@ Please check again. - Socks v5 - Socks v5 + SOCKS5 + SOCKS5 @@ -7422,8 +7422,8 @@ Houdt %3Shift ingedrukt terwijl je klikt om er naartoe te springen - <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> + <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 accomplishing 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 pop-upmenu 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> @@ -7504,8 +7504,8 @@ Houdt %3Shift ingedrukt terwijl je klikt om er naartoe te springen - <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> + <html><head/><body><p>This pop-up 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 pop-upmenu 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> diff --git a/src/translations/sqlb_pl.ts b/src/translations/sqlb_pl.ts index 0b94e5417..352d06319 100644 --- a/src/translations/sqlb_pl.ts +++ b/src/translations/sqlb_pl.ts @@ -284,7 +284,7 @@ - Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 Nieprawidłowa opcja lub nieistniejący plik: %1 @@ -3836,7 +3836,7 @@ Można także dodawać i usuwać pola z tabeli, a także zmieniać nazwy oraz ro - The database is currenctly busy. + The database is currently busy. Baza danych jest obecnie zajęta. @@ -4238,8 +4238,8 @@ Jeśli nie, to dane zostaną zaimportowane do pliku bieżącej bazy danych. - Shift+Alt+0 - Shift+Alt+0 + Alt+Shift+0 + Alt+Shift+0 @@ -5648,8 +5648,8 @@ Sprawdź go ponownie. - Socks v5 - Socks v5 + SOCKS5 + SOCKS5 @@ -7378,7 +7378,7 @@ Przyciśnij %3Shift i kliknij, aby tu przejść - <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>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 accomplishing 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> @@ -7460,7 +7460,7 @@ Przyciśnij %3Shift i kliknij, aby tu przejść - <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>This pop-up 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> diff --git a/src/translations/sqlb_pt_BR.ts b/src/translations/sqlb_pt_BR.ts index 1146b30fd..6fff6e098 100644 --- a/src/translations/sqlb_pt_BR.ts +++ b/src/translations/sqlb_pt_BR.ts @@ -285,7 +285,7 @@ - Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 Opção inválida/arquivo inexistente: %1 @@ -3063,7 +3063,7 @@ x~y Intervalo: valores entre x e y - The database is currenctly busy. + The database is currently busy. O banco de dados está ocupado. @@ -3148,7 +3148,7 @@ Se você disser que não, tentaremos importar os dados do arquivo SQL para o ban - Shift+Alt+0 + Alt+Shift+0 @@ -5626,8 +5626,8 @@ Todas as suas preferências serão perdidas e os valores padrão serão utilizad - Socks v5 - Socks v5 + SOCKS5 + SOCKS5 @@ -7347,7 +7347,7 @@ Segure %3Shift e clique para ir para lá - <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>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 accomplishing 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> @@ -7429,7 +7429,7 @@ Segure %3Shift e clique para ir para lá - <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>This pop-up 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> diff --git a/src/translations/sqlb_ro.ts b/src/translations/sqlb_ro.ts index 61b7e2e1a..43068c3e6 100644 --- a/src/translations/sqlb_ro.ts +++ b/src/translations/sqlb_ro.ts @@ -287,7 +287,7 @@ - Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 Opțiune invalidă/fișier inexistent: %1 @@ -3885,8 +3885,8 @@ Puteți să glisați instrucțiunile SQL din coloana Schemă și să le plasați - Shift+Alt+0 - Shift+Alt+0 + Alt+Shift+0 + Alt+Shift+0 @@ -3905,8 +3905,7 @@ Puteți să glisați instrucțiunile SQL din coloana Schemă și să le plasați - The database is currenctly busy. - misspelling 'currenctly' -> 'currently' + The database is currently busy. Baza de date este momentan ocupată. @@ -5670,8 +5669,8 @@ Vă rugăm să verificați din nou. - Socks v5 - Socks v5 + SOCKS5 + SOCKS5 @@ -7382,8 +7381,7 @@ Hold %3Shift and click to jump there - <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> - misspelling 'acomplishing' -> 'accomplishing' + <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 accomplishing 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>Acest buton creează o înregistrare nouă în baza de date. Țineți apăsat butonul mouse-ului pentru a deschide un meniu pop-up cu diferite opțiuni:</p><ul><li><span style=" font-weight:600;">Înregistrare Nouă</span>: inserează o înregistrare nouă cu valori implicite în baza de date.</li><li><span style=" font-weight:600;">Inserare Valori...</span>: deschide un dialog pentru introducerea valorilor înainte ca acestea să fie inserate în baza de date. Asta permite introducerea valorilor care îndeplinesc diferitele constrângeri. Acest dialog este, de asemenea, deschis dacă opțiunea <span style=" font-weight:600;">Înregistrare Nouă</span> nu reușește din cauza acestor constrângeri.</li></ul></body></html> @@ -7481,7 +7479,7 @@ Hold %3Shift and click to jump there - <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>This pop-up 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>Acest meniu pop-up oferă următoarele opțiuni care se aplică tabelului navigat și filtrat în prezent:</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ă în CSV: această opțiune exportă datele din tabelul navigat, așa cum este afișate în prezent (după filtre, formate de afișare și coloană de ordine) într-un fișier CSV.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Salvează ca vedere: această opțiune salvează setarea curentă a tabelului navigat (filtre, formate de afișare și coloană de ordine) ca vedere SQL pe care o puteți răsfoi ulterior sau utiliza în instrucțiuni SQL.</li></ul></body></html> diff --git a/src/translations/sqlb_ru.ts b/src/translations/sqlb_ru.ts index 1c0233f13..d44a09f7c 100644 --- a/src/translations/sqlb_ru.ts +++ b/src/translations/sqlb_ru.ts @@ -285,7 +285,7 @@ - Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 @@ -3799,7 +3799,7 @@ You can drag SQL statements from an object row and drop them into other applicat - The database is currenctly busy. + The database is currently busy. @@ -3925,7 +3925,7 @@ If you answer no we will attempt to import the data in the SQL file to the curre - Shift+Alt+0 + Alt+Shift+0 @@ -5607,7 +5607,7 @@ Please check again. - Socks v5 + SOCKS5 @@ -7328,7 +7328,7 @@ Hold %3Shift and click to jump there - <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>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 accomplishing 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> @@ -7410,7 +7410,7 @@ Hold %3Shift and click to jump there - <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>This pop-up 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> diff --git a/src/translations/sqlb_sv.ts b/src/translations/sqlb_sv.ts index 8af7ee3a4..cb434219f 100644 --- a/src/translations/sqlb_sv.ts +++ b/src/translations/sqlb_sv.ts @@ -93,7 +93,7 @@ Application - Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 Felaktig parameter/icke existerande fil: %1 @@ -3016,7 +3016,7 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed - Shift+Alt+0 + Alt+Shift+0 @@ -3032,7 +3032,7 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed - The database is currenctly busy. + The database is currently busy. @@ -4362,7 +4362,7 @@ Please check again. - Socks v5 + SOCKS5 @@ -5714,7 +5714,7 @@ Hold %3Shift and click to jump there Infoga en ny post i nuvarande tabell - <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>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 accomplishing 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> @@ -5786,7 +5786,7 @@ Hold %3Shift and click to jump there - <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>This pop-up 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> diff --git a/src/translations/sqlb_tr.ts b/src/translations/sqlb_tr.ts index 881738130..7cfb2c15a 100644 --- a/src/translations/sqlb_tr.ts +++ b/src/translations/sqlb_tr.ts @@ -285,7 +285,7 @@ - Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 Geçersiz seçenek veya mevcut olmayan dosya: %1 @@ -4038,7 +4038,7 @@ Bunu yapmak istediğinize emin misiniz? - Shift+Alt+0 + Alt+Shift+0 @@ -4058,7 +4058,7 @@ Bunu yapmak istediğinize emin misiniz? - The database is currenctly busy. + The database is currently busy. Verştabanı şu anda meşgul. @@ -5619,8 +5619,8 @@ Please check again. - Socks v5 - Socks v5 + SOCKS5 + SOCKS5 @@ -7352,7 +7352,7 @@ Buraya atlamak için %3Shift'e basılı tutun ve tıklayın - <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>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 accomplishing 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> @@ -7434,7 +7434,7 @@ Buraya atlamak için %3Shift'e basılı tutun ve tıklayın - <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>This pop-up 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> diff --git a/src/translations/sqlb_uk_UA.ts b/src/translations/sqlb_uk_UA.ts index b1015ac1c..b83dfe5cc 100644 --- a/src/translations/sqlb_uk_UA.ts +++ b/src/translations/sqlb_uk_UA.ts @@ -272,7 +272,7 @@ - Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 Невірна опція/файл не існує: %1 @@ -3892,7 +3892,7 @@ If you answer no we will attempt to import the data in the SQL file to the curre - The database is currenctly busy. + The database is currently busy. @@ -4199,7 +4199,7 @@ Are you sure you want to save the database? - Shift+Alt+0 + Alt+Shift+0 @@ -5576,7 +5576,7 @@ Please check again. - Socks v5 + SOCKS5 @@ -7297,7 +7297,7 @@ Hold %3Shift and click to jump there - <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>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 accomplishing 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> @@ -7379,7 +7379,7 @@ Hold %3Shift and click to jump there - <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>This pop-up 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> diff --git a/src/translations/sqlb_zh.ts b/src/translations/sqlb_zh.ts index a913c66f6..260710661 100644 --- a/src/translations/sqlb_zh.ts +++ b/src/translations/sqlb_zh.ts @@ -285,7 +285,7 @@ - Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 无效选项/不存在的文件: %1 @@ -3884,7 +3884,7 @@ Are you sure? - The database is currenctly busy. + The database is currently busy. 数据库正忙。 @@ -4114,8 +4114,8 @@ If you answer no we will attempt to import the data in the SQL file to the curre - Shift+Alt+0 - Shift+Alt+0 + Alt+Shift+0 + Alt+Shift+0 @@ -5624,8 +5624,8 @@ Please check again. - Socks v5 - Socks v5 + SOCKS5 + SOCKS5 @@ -7367,7 +7367,7 @@ Hold %3Shift and click to jump there - <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>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 accomplishing 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> @@ -7449,7 +7449,7 @@ Hold %3Shift and click to jump there - <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>This pop-up 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> diff --git a/src/translations/sqlb_zh_TW.ts b/src/translations/sqlb_zh_TW.ts index b1eb42bc9..1cac3ca68 100644 --- a/src/translations/sqlb_zh_TW.ts +++ b/src/translations/sqlb_zh_TW.ts @@ -285,7 +285,7 @@ - Invalid option/non-existant file: %1 + Invalid option/non-existent file: %1 無效選項或不存在的檔案:%1 @@ -3825,7 +3825,7 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed - The database is currenctly busy. + The database is currently busy. 資料庫目前忙碌中。 @@ -4013,8 +4013,8 @@ Are you sure? - Shift+Alt+0 - Shift+Alt+0 + Alt+Shift+0 + Alt+Shift+0 @@ -5627,8 +5627,8 @@ Please check again. - Socks v5 - Socks v5 + SOCKS5 + SOCKS5 @@ -7367,7 +7367,7 @@ Hold %3Shift and click to jump there - <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>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 accomplishing 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> @@ -7449,7 +7449,7 @@ Hold %3Shift and click to jump there - <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>This pop-up 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> From 223ccc4ace7edc48fbb33d00056d79cb354214fb Mon Sep 17 00:00:00 2001 From: mgrojo Date: Sun, 23 Jun 2024 22:16:08 +0200 Subject: [PATCH 20/67] Table Browser: progress dialog in copy to clipboard A progress dialog appears if the copy operation is going to take more than 2 seconds. The operation can be aborted. See issues #3664 and #3632. --- src/ExtendedTableWidget.cpp | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/ExtendedTableWidget.cpp b/src/ExtendedTableWidget.cpp index 9dcd85094..04f53337d 100644 --- a/src/ExtendedTableWidget.cpp +++ b/src/ExtendedTableWidget.cpp @@ -26,6 +26,7 @@ #include #include #include +#include #include @@ -506,7 +507,6 @@ void ExtendedTableWidget::reloadSettings() void ExtendedTableWidget::copyMimeData(const QModelIndexList& fromIndices, QMimeData* mimeData, const bool withHeaders, const bool inSQL) { - QApplication::setOverrideCursor(Qt::WaitCursor); QModelIndexList indices = fromIndices; // Remove all indices from hidden columns, because if we don't, we might copy data from hidden columns as well which is very @@ -624,6 +624,11 @@ void ExtendedTableWidget::copyMimeData(const QModelIndexList& fromIndices, QMime } } + QProgressDialog progress(this); + progress.setWindowModality(Qt::ApplicationModal); + progress.setRange(*rowsInIndexes.begin(), *rowsInIndexes.end()); + progress.setMinimumDuration(2000); + // Iterate over rows x cols checking if the index actually exists when needed, in order // to support non-rectangular selections. for(const int row : rowsInIndexes) { @@ -713,6 +718,12 @@ void ExtendedTableWidget::copyMimeData(const QModelIndexList& fromIndices, QMime else htmlResult.append(""); result.append(rowSepText); + + progress.setValue(row); + // Abort the operation if the user pressed ESC key or Cancel button + if (progress.wasCanceled()) { + return; + } } if (!inSQL) { @@ -720,7 +731,6 @@ void ExtendedTableWidget::copyMimeData(const QModelIndexList& fromIndices, QMime mimeData->setHtml(htmlResult); } mimeData->setText(result); - QApplication::restoreOverrideCursor(); } void ExtendedTableWidget::copy(const bool withHeaders, const bool inSQL ) From e1475e1f8e63432232f682b56bd7f473d6cc05da Mon Sep 17 00:00:00 2001 From: mgrojo Date: Mon, 24 Jun 2024 16:32:20 +0200 Subject: [PATCH 21/67] Color theme: reuse current-line color for fold margin Otherwise it doesn't match the dark/light theme preference. See issue #3668 --- src/ExtendedScintilla.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ExtendedScintilla.cpp b/src/ExtendedScintilla.cpp index aefe03df6..882b1590a 100644 --- a/src/ExtendedScintilla.cpp +++ b/src/ExtendedScintilla.cpp @@ -147,6 +147,10 @@ void ExtendedScintilla::reloadCommonSettings() setMarginsForegroundColor(QColor(0x00, 0x00, 0x00)); break; } + // Reuse color of current line background in fold margin. + QColor currentLineColor (Settings::getValue("syntaxhighlighter", "currentline_colour").toString()); + setFoldMarginColors(currentLineColor, currentLineColor); + setPaper(Settings::getValue("syntaxhighlighter", "background_colour").toString()); setColor(Settings::getValue("syntaxhighlighter", "foreground_colour").toString()); setMatchedBraceBackgroundColor(Settings::getValue("syntaxhighlighter", "highlight_colour").toString()); From b64fb292f657f7b68e92165f8e6b45fb392222ee Mon Sep 17 00:00:00 2001 From: mgrojo Date: Mon, 24 Jun 2024 21:02:27 +0200 Subject: [PATCH 22/67] Progress dialogs: remove context help button on Windows This can be removed on Qt 6, since according to Qt documentation: > In Qt 6, WindowContextHelpButtonHint will not be set by default. See issue #3664 --- src/ExtendedTableWidget.cpp | 3 +++ src/ImportCsvDialog.cpp | 3 +++ src/MainWindow.cpp | 3 +++ src/RemoteNetwork.cpp | 3 +++ src/sqlitedb.cpp | 6 ++++++ src/sqlitetablemodel.cpp | 3 +++ 6 files changed, 21 insertions(+) diff --git a/src/ExtendedTableWidget.cpp b/src/ExtendedTableWidget.cpp index 04f53337d..7e260c7e6 100644 --- a/src/ExtendedTableWidget.cpp +++ b/src/ExtendedTableWidget.cpp @@ -626,6 +626,9 @@ void ExtendedTableWidget::copyMimeData(const QModelIndexList& fromIndices, QMime QProgressDialog progress(this); progress.setWindowModality(Qt::ApplicationModal); + // Disable context help button on Windows + progress.setWindowFlags(progress.windowFlags() + & ~Qt::WindowContextHelpButtonHint); progress.setRange(*rowsInIndexes.begin(), *rowsInIndexes.end()); progress.setMinimumDuration(2000); diff --git a/src/ImportCsvDialog.cpp b/src/ImportCsvDialog.cpp index 11745394d..0db20844f 100644 --- a/src/ImportCsvDialog.cpp +++ b/src/ImportCsvDialog.cpp @@ -151,6 +151,9 @@ class CSVImportProgress : public CSVProgress totalFileSize(filesize) { m_pProgressDlg->setWindowModality(Qt::ApplicationModal); + // Disable context help button on Windows + m_pProgressDlg->setWindowFlags(m_pProgressDlg->windowFlags() + & ~Qt::WindowContextHelpButtonHint); } CSVImportProgress(const CSVImportProgress&) = delete; diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 23b72d129..a4e0f0cc0 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -3279,6 +3279,9 @@ void MainWindow::editEncryption() // process might take some time. QProgressDialog progress(this); progress.setCancelButton(nullptr); + // Disable context help button on Windows + progress.setWindowFlags(progress.windowFlags() + & ~Qt::WindowContextHelpButtonHint); progress.setWindowModality(Qt::ApplicationModal); progress.show(); qApp->processEvents(); diff --git a/src/RemoteNetwork.cpp b/src/RemoteNetwork.cpp index b1bf5be13..005d39974 100644 --- a/src/RemoteNetwork.cpp +++ b/src/RemoteNetwork.cpp @@ -354,6 +354,9 @@ void RemoteNetwork::prepareProgressDialog(QNetworkReply* reply, bool upload, con if(!m_progress) m_progress = new QProgressDialog(); m_progress->reset(); + // Disable context help button on Windows + m_progress->setWindowFlags(m_progress->windowFlags() + & ~Qt::WindowContextHelpButtonHint); m_progress->setWindowModality(Qt::NonModal); m_progress->setCancelButtonText(tr("Cancel")); diff --git a/src/sqlitedb.cpp b/src/sqlitedb.cpp index 342ab93e4..e57db3f9d 100644 --- a/src/sqlitedb.cpp +++ b/src/sqlitedb.cpp @@ -879,6 +879,9 @@ bool DBBrowserDB::dump(const QString& filePath, QProgressDialog progress(tr("Exporting database to SQL file..."), tr("Cancel"), 0, static_cast(numRecordsTotal)); + // Disable context help button on Windows + progress.setWindowFlags(progress.windowFlags() + & ~Qt::WindowContextHelpButtonHint); progress.setWindowModality(Qt::ApplicationModal); progress.show(); qApp->processEvents(); @@ -1112,6 +1115,9 @@ bool DBBrowserDB::executeMultiSQL(QByteArray query, bool dirty, bool log) QProgressDialog progress(tr("Executing SQL..."), tr("Cancel"), 0, 100); progress.setWindowModality(Qt::ApplicationModal); + // Disable context help button on Windows + progress.setWindowFlags(progress.windowFlags() + & ~Qt::WindowContextHelpButtonHint); progress.show(); // Execute the statement by looping until SQLite stops giving back a tail string diff --git a/src/sqlitetablemodel.cpp b/src/sqlitetablemodel.cpp index aa84a77ad..9c5e85290 100644 --- a/src/sqlitetablemodel.cpp +++ b/src/sqlitetablemodel.cpp @@ -997,6 +997,9 @@ bool SqliteTableModel::completeCache () const progress.setCancelButton(cancelButton); progress.setWindowModality(Qt::ApplicationModal); + // Disable context help button on Windows + progress.setWindowFlags(progress.windowFlags() + & ~Qt::WindowContextHelpButtonHint); progress.show(); waitUntilIdle(); From 6bd4546bd7b61270a5f04e6aefbed32a442118cf Mon Sep 17 00:00:00 2001 From: SeongTae Jeong Date: Sun, 21 Jul 2024 07:29:09 +0900 Subject: [PATCH 23/67] Prepare to build v3.13.0 --- .github/workflows/build-appimage.yml | 29 +++++----------------------- .github/workflows/build-macos.yml | 14 +++----------- .github/workflows/build-windows.yml | 6 +++--- .github/workflows/cppcmake.yml | 2 +- .github/workflows/release.yml | 8 +++++++- CMakeLists.txt | 2 +- installer/macos/nightly.json | 4 ++-- installer/macos/notarize.sh | 14 ++------------ 8 files changed, 24 insertions(+), 55 deletions(-) diff --git a/.github/workflows/build-appimage.yml b/.github/workflows/build-appimage.yml index eeb07bad8..fc2753007 100644 --- a/.github/workflows/build-appimage.yml +++ b/.github/workflows/build-appimage.yml @@ -5,13 +5,12 @@ on: jobs: build: - name: ${{ matrix.os }} - SQLCipher ${{ matrix.sqlcipher }} + name: ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - os: [ubuntu-20.04] - sqlcipher: ["0", "1"] + os: [ubuntu-24.04] steps: - name: Checkout uses: actions/checkout@v4 @@ -21,23 +20,10 @@ jobs: sudo apt update sudo apt install libqcustomplot-dev libqscintilla2-qt5-dev libqt5svg5 libsqlcipher-dev libsqlite3-dev qttools5-dev - - if: matrix.sqlcipher == 0 - name: Build SQLite - run: | - TARBALL=$(curl -s https://sqlite.org/download.html | awk '// {print}' | grep 'sqlite-autoconf' | cut -d ',' -f 3) - SHA3=$(curl -s https://sqlite.org/download.html | awk '// {print}' | grep 'sqlite-autoconf' | cut -d ',' -f 5) - curl -LsS -o sqlite.tar.gz https://sqlite.org/${TARBALL} - VERIFY=$(openssl dgst -sha3-256 sqlite.tar.gz | cut -d ' ' -f 2) - if [ "$SHA3" != "$VERIFY" ]; then exit 1 ; fi - tar -xzf sqlite.tar.gz && cd sqlite-autoconf-* - - CPPFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_MAX_VARIABLE_NUMBER=250000 -DSQLITE_ENABLE_RTREE=1 -DSQLITE_ENABLE_GEOPOLY=1 -DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_FTS3_PARENTHESIS=1 -DSQLITE_ENABLE_FTS5=1 -DSQLITE_ENABLE_STAT4=1 -DSQLITE_ENABLE_JSON1=1 -DSQLITE_SOUNDEX=1 -DSQLITE_ENABLE_MATH_FUNCTIONS=1 -DSQLITE_MAX_ATTACHED=125 -DSQLITE_ENABLE_MEMORY_MANAGEMENT=1 -DSQLITE_ENABLE_SNAPSHOT=1" ./configure --enable-shared=no - make -j2 && sudo make install -j2 - - name: Configure build run: | mkdir appbuild && mkdir appdir && cd appbuild - cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX:PATH=../appdir/usr -Wno-dev -DFORCE_INTERNAL_QSCINTILLA=ON -Dsqlcipher=${{ matrix.sqlcipher }} .. + cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX:PATH=../appdir/usr -Wno-dev -DFORCE_INTERNAL_QSCINTILLA=ON -Dsqlcipher=1 .. - name: Build working-directory: ./appbuild @@ -47,21 +33,16 @@ jobs: run: | wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage" chmod a+x linuxdeployqt-continuous-x86_64.AppImage - export VERSION=v3.13.0-rc3 + export VERSION=v3.13.0 ./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -appimage - name: Rename a file run: | for i in DB_Browser_for_SQLite*; do mv "$i" "${i//_/.}"; done - if [ "${{ matrix.sqlcipher }}" = "1" ]; then - export FILE=$(ls DB.Browser.for.SQLite*.AppImage) - export FILE=${FILE/SQLite/SQLCipher} - mv DB.Browser.for.SQLite*.AppImage $FILE - fi - name: Upload artifacts uses: actions/upload-artifact@v4 with: - name: build-artifacts-${{ matrix.os }}-${{ matrix.sqlcipher }} + name: build-artifacts-${{ matrix.os }} path: DB.Browser.for.*.AppImage retention-days: 1 diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 8bba2516b..b2d2d476e 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -5,13 +5,12 @@ on: jobs: build: - name: ${{ matrix.os }} - SQLCipher ${{ matrix.sqlcipher }} + name: ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [macos-14] - sqlcipher: ["0", "1"] env: MACOSX_DEPLOYMENT_TARGET: 10.13 steps: @@ -37,14 +36,8 @@ jobs: - name: Configure build run: | - if [ "${{ matrix.sqlcipher }}" = "1" ]; then - sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLCipher-v3.13.0-rc3"/' CMakeLists.txt - else - sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLite-v3.13.0-rc3"/' CMakeLists.txt - fi - mkdir build && cd build - cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64" -DcustomTap=1 -DENABLE_TESTING=ON -Dsqlcipher=${{ matrix.sqlcipher }} .. + cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64" -DcustomTap=1 -DENABLE_TESTING=ON -Dsqlcipher=1 .. - name: Build working-directory: ./build @@ -69,7 +62,6 @@ jobs: KEYCHAIN_PW: ${{ secrets.MACOS_CODESIGN_KEYCHAIN_PW }} P12: ${{ secrets.MACOS_CODESIGN_P12 }} P12_PW: ${{ secrets.MACOS_CODESIGN_P12_PW }} - SQLCIPHER: ${{ matrix.sqlcipher }} TEAM_ID: ${{ secrets.MACOS_CODESIGN_TEAM_ID }} - if: steps.notarization.conclusion != 'skipped' @@ -81,5 +73,5 @@ jobs: name: Upload artifacts uses: actions/upload-artifact@v4 with: - name: build-artifacts-${{ matrix.os }}-${{ matrix.sqlcipher }} + name: build-artifacts-${{ matrix.os }} path: DB.Browser.for.*.dmg diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 8379b9abc..259cf19ca 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -143,7 +143,7 @@ jobs: cd installer/windows ./build.cmd "${{ matrix.arch }}".ToLower() $ARCH="${{ matrix.arch }}".ToLower() - mv DB.Browser.for.SQLite-*.msi "DB.Browser.for.SQLite-v3.13.0-rc3-$ARCH.msi" + mv DB.Browser.for.SQLite-*.msi "DB.Browser.for.SQLite-v3.13.0-$ARCH.msi" - if: github.event_name != 'pull_request' name: Upload artifacts for code signing with SignPath @@ -163,14 +163,14 @@ jobs: organization-id: '${{ secrets.SIGNPATH_ORGANIZATION_ID }}' output-artifact-directory: .\installer\windows project-slug: 'sqlitebrowser' - signing-policy-slug: 'test-signing' + signing-policy-slug: 'release-signing' wait-for-completion: true - if: github.event_name != 'pull_request' name: Create ZIP run: | $ARCH="${{ matrix.arch }}".ToLower() - $FILENAME_FORMAT="DB.Browser.for.SQLite-v3.13.0-rc3-$ARCH.zip" + $FILENAME_FORMAT="DB.Browser.for.SQLite-v3.13.0-$ARCH.zip" Start-Process msiexec.exe -ArgumentList "/a $(dir installer\windows\DB.Browser.for.SQLite-*.msi) /q TARGETDIR=$PWD\target\" -Wait if ("${{ matrix.arch }}" -eq "Win32") { move target\System\* "target\DB Browser for SQLite\" diff --git a/.github/workflows/cppcmake.yml b/.github/workflows/cppcmake.yml index 4113679a5..749670121 100644 --- a/.github/workflows/cppcmake.yml +++ b/.github/workflows/cppcmake.yml @@ -1,4 +1,4 @@ -name: Build v3.13.0-rc3 +name: Build v3.13.0 on: workflow_dispatch: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 19f4fccc8..5bc0b806a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,7 +4,7 @@ on: workflow_call: env: - tag_name: "v3.13.0-rc3" + tag_name: "v3.13.0" jobs: release: @@ -24,6 +24,11 @@ jobs: with: path: target + - name: Clear artifacts + uses: geekyeggo/delete-artifact@v5 + with: + name: build-artifacts-* + - name: Remove unsigned Windows build run: rm -rfv target/*unsigned* @@ -39,5 +44,6 @@ jobs: uses: softprops/action-gh-release@v2 with: files: target/* + draft: true prerelease: true tag_name: ${{ env.tag_name }} diff --git a/CMakeLists.txt b/CMakeLists.txt index c0c4c1e0f..a581da5a6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.15) project(sqlitebrowser - VERSION 3.13.99 + VERSION 3.13.0 DESCRIPTION "GUI editor for SQLite databases" ) diff --git a/installer/macos/nightly.json b/installer/macos/nightly.json index 5b8dac3c0..3f5545841 100644 --- a/installer/macos/nightly.json +++ b/installer/macos/nightly.json @@ -1,6 +1,6 @@ { "title": "Install DB4S", - "icon": "macapp-nightly.icns", + "icon": "macapp.icns", "icon-size": 128, "background": "background.png", "format": "ULFO", @@ -11,7 +11,7 @@ } }, "contents": [ - { "x": 90, "y": 180, "type": "file", "path": "DB Browser for SQLite Nightly.app" }, + { "x": 90, "y": 180, "type": "file", "path": "DB Browser for SQLite.app" }, { "x": 395, "y": 180, "type": "link", "path": "/Applications" }, { "x": 90, "y": 380, "type": "position", "path": ".background" }, diff --git a/installer/macos/notarize.sh b/installer/macos/notarize.sh index 6e94ed6c0..8ecb2f4e9 100644 --- a/installer/macos/notarize.sh +++ b/installer/macos/notarize.sh @@ -74,18 +74,8 @@ done mv build/*.app installer/macos # Create the DMG -export DATE=$(date +%Y%m%d) - -if [ "$SQLCIPHER" = "1" ]; then - sed -i "" 's/"DB Browser for SQLCipher Nightly.app"/"DB Browser for SQLCipher-v3.13.0-rc3.app"/' installer/macos/sqlcipher-nightly.json - TARGET="DB.Browser.for.SQLCipher-v3.13.0-rc3.dmg" - appdmg --quiet installer/macos/sqlcipher-nightly.json "$TARGET" -else - # Continuous without SQLCipher - sed -i "" 's/"DB Browser for SQLite Nightly.app"/"DB Browser for SQLite-v3.13.0-rc3.app"/' installer/macos/nightly.json - TARGET="DB.Browser.for.SQLite-v3.13.0-rc3.dmg" - appdmg --quiet installer/macos/nightly.json "$TARGET" -fi +TARGET="DB.Browser.for.SQLite-v3.13.0.dmg" +appdmg --quiet installer/macos/nightly.json "$TARGET" codesign --sign "$DEV_ID" --verbose --options=runtime --timestamp "$TARGET" codesign -vvv --deep --strict --verbose=4 "$TARGET" From 65b67aee8efc3f5405d62bc7cc0f53723ed50d07 Mon Sep 17 00:00:00 2001 From: SeongTae Jeong Date: Sun, 21 Jul 2024 07:34:40 +0900 Subject: [PATCH 24/67] Install libfuse2t64 during build AppImage --- .github/workflows/build-appimage.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-appimage.yml b/.github/workflows/build-appimage.yml index fc2753007..1bbce1868 100644 --- a/.github/workflows/build-appimage.yml +++ b/.github/workflows/build-appimage.yml @@ -17,8 +17,9 @@ jobs: - name: Install dependencies run: | + sudo add-apt-repository universe sudo apt update - sudo apt install libqcustomplot-dev libqscintilla2-qt5-dev libqt5svg5 libsqlcipher-dev libsqlite3-dev qttools5-dev + sudo apt install libfuse2t64 libqcustomplot-dev libqscintilla2-qt5-dev libqt5svg5 libsqlcipher-dev libsqlite3-dev qttools5-dev - name: Configure build run: | From 777fe12ce060ad787a6274cca67f815a800156d8 Mon Sep 17 00:00:00 2001 From: SeongTae Jeong Date: Sun, 21 Jul 2024 07:42:30 +0900 Subject: [PATCH 25/67] Downgrade AppImage build runner OS version --- .github/workflows/build-appimage.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-appimage.yml b/.github/workflows/build-appimage.yml index 1bbce1868..fb68124ae 100644 --- a/.github/workflows/build-appimage.yml +++ b/.github/workflows/build-appimage.yml @@ -10,16 +10,15 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-24.04] + os: [ubuntu-20.04] steps: - name: Checkout uses: actions/checkout@v4 - name: Install dependencies run: | - sudo add-apt-repository universe sudo apt update - sudo apt install libfuse2t64 libqcustomplot-dev libqscintilla2-qt5-dev libqt5svg5 libsqlcipher-dev libsqlite3-dev qttools5-dev + sudo apt install libqcustomplot-dev libqscintilla2-qt5-dev libqt5svg5 libsqlcipher-dev libsqlite3-dev qttools5-dev - name: Configure build run: | From 343bc1ad10081dfd9d255a352a9dbae6af6b50de Mon Sep 17 00:00:00 2001 From: SeongTae Jeong Date: Wed, 31 Jul 2024 09:48:02 +0000 Subject: [PATCH 26/67] Replace `http` with `https` in the `AboutDialog` and `MainWindow` --- CHANGELOG.md | 8 ++++++++ src/AboutDialog.ui | 2 +- src/MainWindow.ui | 4 ++-- src/translations/sqlb_ar_SA.ts | 2 +- src/translations/sqlb_cs.ts | 2 +- src/translations/sqlb_de.ts | 4 ++-- src/translations/sqlb_en_GB.ts | 2 +- src/translations/sqlb_es_ES.ts | 4 ++-- src/translations/sqlb_fa.ts | 2 +- src/translations/sqlb_fr.ts | 2 +- src/translations/sqlb_id.ts | 2 +- src/translations/sqlb_it.ts | 4 ++-- src/translations/sqlb_ja.ts | 4 ++-- src/translations/sqlb_ko_KR.ts | 4 ++-- src/translations/sqlb_nl.ts | 2 +- src/translations/sqlb_pl.ts | 2 +- src/translations/sqlb_pt_BR.ts | 2 +- src/translations/sqlb_ro.ts | 2 +- src/translations/sqlb_ru.ts | 2 +- src/translations/sqlb_sv.ts | 2 +- src/translations/sqlb_tr.ts | 2 +- src/translations/sqlb_uk_UA.ts | 2 +- src/translations/sqlb_zh.ts | 2 +- src/translations/sqlb_zh_TW.ts | 2 +- 24 files changed, 37 insertions(+), 29 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fd687545..6a62d5146 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -121,6 +121,7 @@ See "Highlights on user-visible changes" on https://github.com/sqlitebrowser/sql - Fix error messages in Execute SQL tab (c0adfe43) - Fix altering tables with generated as columns (39e9eb0e) +<<<<<<< HEAD ### Changed - Show a useful icon in SQL tabs (#2153) (81b9b5a1) @@ -269,6 +270,13 @@ See "Highlights on user-visible changes" on https://github.com/sqlitebrowser/sql - Plot: show x and y values on a tooltip when hovering over the plot (ce176be2) - Export: use QSaveFile to get better error check on full partition (496d39db) - appimage: Update to SQLite 3.41.1 (9426509ac8a8422d8b164c2acfb6a849ea37e306) +||||||| parent of 9832a52d (Replace `http` with `https` in the `AboutDialog` and `MainWindow`) +- _none_ +======= +- _none_ +#### etc. +- Replace `http` with `https` in the `AboutDialog` and `MainWindow`. +>>>>>>> 9832a52d (Replace `http` with `https` in the `AboutDialog` and `MainWindow`) ### Removed - diff --git a/src/AboutDialog.ui b/src/AboutDialog.ui index d5b3b0d47..f4619e981 100644 --- a/src/AboutDialog.ui +++ b/src/AboutDialog.ui @@ -87,7 +87,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop diff --git a/src/MainWindow.ui b/src/MainWindow.ui index 68f044d1a..6be488ed1 100644 --- a/src/MainWindow.ui +++ b/src/MainWindow.ui @@ -194,7 +194,7 @@ You can drag SQL statements from an object row and drop them into other applicat - <html><head/><body><p>Auto Vacuum <a href="http://www.sqlite.org/pragma.html#pragma_auto_vacuum"><img src=":/icons/whatis"/></a></p></body></html> + <html><head/><body><p>Auto Vacuum <a href="https://www.sqlite.org/pragma.html#pragma_auto_vacuum"><img src=":/icons/whatis"/></a></p></body></html> true @@ -229,7 +229,7 @@ You can drag SQL statements from an object row and drop them into other applicat - <html><head/><body><p>Automatic Index <a href="http://www.sqlite.org/pragma.html#pragma_automatic_index"><img src=":/icons/whatis"/></a></p></body></html> + <html><head/><body><p>Automatic Index <a href="https://www.sqlite.org/pragma.html#pragma_automatic_index"><img src=":/icons/whatis"/></a></p></body></html> true diff --git a/src/translations/sqlb_ar_SA.ts b/src/translations/sqlb_ar_SA.ts index 6fa3630fe..04f506b4f 100644 --- a/src/translations/sqlb_ar_SA.ts +++ b/src/translations/sqlb_ar_SA.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_cs.ts b/src/translations/sqlb_cs.ts index 638e5cd04..f2df39a23 100644 --- a/src/translations/sqlb_cs.ts +++ b/src/translations/sqlb_cs.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_de.ts b/src/translations/sqlb_de.ts index 39d37b8a9..df75b775a 100644 --- a/src/translations/sqlb_de.ts +++ b/src/translations/sqlb_de.ts @@ -15,8 +15,8 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> - <html><head/><body><p>DB-Browser für SQLite ist eine freie Open-Source-Anwendung mit GUI zum Erstellen, Entwerfen und Bearbeiten von SQLite-Datenbanken.</p><p>Die Anwendung ist sowohl unter der Mozilla Public License Version 2 als auch der GNU General Public License Version 3 or later verfügbar. Modifikationen oder Weitergabe sind unter Beachtung der Bedingungen dieser Lizenzen möglich.</p><p>Siehe <a href="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> und <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> für Details.</p><p>Weitere Informationen über diese Anwendung gibt es auf unserer Webseite: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">Diese Software verwendet das Qt-Toolkit unter der GPL/LGPL Qt Toolkit, welches unter </span><a href="http://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a> verfügbar ist. <span style=" font-size:small;"><br/>Zugehörige Lizenzbedingungen und Informationen gibt es unter </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"></span></p><p><span style=" font-size:8pt;">Wir verwenden die nalgeon/sqlean-Bibliothek für die Unterstützung von SQLite-Erweiterungen.<br/>Diese Bibliothek ist unter der MIT license verfügbar; mehr Informationen gibt es unter:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">Zudem wird das Pastel SVG Iconset von Michael Buckley verwendet, das unter der Creative Commons Attribution Share Alike 4.0 Lizenz steht.<br/>Siehe </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> für weitere Details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB-Browser für SQLite ist eine freie Open-Source-Anwendung mit GUI zum Erstellen, Entwerfen und Bearbeiten von SQLite-Datenbanken.</p><p>Die Anwendung ist sowohl unter der Mozilla Public License Version 2 als auch der GNU General Public License Version 3 or later verfügbar. Modifikationen oder Weitergabe sind unter Beachtung der Bedingungen dieser Lizenzen möglich.</p><p>Siehe <a href="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> und <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> für Details.</p><p>Weitere Informationen über diese Anwendung gibt es auf unserer Webseite: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">Diese Software verwendet das Qt-Toolkit unter der GPL/LGPL Qt Toolkit, welches unter </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a> verfügbar ist. <span style=" font-size:small;"><br/>Zugehörige Lizenzbedingungen und Informationen gibt es unter </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"></span></p><p><span style=" font-size:8pt;">Wir verwenden die nalgeon/sqlean-Bibliothek für die Unterstützung von SQLite-Erweiterungen.<br/>Diese Bibliothek ist unter der MIT license verfügbar; mehr Informationen gibt es unter:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">Zudem wird das Pastel SVG Iconset von Michael Buckley verwendet, das unter der Creative Commons Attribution Share Alike 4.0 Lizenz steht.<br/>Siehe </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> für weitere Details.</span></p></body></html> diff --git a/src/translations/sqlb_en_GB.ts b/src/translations/sqlb_en_GB.ts index 57371f558..09df735a8 100644 --- a/src/translations/sqlb_en_GB.ts +++ b/src/translations/sqlb_en_GB.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_es_ES.ts b/src/translations/sqlb_es_ES.ts index e252ffe6a..c7908863e 100644 --- a/src/translations/sqlb_es_ES.ts +++ b/src/translations/sqlb_es_ES.ts @@ -15,8 +15,8 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> - <html><head/><body><p><em>DB Browser for SQLite</em> es una herramienta visual gratuita y de código abierto que se utiliza para crear, diseñar y editar archivos de bases de datos SQLite.</p><p>Tiene licencia doble bajo la Licencia Pública de Mozilla versión 2, así como la Licencia Pública General de GNU versión 3 o posterior. Puede modificarlo o redistribuirlo bajo las condiciones de estas licencias.</p><p>Vea <a href="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> y <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> para los detalles.</p><p>Para obtener más información sobre este programa, visite nuestra página en: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">Esta aplicación usa el Qt Toolkit GPL/LGPL de </span><a href="http://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>Vea </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> para los detalles y los términos de licencia.</span></p><p><span style=" font-size:8pt;">Utilizamos la biblioteca nalgeon/sqlen para el soporte de extensiones SQLite.<br/>Esta biblioteca se distribuye bajo la licencia MIT, vea lo siguiente para más información:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">También utiliza el conjunto de iconos SVG de Michael Buckley bajo licencia Creative Commons Attribution Share Alike 4.0.<br/>Vea </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> para los detalles.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p><em>DB Browser for SQLite</em> es una herramienta visual gratuita y de código abierto que se utiliza para crear, diseñar y editar archivos de bases de datos SQLite.</p><p>Tiene licencia doble bajo la Licencia Pública de Mozilla versión 2, así como la Licencia Pública General de GNU versión 3 o posterior. Puede modificarlo o redistribuirlo bajo las condiciones de estas licencias.</p><p>Vea <a href="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> y <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> para los detalles.</p><p>Para obtener más información sobre este programa, visite nuestra página en: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">Esta aplicación usa el Qt Toolkit GPL/LGPL de </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>Vea </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> para los detalles y los términos de licencia.</span></p><p><span style=" font-size:8pt;">Utilizamos la biblioteca nalgeon/sqlen para el soporte de extensiones SQLite.<br/>Esta biblioteca se distribuye bajo la licencia MIT, vea lo siguiente para más información:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">También utiliza el conjunto de iconos SVG de Michael Buckley bajo licencia Creative Commons Attribution Share Alike 4.0.<br/>Vea </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> para los detalles.</span></p></body></html> diff --git a/src/translations/sqlb_fa.ts b/src/translations/sqlb_fa.ts index 90fa329ae..207186f77 100644 --- a/src/translations/sqlb_fa.ts +++ b/src/translations/sqlb_fa.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_fr.ts b/src/translations/sqlb_fr.ts index 6ec06f71b..498c59e24 100644 --- a/src/translations/sqlb_fr.ts +++ b/src/translations/sqlb_fr.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_id.ts b/src/translations/sqlb_id.ts index b22d3180a..fadbda6e9 100644 --- a/src/translations/sqlb_id.ts +++ b/src/translations/sqlb_id.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_it.ts b/src/translations/sqlb_it.ts index 900522664..0a3e9ce37 100644 --- a/src/translations/sqlb_it.ts +++ b/src/translations/sqlb_it.ts @@ -15,8 +15,8 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> - <html><head/><body><p>DB Browser for SQLite è uno strumento visuale open source e freeware utilizzato per creare, progettare ed editare files di database SQLite.</p><p>È licenziato sia sotto la Mozilla Public License Version 2, che la GNU General Public License Version 3 o successive. Puoi modificare o redistribuirlo rispettando le condizioni di queste licenze.</p><p>Visita <a href="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> e <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> per i dettagli.</p><p>Per ulteriori informazioni su questo applicativo si prega di visitare il nostro sito: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">Questo software utilizza la versione GPL/LGPL del Toolkit Qt da: </span><a href="http://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>Visita: </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> per i termini della licenza ed informazioni.</span></p><p><span style=" font-size:8pt;">Utilizziamo la libreria nalgeon/sqlean per il supporto alle estensioni SQLite.<br/>Questa libreria è licenziata tramite la licenza MIT, per ulteriori informazioni visita:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">Utilizziamo anche il set di icone Pastel SVG di Michael Buckley tramite la licenza Creative Commons Attribution Share Alike 4.0.<br/>Visita: </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> per i dettagli.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB Browser for SQLite è uno strumento visuale open source e freeware utilizzato per creare, progettare ed editare files di database SQLite.</p><p>È licenziato sia sotto la Mozilla Public License Version 2, che la GNU General Public License Version 3 o successive. Puoi modificare o redistribuirlo rispettando le condizioni di queste licenze.</p><p>Visita <a href="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> e <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> per i dettagli.</p><p>Per ulteriori informazioni su questo applicativo si prega di visitare il nostro sito: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">Questo software utilizza la versione GPL/LGPL del Toolkit Qt da: </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>Visita: </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> per i termini della licenza ed informazioni.</span></p><p><span style=" font-size:8pt;">Utilizziamo la libreria nalgeon/sqlean per il supporto alle estensioni SQLite.<br/>Questa libreria è licenziata tramite la licenza MIT, per ulteriori informazioni visita:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">Utilizziamo anche il set di icone Pastel SVG di Michael Buckley tramite la licenza Creative Commons Attribution Share Alike 4.0.<br/>Visita: </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> per i dettagli.</span></p></body></html> diff --git a/src/translations/sqlb_ja.ts b/src/translations/sqlb_ja.ts index ca903e611..33b5bfa97 100644 --- a/src/translations/sqlb_ja.ts +++ b/src/translations/sqlb_ja.ts @@ -15,8 +15,8 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</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="https://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>このプログラムの更なる情報を得るには、私たちのウェブサイトを訪れてください:<a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://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;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>ライセンス条項や情報は </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> をご覧ください。</span></p><p><span style=" font-size:8pt;">このソフトウェアはSQLite拡張サポートのため、nalgeon/sqlean library を使用しています。<br/>このライブラリはMITライセンスです。更なる情報は以下をご覧ください:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">また、Michael Buckley の Pastel SVG icon set を Creative Commons Attribution Share Alike 4.0 license の元に使用しています。<br/>詳細は </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> をご覧ください。</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://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>このプログラムの更なる情報を得るには、私たちのウェブサイトを訪れてください:<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="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>ライセンス条項や情報は </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> をご覧ください。</span></p><p><span style=" font-size:8pt;">このソフトウェアはSQLite拡張サポートのため、nalgeon/sqlean library を使用しています。<br/>このライブラリはMITライセンスです。更なる情報は以下をご覧ください:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">また、Michael Buckley の Pastel SVG icon set を Creative Commons Attribution Share Alike 4.0 license の元に使用しています。<br/>詳細は </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> をご覧ください。</span></p></body></html> diff --git a/src/translations/sqlb_ko_KR.ts b/src/translations/sqlb_ko_KR.ts index 775b0d59c..ad150addc 100644 --- a/src/translations/sqlb_ko_KR.ts +++ b/src/translations/sqlb_ko_KR.ts @@ -16,8 +16,8 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> - <html><head/><body><p>DB Browser for SQLite는 데이터베이스 파일을 생성, 디자인 및 편집하는 데 사용되는 오픈 소스 프리웨어 시각 도구입니다.</p><p>Mozilla Public License 버전 2와 GNU General Public License 버전 3 이상에 따라 이중 라이선스가 적용됩니다. 이러한 라이선스 조건에 따라 수정하거나 재배포할 수 있습니다.</p><p>자세한 사항은 <a href="https://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>이 프로그램에 대한 자세한 내용은 웹사이트에서 확인하세요: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">이 소프트웨어는 다음의 GPL/LGPL Qt 툴킷을 사용합니다.</span><a href="http://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;"> https://qt-project.org/</span></a><span style=" font-size:small;"><br/>자세한 라이센스 약관 및 정보는 </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;">를 확인하세요.</span></p><p><span style=" font-size:8pt;">저희는 SQLite 확장 지원을 위해 nalgeon/sqlean 라이브러리를 사용합니다.<br/>이 라이브러리는 MIT 라이선스에 따라 라이선스가 부여되며, 자세한 내용은 다음을 참조하세요:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">또한 크리에이티브 커먼즈 저작자표시 동일조건변경허락 4.0 라이선스에 따라 Michael Buckley가 설정한 파스텔 SVG 아이콘을 사용합니다.<br/>자세한 사항은 </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> 을 확인하세요.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB Browser for SQLite는 데이터베이스 파일을 생성, 디자인 및 편집하는 데 사용되는 오픈 소스 프리웨어 시각 도구입니다.</p><p>Mozilla Public License 버전 2와 GNU General Public License 버전 3 이상에 따라 이중 라이선스가 적용됩니다. 이러한 라이선스 조건에 따라 수정하거나 재배포할 수 있습니다.</p><p>자세한 사항은 <a href="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://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>이 프로그램에 대한 자세한 내용은 웹사이트에서 확인하세요: <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 툴킷을 사용합니다.</span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;"> https://qt-project.org/</span></a><span style=" font-size:small;"><br/>자세한 라이센스 약관 및 정보는 </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;">를 확인하세요.</span></p><p><span style=" font-size:8pt;">저희는 SQLite 확장 지원을 위해 nalgeon/sqlean 라이브러리를 사용합니다.<br/>이 라이브러리는 MIT 라이선스에 따라 라이선스가 부여되며, 자세한 내용은 다음을 참조하세요:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">또한 크리에이티브 커먼즈 저작자표시 동일조건변경허락 4.0 라이선스에 따라 Michael Buckley가 설정한 파스텔 SVG 아이콘을 사용합니다.<br/>자세한 사항은 </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> 을 확인하세요.</span></p></body></html> diff --git a/src/translations/sqlb_nl.ts b/src/translations/sqlb_nl.ts index d4a48e093..3fbd910c9 100644 --- a/src/translations/sqlb_nl.ts +++ b/src/translations/sqlb_nl.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_pl.ts b/src/translations/sqlb_pl.ts index 352d06319..51ceeb989 100644 --- a/src/translations/sqlb_pl.ts +++ b/src/translations/sqlb_pl.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_pt_BR.ts b/src/translations/sqlb_pt_BR.ts index 6fff6e098..c4c1f9546 100644 --- a/src/translations/sqlb_pt_BR.ts +++ b/src/translations/sqlb_pt_BR.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_ro.ts b/src/translations/sqlb_ro.ts index 43068c3e6..64f0c5656 100644 --- a/src/translations/sqlb_ro.ts +++ b/src/translations/sqlb_ro.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_ru.ts b/src/translations/sqlb_ru.ts index d44a09f7c..03a7c75ba 100644 --- a/src/translations/sqlb_ru.ts +++ b/src/translations/sqlb_ru.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_sv.ts b/src/translations/sqlb_sv.ts index cb434219f..456514e51 100644 --- a/src/translations/sqlb_sv.ts +++ b/src/translations/sqlb_sv.ts @@ -12,7 +12,7 @@ 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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_tr.ts b/src/translations/sqlb_tr.ts index 7cfb2c15a..5aed6c325 100644 --- a/src/translations/sqlb_tr.ts +++ b/src/translations/sqlb_tr.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_uk_UA.ts b/src/translations/sqlb_uk_UA.ts index b83dfe5cc..cfbed44e4 100644 --- a/src/translations/sqlb_uk_UA.ts +++ b/src/translations/sqlb_uk_UA.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_zh.ts b/src/translations/sqlb_zh.ts index 260710661..24960ad62 100644 --- a/src/translations/sqlb_zh.ts +++ b/src/translations/sqlb_zh.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_zh_TW.ts b/src/translations/sqlb_zh_TW.ts index 1cac3ca68..ba5213c8c 100644 --- a/src/translations/sqlb_zh_TW.ts +++ b/src/translations/sqlb_zh_TW.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">http://sqlitebrowser.org</span></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; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> From e317fae2b2632e7f0117c20f6fc7bb216cb88dc7 Mon Sep 17 00:00:00 2001 From: hchiper Date: Sun, 4 Aug 2024 16:27:48 +0200 Subject: [PATCH 27/67] Marked QLabel and ComboBox texts as translatable in 'Edit Prgama' QTabWidget --- src/MainWindow.ui | 70 +++++++++++++++++++++++------------------------ 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/src/MainWindow.ui b/src/MainWindow.ui index 6be488ed1..2dac1b408 100644 --- a/src/MainWindow.ui +++ b/src/MainWindow.ui @@ -194,7 +194,7 @@ You can drag SQL statements from an object row and drop them into other applicat - <html><head/><body><p>Auto Vacuum <a href="https://www.sqlite.org/pragma.html#pragma_auto_vacuum"><img src=":/icons/whatis"/></a></p></body></html> + <html><head/><body><p>Auto Vacuum <a href="https://www.sqlite.org/pragma.html#pragma_auto_vacuum"><img src=":/icons/whatis"/></a></p></body></html> true @@ -211,17 +211,17 @@ You can drag SQL statements from an object row and drop them into other applicat - None + None - Full + Full - Incremental + Incremental @@ -229,7 +229,7 @@ You can drag SQL statements from an object row and drop them into other applicat - <html><head/><body><p>Automatic Index <a href="https://www.sqlite.org/pragma.html#pragma_automatic_index"><img src=":/icons/whatis"/></a></p></body></html> + <html><head/><body><p>Automatic Index <a href="https://www.sqlite.org/pragma.html#pragma_automatic_index"><img src=":/icons/whatis"/></a></p></body></html> true @@ -249,7 +249,7 @@ You can drag SQL statements from an object row and drop them into other applicat - <html><head/><body><p>Case Sensitive Like <a href="https://www.sqlite.org/pragma.html#pragma_case_sensitive_like"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p>Case Sensitive Like <a href="https://www.sqlite.org/pragma.html#pragma_case_sensitive_like"><img src=":/icons/whatis"/></a></a></p></body></html> true @@ -272,7 +272,7 @@ You can drag SQL statements from an object row and drop them into other applicat - <html><head/><body><p>Checkpoint Full FSYNC <a href="https://www.sqlite.org/pragma.html#pragma_checkpoint_fullfsync"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p>Checkpoint Full FSYNC <a href="https://www.sqlite.org/pragma.html#pragma_checkpoint_fullfsync"><img src=":/icons/whatis"/></a></a></p></body></html> true @@ -292,7 +292,7 @@ You can drag SQL statements from an object row and drop them into other applicat - <html><head/><body><p>Foreign Keys <a href="https://www.sqlite.org/pragma.html#pragma_foreign_keys"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p>Foreign Keys <a href="https://www.sqlite.org/pragma.html#pragma_foreign_keys"><img src=":/icons/whatis"/></a></a></p></body></html> true @@ -312,7 +312,7 @@ You can drag SQL statements from an object row and drop them into other applicat - <html><head/><body><p>Full FSYNC <a href="https://www.sqlite.org/pragma.html#pragma_fullfsync"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p>Full FSYNC <a href="https://www.sqlite.org/pragma.html#pragma_fullfsync"><img src=":/icons/whatis"/></a></a></p></body></html> true @@ -332,7 +332,7 @@ You can drag SQL statements from an object row and drop them into other applicat - <html><head/><body><p>Ignore Check Constraints <a href="https://www.sqlite.org/pragma.html#pragma_ignore_check_constraints"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p>Ignore Check Constraints <a href="https://www.sqlite.org/pragma.html#pragma_ignore_check_constraints"><img src=":/icons/whatis"/></a></a></p></body></html> true @@ -352,7 +352,7 @@ You can drag SQL statements from an object row and drop them into other applicat - <html><head/><body><p>Journal Mode <a href="https://www.sqlite.org/pragma.html#pragma_journal_mode"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p>Journal Mode <a href="https://www.sqlite.org/pragma.html#pragma_journal_mode"><img src=":/icons/whatis"/></a></a></p></body></html> true @@ -366,32 +366,32 @@ You can drag SQL statements from an object row and drop them into other applicat - Delete + Delete - Truncate + Truncate - Persist + Persist - Memory + Memory - WAL + WAL - Off + Off @@ -399,7 +399,7 @@ You can drag SQL statements from an object row and drop them into other applicat - <html><head/><body><p>Journal Size Limit <a href="https://www.sqlite.org/pragma.html#pragma_journal_size_limit"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p>Journal Size Limit <a href="https://www.sqlite.org/pragma.html#pragma_journal_size_limit"><img src=":/icons/whatis"/></a></a></p></body></html> true @@ -422,7 +422,7 @@ You can drag SQL statements from an object row and drop them into other applicat - <html><head/><body><p>Locking Mode <a href="https://www.sqlite.org/pragma.html#pragma_locking_mode"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p>Locking Mode <a href="https://www.sqlite.org/pragma.html#pragma_locking_mode"><img src=":/icons/whatis"/></a></a></p></body></html> true @@ -436,12 +436,12 @@ You can drag SQL statements from an object row and drop them into other applicat - Normal + Normal - Exclusive + Exclusive @@ -449,7 +449,7 @@ You can drag SQL statements from an object row and drop them into other applicat - <html><head/><body><p>Max Page Count <a href="https://www.sqlite.org/pragma.html#pragma_max_page_count"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p>Max Page Count <a href="https://www.sqlite.org/pragma.html#pragma_max_page_count"><img src=":/icons/whatis"/></a></a></p></body></html> true @@ -469,7 +469,7 @@ You can drag SQL statements from an object row and drop them into other applicat - <html><head/><body><p>Page Size <a href="https://www.sqlite.org/pragma.html#pragma_page_size"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p>Page Size <a href="https://www.sqlite.org/pragma.html#pragma_page_size"><img src=":/icons/whatis"/></a></a></p></body></html> true @@ -526,7 +526,7 @@ You can drag SQL statements from an object row and drop them into other applicat - <html><head/><body><p>Recursive Triggers <a href="https://www.sqlite.org/pragma.html#pragma_recursive_triggers"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p>Recursive Triggers <a href="https://www.sqlite.org/pragma.html#pragma_recursive_triggers"><img src=":/icons/whatis"/></a></a></p></body></html> true @@ -546,7 +546,7 @@ You can drag SQL statements from an object row and drop them into other applicat - <html><head/><body><p>Secure Delete <a href="https://www.sqlite.org/pragma.html#pragma_secure_delete"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p>Secure Delete <a href="https://www.sqlite.org/pragma.html#pragma_secure_delete"><img src=":/icons/whatis"/></a></a></p></body></html> true @@ -566,7 +566,7 @@ You can drag SQL statements from an object row and drop them into other applicat - <html><head/><body><p>Synchronous <a href="https://www.sqlite.org/pragma.html#pragma_synchronous"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p>Synchronous <a href="https://www.sqlite.org/pragma.html#pragma_synchronous"><img src=":/icons/whatis"/></a></a></p></body></html> true @@ -580,17 +580,17 @@ You can drag SQL statements from an object row and drop them into other applicat - Off + Off - Normal + Normal - Full + Full @@ -598,7 +598,7 @@ You can drag SQL statements from an object row and drop them into other applicat - <html><head/><body><p>Temp Store <a href="https://www.sqlite.org/pragma.html#pragma_temp_store"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p>Temp Store <a href="https://www.sqlite.org/pragma.html#pragma_temp_store"><img src=":/icons/whatis"/></a></a></p></body></html> true @@ -612,17 +612,17 @@ You can drag SQL statements from an object row and drop them into other applicat - Default + Default - File + File - Memory + Memory @@ -630,7 +630,7 @@ You can drag SQL statements from an object row and drop them into other applicat - <html><head/><body><p>User Version <a href="https://www.sqlite.org/pragma.html#pragma_user_version"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p>User Version <a href="https://www.sqlite.org/pragma.html#pragma_user_version"><img src=":/icons/whatis"/></a></a></p></body></html> true @@ -650,7 +650,7 @@ You can drag SQL statements from an object row and drop them into other applicat - <html><head/><body><p>WAL Auto Checkpoint <a href="https://www.sqlite.org/pragma.html#pragma_wal_autocheckpoint"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p>WAL Auto Checkpoint <a href="https://www.sqlite.org/pragma.html#pragma_wal_autocheckpoint"><img src=":/icons/whatis"/></a></a></p></body></html> true From 0d00785ae9fe3a79d179e973a263869ab909cfc8 Mon Sep 17 00:00:00 2001 From: mgrojo Date: Sun, 4 Aug 2024 18:57:42 +0200 Subject: [PATCH 28/67] Return numeric values from model when appropriate When the EditRole is requested, the column type is numeric, and the stored value is numeric, the returned variant is a number (double or long-long). That allows differentiating the value for a SQL copy/paste operation. See issue #1952. --- src/ExtendedTableWidget.cpp | 17 ++++++++++++++--- src/sqlitetablemodel.cpp | 13 +++++++++++-- 2 files changed, 25 insertions(+), 5 deletions(-) diff --git a/src/ExtendedTableWidget.cpp b/src/ExtendedTableWidget.cpp index 7e260c7e6..1c9b32457 100644 --- a/src/ExtendedTableWidget.cpp +++ b/src/ExtendedTableWidget.cpp @@ -684,9 +684,20 @@ void ExtendedTableWidget::copyMimeData(const QModelIndexList& fromIndices, QMime // Text data QByteArray text = bArrdata.toByteArray(); - if (inSQL) - result.append(sqlb::escapeString(text)); - else { + if (inSQL) { + // Escape string only if it isn't a number. + switch(bArrdata.type()) { + case QVariant::Double: + case QVariant::Int: + case QVariant::LongLong: + case QVariant::UInt: + case QVariant::ULongLong: + result.append(text); + break; + default: + result.append(sqlb::escapeString(text)); + } + } else { result.append(text); // Table cell data: text if (text.contains('\n') || text.contains('\t')) diff --git a/src/sqlitetablemodel.cpp b/src/sqlitetablemodel.cpp index 9c5e85290..fb75f3743 100644 --- a/src/sqlitetablemodel.cpp +++ b/src/sqlitetablemodel.cpp @@ -361,9 +361,18 @@ QVariant SqliteTableModel::data(const QModelIndex &index, int role) const } } } else if(role == Qt::EditRole) { - if(!row_available) + if(!row_available || data.isNull()) return QVariant(); - return decode(data); + QVariant decodedData = decode(data); + // For the edit role, return the data according to its column type if possible. + if(m_vDataTypes.at(column) == SQLITE_INTEGER && + decodedData.canConvert(QMetaType::LongLong)) { + decodedData.convert(QMetaType::LongLong); + } else if(m_vDataTypes.at(column) == SQLITE_FLOAT && + decodedData.canConvert(QMetaType::Double)) { + decodedData.convert(QMetaType::Double); + } + return decodedData; } else if(role == Qt::FontRole) { QFont font = m_font; if(!row_available || data.isNull() || isBinary(data)) From a3bc4c2034751cd0d510b7c67f5333fc3c6b9505 Mon Sep 17 00:00:00 2001 From: mgrojo Date: Mon, 5 Aug 2024 11:53:33 +0200 Subject: [PATCH 29/67] Fix "Argument missing" error in Korean translation See issues #3635 and #3692 --- src/translations/sqlb_ko_KR.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/translations/sqlb_ko_KR.ts b/src/translations/sqlb_ko_KR.ts index ad150addc..9882c2eca 100644 --- a/src/translations/sqlb_ko_KR.ts +++ b/src/translations/sqlb_ko_KR.ts @@ -7743,7 +7743,7 @@ Hold %3Shift and click to jump there %L1 - %L2 of %L3 - L1 - %L2의 %L3 + %L1 - %L2의 %L3 From c322299c17e50a03bb5a1cd7edbb9d1eb431861d Mon Sep 17 00:00:00 2001 From: hchiper Date: Mon, 5 Aug 2024 14:22:15 +0200 Subject: [PATCH 30/67] Restored notr='true' for values in MainWindow.ui --- src/MainWindow.ui | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/MainWindow.ui b/src/MainWindow.ui index 2dac1b408..6f7259d32 100644 --- a/src/MainWindow.ui +++ b/src/MainWindow.ui @@ -211,17 +211,17 @@ You can drag SQL statements from an object row and drop them into other applicat - None + None - Full + Full - Incremental + Incremental @@ -366,32 +366,32 @@ You can drag SQL statements from an object row and drop them into other applicat - Delete + Delete - Truncate + Truncate - Persist + Persist - Memory + Memory - WAL + WAL - Off + Off @@ -436,12 +436,12 @@ You can drag SQL statements from an object row and drop them into other applicat - Normal + Normal - Exclusive + Exclusive @@ -580,17 +580,17 @@ You can drag SQL statements from an object row and drop them into other applicat - Off + Off - Normal + Normal - Full + Full @@ -612,17 +612,17 @@ You can drag SQL statements from an object row and drop them into other applicat - Default + Default - File + File - Memory + Memory From f52bb79d9a89577c363a7199b23a0d7013c1dd48 Mon Sep 17 00:00:00 2001 From: mgrojo Date: Fri, 9 Aug 2024 13:02:20 +0200 Subject: [PATCH 31/67] Edit Pragmas: separate HTML labels from translatable strings Reorganize the layout for better look. # Conflicts: # src/MainWindow.ui --- src/MainWindow.ui | 915 +++++++++++++++++++++++++++++++++++----------- 1 file changed, 706 insertions(+), 209 deletions(-) diff --git a/src/MainWindow.ui b/src/MainWindow.ui index 6f7259d32..a5649f270 100644 --- a/src/MainWindow.ui +++ b/src/MainWindow.ui @@ -178,21 +178,27 @@ You can drag SQL statements from an object row and drop them into other applicat true + + Qt::AlignCenter + - 0 + 153 0 - 640 - 526 + 329 + 510 - - - QFormLayout::ExpandingFieldsGrow - - - + + + 0 + 0 + + + + + <html><head/><body><p>Auto Vacuum <a href="https://www.sqlite.org/pragma.html#pragma_auto_vacuum"><img src=":/icons/whatis"/></a></p></body></html> @@ -235,134 +241,179 @@ You can drag SQL statements from an object row and drop them into other applicat true - checkboxPragmaAutomaticIndex + comboboxPragmaTempStore - - + + - + Secure Delete - - - - - - <html><head/><body><p>Case Sensitive Like <a href="https://www.sqlite.org/pragma.html#pragma_case_sensitive_like"><img src=":/icons/whatis"/></a></a></p></body></html> + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter true - checkboxPragmaCaseSensitiveLike + checkboxPragmaSecureDelete - - - - 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. + + + + + 0 + 0 + - + <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_wal_autocheckpoint"><img src=":/icons/whatis"/></a></p></body></html> - - - - - - <html><head/><body><p>Checkpoint Full FSYNC <a href="https://www.sqlite.org/pragma.html#pragma_checkpoint_fullfsync"><img src=":/icons/whatis"/></a></a></p></body></html> + + Qt::AlignCenter true - checkboxPragmaCheckpointFullFsync - - - - - - - + spinPragmaWalAutoCheckpoint - + - <html><head/><body><p>Foreign Keys <a href="https://www.sqlite.org/pragma.html#pragma_foreign_keys"><img src=":/icons/whatis"/></a></a></p></body></html> + Case Sensitive Like + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter true - checkboxPragmaForeignKeys + checkboxPragmaCaseSensitiveLike - - + + + + + 0 + 0 + + - + <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_journal_mode"><img src=":/icons/whatis"/></a></p></body></html> + + + Qt::AlignCenter + + + true + + + comboboxPragmaJournalMode - - + + + + + 0 + 0 + + - <html><head/><body><p>Full FSYNC <a href="https://www.sqlite.org/pragma.html#pragma_fullfsync"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_secure_delete"><img src=":/icons/whatis"/></a></p></body></html> + + + Qt::AlignCenter true - checkboxPragmaFullFsync + checkboxPragmaSecureDelete - - + + + + + 0 + 0 + + - + <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_synchronous"><img src=":/icons/whatis"/></a></p></body></html> + + + Qt::AlignCenter + + + true + + + comboboxPragmaSynchronous - - + + - <html><head/><body><p>Ignore Check Constraints <a href="https://www.sqlite.org/pragma.html#pragma_ignore_check_constraints"><img src=":/icons/whatis"/></a></a></p></body></html> + Journal Mode + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter true - checkboxPragmaIgnoreCheckConstraints + comboboxPragmaJournalMode - - + + - + Journal Size Limit + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + true + + + spinPragmaJournalSizeLimit - - + + - <html><head/><body><p>Journal Mode <a href="https://www.sqlite.org/pragma.html#pragma_journal_mode"><img src=":/icons/whatis"/></a></a></p></body></html> + Recursive Triggers + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter true - comboboxPragmaJournalMode + checkboxPragmaRecursiveTriggers - + @@ -396,222 +447,456 @@ You can drag SQL statements from an object row and drop them into other applicat - - + + + + + 0 + 0 + + - <html><head/><body><p>Journal Size Limit <a href="https://www.sqlite.org/pragma.html#pragma_journal_size_limit"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_fullfsync"><img src=":/icons/whatis"/></a></p></body></html> + + + Qt::AlignCenter true - spinPragmaJournalSizeLimit + checkboxPragmaFullFsync - - - - -1 - - - 100000 + + + + + 0 + 0 + - - - - - <html><head/><body><p>Locking Mode <a href="https://www.sqlite.org/pragma.html#pragma_locking_mode"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_journal_size_limit"><img src=":/icons/whatis"/></a></p></body></html> + + + Qt::AlignCenter true - comboboxPragmaLockingMode + spinPragmaJournalSizeLimit - - - - - Normal - - - - - Exclusive - - - - - - + + - <html><head/><body><p>Max Page Count <a href="https://www.sqlite.org/pragma.html#pragma_max_page_count"><img src=":/icons/whatis"/></a></a></p></body></html> + Page Size + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter true - spinPragmaMaxPageCount + comboPragmaPageSize - - - - 2000000000 + + + + + 0 + 0 + - - - - - <html><head/><body><p>Page Size <a href="https://www.sqlite.org/pragma.html#pragma_page_size"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_case_sensitive_like"><img src=":/icons/whatis"/></a></p></body></html> + + + Qt::AlignCenter true - comboPragmaPageSize + checkboxPragmaCaseSensitiveLike - - - - - 512 - - - - - 1024 - - - - - 2048 - - - - - 4096 - - - - - 8192 - - - - - 16384 - - - - - 32768 - - - - - 65536 - - + + + + + - - + + - <html><head/><body><p>Recursive Triggers <a href="https://www.sqlite.org/pragma.html#pragma_recursive_triggers"><img src=":/icons/whatis"/></a></a></p></body></html> + Foreign Keys + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter true - checkboxPragmaRecursiveTriggers + checkboxPragmaForeignKeys - - + + - - + + - <html><head/><body><p>Secure Delete <a href="https://www.sqlite.org/pragma.html#pragma_secure_delete"><img src=":/icons/whatis"/></a></a></p></body></html> + - - true + + + + + + - - checkboxPragmaSecureDelete + + + + + + - - + + + + 2147483647 + + + + + - - + + + + + 0 + 0 + + - <html><head/><body><p>Synchronous <a href="https://www.sqlite.org/pragma.html#pragma_synchronous"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_ignore_check_constraints"><img src=":/icons/whatis"/></a></p></body></html> + + + Qt::AlignCenter true - comboboxPragmaSynchronous + checkboxPragmaIgnoreCheckConstraints - - - - - Off - - - - - Normal - - - - - Full - - - - - - + + + + + 0 + 0 + + - <html><head/><body><p>Temp Store <a href="https://www.sqlite.org/pragma.html#pragma_temp_store"><img src=":/icons/whatis"/></a></a></p></body></html> + <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_automatic_index"><img src=":/icons/whatis"/></a></p></body></html> + + + Qt::AlignCenter true - comboboxPragmaTempStore + checkboxPragmaAutomaticIndex - - - - + + + + + + + + + + + + 0 + 0 + + + + <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_page_size"><img src=":/icons/whatis"/></a></p></body></html> + + + Qt::AlignCenter + + + true + + + comboPragmaPageSize + + + + + + + + 0 + 0 + + + + <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_auto_vacuum"><img src=":/icons/whatis"/></a></p></body></html> + + + Qt::AlignCenter + + + true + + + Qt::LinksAccessibleByMouse + + + comboboxPragmaAutoVacuum + + + + + + + + 0 + 0 + + + + <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_recursive_triggers"><img src=":/icons/whatis"/></a></p></body></html> + + + Qt::AlignCenter + + + true + + + checkboxPragmaRecursiveTriggers + + + + + + + + 0 + 0 + + + + <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_temp_store"><img src=":/icons/whatis"/></a></p></body></html> + + + Qt::AlignCenter + + + true + + + comboboxPragmaTempStore + + + + + + + + 0 + 0 + + + + <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_checkpoint_fullfsync"><img src=":/icons/whatis"/></a></p></body></html> + + + Qt::AlignCenter + + + true + + + checkboxPragmaCheckpointFullFsync + + + + + + + Auto Vacuum + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + true + + + Qt::LinksAccessibleByMouse + + + comboboxPragmaAutoVacuum + + + + + + + 10000 + + + + + + + Max Page Count + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + true + + + spinPragmaMaxPageCount + + + + + + + + 0 + 0 + + + + <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_locking_mode"><img src=":/icons/whatis"/></a></p></body></html> + + + Qt::AlignCenter + + + true + + + comboboxPragmaLockingMode + + + + + + + + Normal + + + + + Exclusive + + + + + + + + Checkpoint Full FSYNC + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + true + + + checkboxPragmaCheckpointFullFsync + + + + + + + + 0 + 0 + + + + <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_foreign_keys"><img src=":/icons/whatis"/></a></p></body></html> + + + Qt::AlignCenter + + + true + + + checkboxPragmaForeignKeys + + + + + + + + Off + + + + + Normal + + + + + Full + + + + + + + + Default @@ -627,30 +912,112 @@ You can drag SQL statements from an object row and drop them into other applicat - - + + - <html><head/><body><p>User Version <a href="https://www.sqlite.org/pragma.html#pragma_user_version"><img src=":/icons/whatis"/></a></a></p></body></html> + Automatic Index + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter true - spinPragmaUserVersion + checkboxPragmaAutomaticIndex - - + + - 2147483647 + 2000000000 - + + + + + 0 + 0 + + + + <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_user_version"><img src=":/icons/whatis"/></a></p></body></html> + + + Qt::AlignCenter + + + true + + + spinPragmaUserVersion + + + + + + + + 0 + 0 + + + + <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_max_page_count"><img src=":/icons/whatis"/></a></p></body></html> + + + Qt::AlignCenter + + + true + + + spinPragmaMaxPageCount + + + + + + + Ignore Check Constraints + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + true + + + checkboxPragmaIgnoreCheckConstraints + + + + + + + Full FSYNC + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + true + + + checkboxPragmaFullFsync + + + + - <html><head/><body><p>WAL Auto Checkpoint <a href="https://www.sqlite.org/pragma.html#pragma_wal_autocheckpoint"><img src=":/icons/whatis"/></a></a></p></body></html> + WAL Auto Checkpoint + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter true @@ -660,10 +1027,140 @@ You can drag SQL statements from an object row and drop them into other applicat - - + + + + -1 + - 10000 + 100000 + + + + + + + User Version + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + true + + + spinPragmaUserVersion + + + + + + + + 512 + + + + + 1024 + + + + + 2048 + + + + + 4096 + + + + + 8192 + + + + + 16384 + + + + + 32768 + + + + + 65536 + + + + + + + + Synchronous + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + true + + + comboboxPragmaSynchronous + + + + + + + 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. + + + + + + + + + + + 0 + 0 + + + + + None + + + + + Full + + + + + Incremental + + + + + + + + Locking Mode + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + true + + + comboboxPragmaLockingMode From df3ae2f19f348d4c66e2a996e9d3d87d90470732 Mon Sep 17 00:00:00 2001 From: mgrojo Date: Fri, 9 Aug 2024 16:50:26 +0200 Subject: [PATCH 32/67] Edit Pragmas: allow translation of values * Use internal list of values to allow translation * Add status tip with links to the help icon * Update translation files with the new strings (pragma names and values) * Add es_ES translation for the new strings --- src/MainWindow.cpp | 14 +- src/MainWindow.ui | 253 ++++--- src/sqlitedb.cpp | 3 + src/sqlitedb.h | 6 + src/translations/sqlb_ar_SA.ts | 1135 ++++++++++++++++++-------------- src/translations/sqlb_cs.ts | 1135 ++++++++++++++++++-------------- src/translations/sqlb_de.ts | 1135 ++++++++++++++++++-------------- src/translations/sqlb_en_GB.ts | 1135 ++++++++++++++++++-------------- src/translations/sqlb_es_ES.ts | 1135 ++++++++++++++++++-------------- src/translations/sqlb_fa.ts | 1135 ++++++++++++++++++-------------- src/translations/sqlb_fr.ts | 1135 ++++++++++++++++++-------------- src/translations/sqlb_id.ts | 1135 ++++++++++++++++++-------------- src/translations/sqlb_it.ts | 1135 ++++++++++++++++++-------------- src/translations/sqlb_ja.ts | 1135 ++++++++++++++++++-------------- src/translations/sqlb_ko_KR.ts | 1135 ++++++++++++++++++-------------- src/translations/sqlb_nl.ts | 1135 ++++++++++++++++++-------------- src/translations/sqlb_pl.ts | 1135 ++++++++++++++++++-------------- src/translations/sqlb_pt_BR.ts | 1135 ++++++++++++++++++-------------- src/translations/sqlb_ro.ts | 1135 ++++++++++++++++++-------------- src/translations/sqlb_ru.ts | 1135 ++++++++++++++++++-------------- src/translations/sqlb_sv.ts | 144 ++++ src/translations/sqlb_tr.ts | 1135 ++++++++++++++++++-------------- src/translations/sqlb_uk_UA.ts | 1135 ++++++++++++++++++-------------- src/translations/sqlb_zh.ts | 1135 ++++++++++++++++++-------------- src/translations/sqlb_zh_TW.ts | 1135 ++++++++++++++++++-------------- 25 files changed, 13448 insertions(+), 9672 deletions(-) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index a4e0f0cc0..50e38dcdf 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -1969,9 +1969,9 @@ void MainWindow::updatePragmaUi() ui->checkboxPragmaForeignKeys->setChecked(pragmaValues.foreign_keys); ui->checkboxPragmaFullFsync->setChecked(pragmaValues.fullfsync); ui->checkboxPragmaIgnoreCheckConstraints->setChecked(pragmaValues.ignore_check_constraints); - ui->comboboxPragmaJournalMode->setCurrentIndex(ui->comboboxPragmaJournalMode->findText(pragmaValues.journal_mode, Qt::MatchFixedString)); + ui->comboboxPragmaJournalMode->setCurrentIndex(DBBrowserDB::journalModeValues.indexOf(pragmaValues.journal_mode)); ui->spinPragmaJournalSizeLimit->setValue(pragmaValues.journal_size_limit); - ui->comboboxPragmaLockingMode->setCurrentIndex(ui->comboboxPragmaLockingMode->findText(pragmaValues.locking_mode, Qt::MatchFixedString)); + ui->comboboxPragmaLockingMode->setCurrentIndex(DBBrowserDB::lockingModeValues.indexOf(pragmaValues.locking_mode)); ui->spinPragmaMaxPageCount->setValue(pragmaValues.max_page_count); ui->comboPragmaPageSize->setCurrentIndex(ui->comboPragmaPageSize->findText(QString::number(pragmaValues.page_size), Qt::MatchFixedString)); ui->checkboxPragmaRecursiveTriggers->setChecked(pragmaValues.recursive_triggers); @@ -1999,9 +1999,15 @@ void MainWindow::savePragmas() db.setPragma("foreign_keys", ui->checkboxPragmaForeignKeys->isChecked(), pragmaValues.foreign_keys); db.setPragma("fullfsync", ui->checkboxPragmaFullFsync->isChecked(), pragmaValues.fullfsync); db.setPragma("ignore_check_constraints", ui->checkboxPragmaIgnoreCheckConstraints->isChecked(), pragmaValues.ignore_check_constraints); - db.setPragma("journal_mode", ui->comboboxPragmaJournalMode->currentText().toUpper(), pragmaValues.journal_mode); + + // Since we allow translation of UI combobox text and journal_mode and locking_mode pragmas + // need text values, we get the text value according to index. + // For this to work, order in journalModeValues and combo-box have to follow the order + // determined by SQLite documentation. + db.setPragma("journal_mode", DBBrowserDB::journalModeValues.at(ui->comboboxPragmaJournalMode->currentIndex()), pragmaValues.journal_mode); db.setPragma("journal_size_limit", ui->spinPragmaJournalSizeLimit->value(), pragmaValues.journal_size_limit); - db.setPragma("locking_mode", ui->comboboxPragmaLockingMode->currentText().toUpper(), pragmaValues.locking_mode); + db.setPragma("locking_mode", DBBrowserDB::lockingModeValues.at(ui->comboboxPragmaLockingMode->currentIndex()), pragmaValues.locking_mode); + db.setPragma("max_page_count", ui->spinPragmaMaxPageCount->value(), pragmaValues.max_page_count); db.setPragma("page_size", ui->comboPragmaPageSize->currentText().toInt(), pragmaValues.page_size); db.setPragma("recursive_triggers", ui->checkboxPragmaRecursiveTriggers->isChecked(), pragmaValues.recursive_triggers); diff --git a/src/MainWindow.ui b/src/MainWindow.ui index a5649f270..bf2dd590c 100644 --- a/src/MainWindow.ui +++ b/src/MainWindow.ui @@ -199,46 +199,14 @@ You can drag SQL statements from an object row and drop them into other applicat - - <html><head/><body><p>Auto Vacuum <a href="https://www.sqlite.org/pragma.html#pragma_auto_vacuum"><img src=":/icons/whatis"/></a></p></body></html> - - - true - - - Qt::LinksAccessibleByMouse - - - comboboxPragmaAutoVacuum + + PRAGMA temp_store - - - - - - - None - - - - - Full - - - - - Incremental - - - - - - - <html><head/><body><p>Automatic Index <a href="https://www.sqlite.org/pragma.html#pragma_automatic_index"><img src=":/icons/whatis"/></a></p></body></html> + Temp Store - - true + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter comboboxPragmaTempStore @@ -247,15 +215,15 @@ You can drag SQL statements from an object row and drop them into other applicat + + PRAGMA secure_delete + Secure Delete Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - true - checkboxPragmaSecureDelete @@ -272,6 +240,10 @@ You can drag SQL statements from an object row and drop them into other applicat <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_wal_autocheckpoint"><img src=":/icons/whatis"/></a></p></body></html> + + https://www.sqlite.org/pragma.html#pragma_wal_autocheckpoint + + Qt::AlignCenter @@ -285,15 +257,15 @@ You can drag SQL statements from an object row and drop them into other applicat + + PRAGMA case_sensitive_like + Case Sensitive Like Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - true - checkboxPragmaCaseSensitiveLike @@ -310,6 +282,10 @@ You can drag SQL statements from an object row and drop them into other applicat <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_journal_mode"><img src=":/icons/whatis"/></a></p></body></html> + + https://www.sqlite.org/pragma.html#pragma_journal_mode + + Qt::AlignCenter @@ -332,6 +308,10 @@ You can drag SQL statements from an object row and drop them into other applicat <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_secure_delete"><img src=":/icons/whatis"/></a></p></body></html> + + https://www.sqlite.org/pragma.html#pragma_secure_delete + + Qt::AlignCenter @@ -354,6 +334,10 @@ You can drag SQL statements from an object row and drop them into other applicat <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_synchronous"><img src=":/icons/whatis"/></a></p></body></html> + + https://www.sqlite.org/pragma.html#pragma_synchronous + + Qt::AlignCenter @@ -367,15 +351,15 @@ You can drag SQL statements from an object row and drop them into other applicat + + PRAGMA journal_mode + Journal Mode Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - true - comboboxPragmaJournalMode @@ -383,15 +367,15 @@ You can drag SQL statements from an object row and drop them into other applicat + + PRAGMA journal_size_limit + Journal Size Limit Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - true - spinPragmaJournalSizeLimit @@ -399,15 +383,15 @@ You can drag SQL statements from an object row and drop them into other applicat + + PRAGMA recursive_triggers + Recursive Triggers Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - true - checkboxPragmaRecursiveTriggers @@ -417,32 +401,32 @@ You can drag SQL statements from an object row and drop them into other applicat - Delete + Delete - Truncate + Truncate - Persist + Persist - Memory + Memory - WAL + WAL - Off + Off @@ -458,6 +442,10 @@ You can drag SQL statements from an object row and drop them into other applicat <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_fullfsync"><img src=":/icons/whatis"/></a></p></body></html> + + https://www.sqlite.org/pragma.html#pragma_fullfsync + + Qt::AlignCenter @@ -480,6 +468,10 @@ You can drag SQL statements from an object row and drop them into other applicat <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_journal_size_limit"><img src=":/icons/whatis"/></a></p></body></html> + + https://www.sqlite.org/pragma.html#pragma_journal_size_limit + + Qt::AlignCenter @@ -493,15 +485,15 @@ You can drag SQL statements from an object row and drop them into other applicat + + PRAGMA page_size + Page Size Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - true - comboPragmaPageSize @@ -518,6 +510,10 @@ You can drag SQL statements from an object row and drop them into other applicat <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_case_sensitive_like"><img src=":/icons/whatis"/></a></p></body></html> + + https://www.sqlite.org/pragma.html#pragma_case_sensitive_like + + Qt::AlignCenter @@ -538,15 +534,15 @@ You can drag SQL statements from an object row and drop them into other applicat + + PRAGMA foreign_keys + Foreign Keys Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - true - checkboxPragmaForeignKeys @@ -605,6 +601,10 @@ You can drag SQL statements from an object row and drop them into other applicat <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_ignore_check_constraints"><img src=":/icons/whatis"/></a></p></body></html> + + https://www.sqlite.org/pragma.html#pragma_ignore_check_constraints + + Qt::AlignCenter @@ -627,6 +627,10 @@ You can drag SQL statements from an object row and drop them into other applicat <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_automatic_index"><img src=":/icons/whatis"/></a></p></body></html> + + https://www.sqlite.org/pragma.html#pragma_automatic_index + + Qt::AlignCenter @@ -656,6 +660,10 @@ You can drag SQL statements from an object row and drop them into other applicat <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_page_size"><img src=":/icons/whatis"/></a></p></body></html> + + https://www.sqlite.org/pragma.html#pragma_page_size + + Qt::AlignCenter @@ -678,6 +686,10 @@ You can drag SQL statements from an object row and drop them into other applicat <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_auto_vacuum"><img src=":/icons/whatis"/></a></p></body></html> + + https://www.sqlite.org/pragma.html#pragma_auto_vacuum + + Qt::AlignCenter @@ -703,6 +715,10 @@ You can drag SQL statements from an object row and drop them into other applicat <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_recursive_triggers"><img src=":/icons/whatis"/></a></p></body></html> + + https://www.sqlite.org/pragma.html#pragma_recursive_triggers + + Qt::AlignCenter @@ -725,6 +741,10 @@ You can drag SQL statements from an object row and drop them into other applicat <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_temp_store"><img src=":/icons/whatis"/></a></p></body></html> + + https://www.sqlite.org/pragma.html#pragma_temp_store + + Qt::AlignCenter @@ -747,6 +767,10 @@ You can drag SQL statements from an object row and drop them into other applicat <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_checkpoint_fullfsync"><img src=":/icons/whatis"/></a></p></body></html> + + https://www.sqlite.org/pragma.html#pragma_checkpoint_fullfsync + + Qt::AlignCenter @@ -760,18 +784,15 @@ You can drag SQL statements from an object row and drop them into other applicat + + PRAGMA auto_vacuum + Auto Vacuum Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - true - - - Qt::LinksAccessibleByMouse - comboboxPragmaAutoVacuum @@ -786,15 +807,15 @@ You can drag SQL statements from an object row and drop them into other applicat + + PRAGMA max_page_count + Max Page Count Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - true - spinPragmaMaxPageCount @@ -811,6 +832,10 @@ You can drag SQL statements from an object row and drop them into other applicat <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_locking_mode"><img src=":/icons/whatis"/></a></p></body></html> + + https://www.sqlite.org/pragma.html#pragma_locking_mode + + Qt::AlignCenter @@ -826,27 +851,27 @@ You can drag SQL statements from an object row and drop them into other applicat - Normal + Normal - Exclusive + Exclusive + + PRAGMA checkpoint_fullfsync + Checkpoint Full FSYNC Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - true - checkboxPragmaCheckpointFullFsync @@ -863,6 +888,10 @@ You can drag SQL statements from an object row and drop them into other applicat <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_foreign_keys"><img src=":/icons/whatis"/></a></p></body></html> + + https://www.sqlite.org/pragma.html#pragma_foreign_keys + + Qt::AlignCenter @@ -878,17 +907,17 @@ You can drag SQL statements from an object row and drop them into other applicat - Off + Off - Normal + Normal - Full + Full @@ -897,32 +926,32 @@ You can drag SQL statements from an object row and drop them into other applicat - Default + Default - File + File - Memory + Memory + + PRAGMA automatic_index + Automatic Index Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - true - checkboxPragmaAutomaticIndex @@ -946,6 +975,10 @@ You can drag SQL statements from an object row and drop them into other applicat <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_user_version"><img src=":/icons/whatis"/></a></p></body></html> + + https://www.sqlite.org/pragma.html#pragma_user_version + + Qt::AlignCenter @@ -968,6 +1001,10 @@ You can drag SQL statements from an object row and drop them into other applicat <html><head/><body><p><a href="https://www.sqlite.org/pragma.html#pragma_max_page_count"><img src=":/icons/whatis"/></a></p></body></html> + + https://www.sqlite.org/pragma.html#pragma_max_page_count + + Qt::AlignCenter @@ -981,15 +1018,15 @@ You can drag SQL statements from an object row and drop them into other applicat + + PRAGMA ignore_check_constraints + Ignore Check Constraints Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - true - checkboxPragmaIgnoreCheckConstraints @@ -997,15 +1034,15 @@ You can drag SQL statements from an object row and drop them into other applicat + + PRAGMA fullfsync + Full FSYNC Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - true - checkboxPragmaFullFsync @@ -1013,15 +1050,15 @@ You can drag SQL statements from an object row and drop them into other applicat + + PRAGMA wal_autocheckpoint + WAL Auto Checkpoint Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - true - spinPragmaWalAutoCheckpoint @@ -1039,15 +1076,15 @@ You can drag SQL statements from an object row and drop them into other applicat + + PRAGMA user_version + User Version Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - true - spinPragmaUserVersion @@ -1099,15 +1136,15 @@ You can drag SQL statements from an object row and drop them into other applicat + + PRAGMA synchronous + Synchronous Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - true - comboboxPragmaSynchronous @@ -1133,32 +1170,32 @@ You can drag SQL statements from an object row and drop them into other applicat - None + None - Full + Full - Incremental + Incremental + + PRAGMA locking_mode + Locking Mode Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - true - comboboxPragmaLockingMode diff --git a/src/sqlitedb.cpp b/src/sqlitedb.cpp index e57db3f9d..0de8c6b28 100644 --- a/src/sqlitedb.cpp +++ b/src/sqlitedb.cpp @@ -25,6 +25,9 @@ #include #include +const QStringList DBBrowserDB::journalModeValues = {"DELETE", "TRUNCATE", "PERSIST", "MEMORY", "WAL", "OFF"}; +const QStringList DBBrowserDB::lockingModeValues = {"NORMAL", "EXCLUSIVE"}; + QStringList DBBrowserDB::Datatypes = {"INTEGER", "TEXT", "BLOB", "REAL", "NUMERIC"}; QStringList DBBrowserDB::DatatypesStrict = {"INT", "INTEGER", "TEXT", "BLOB", "REAL", "ANY"}; diff --git a/src/sqlitedb.h b/src/sqlitedb.h index 006eaf630..4393e7dbb 100644 --- a/src/sqlitedb.h +++ b/src/sqlitedb.h @@ -272,6 +272,12 @@ class DBBrowserDB : public QObject bool setPragma(const std::string& pragma, const QString& value, QString& originalvalue); bool setPragma(const std::string& pragma, int value, int& originalvalue); + // These are the two pragmas in SQLite which require values passed as text. + // Values follow the order of the SQLite documentation. + // Use these values for setPragma(). + static const QStringList journalModeValues; + static const QStringList lockingModeValues; + bool loadExtension(const QString& filename); void loadExtensionsFromSettings(); diff --git a/src/translations/sqlb_ar_SA.ts b/src/translations/sqlb_ar_SA.ts index 04f506b4f..fa591bc80 100644 --- a/src/translations/sqlb_ar_SA.ts +++ b/src/translations/sqlb_ar_SA.ts @@ -699,17 +699,17 @@ If any of the other settings were altered for this database file you need to pro - + Cancel ألغِ - + Executing SQL... ينفّذ SQL... - + Action cancelled. أُلغي الإجراء. @@ -745,99 +745,99 @@ If any of the other settings were altered for this database file you need to pro أتريد إجهاض العملية الأخرى؟ - - + + 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 @@ -846,12 +846,12 @@ Message from database engine: %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: @@ -860,32 +860,32 @@ Message from database engine: - + could not get list of databases: %1 تعذّر جلب قائمة قواعد البيانات: %L1 - + Error loading extension: %1 خطأ أثناء تحميل الامتداد: %L1 - + Error loading built-in extension: %1 - + could not get column information تعذّر جلب معلومات العمود - + Error setting pragma %1 to %2: %3 تعذّر ضبط pragma %L1 إلى %L2:‏ %L3 - + File not found. تعذّر العثور على الملف. @@ -1958,7 +1958,7 @@ All data currently stored in this field will be lost. ExtendedScintilla - + Ctrl+H Ctrl+H @@ -1969,22 +1969,22 @@ All data currently stored in this field will be lost. - + Ctrl+P Ctrl+P - + Find... ابحث... - + Find and Replace... ابحث واستبدل... - + Print... اطبع... @@ -1992,129 +1992,129 @@ All data currently stored in this field will be lost. 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 - + Cut - + 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“. @@ -2507,7 +2507,7 @@ x~y Range: values between x and y - + Tab جدولات @@ -2650,7 +2650,7 @@ x~y Range: values between x and y - + Deselect All ألغِ تحديد الكلّ @@ -2660,52 +2660,52 @@ x~y Range: values between x and y طابِق المتشابهات - + 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 - + Could not prepare INSERT statement: %1 - + Unexpected end of file. Please make sure that you have configured the correct quote characters and the file is not malformed. - + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. أخذ استيراد الملف ”%L1“ ‏%L2 م‌ث. منها %L3 م‌ث على دالة الصفّ. - + Inserting row failed: %1 فشل إدراج الصفّ: %L1 @@ -2726,72 +2726,72 @@ You can drag SQL statements from an object row and drop them into other applicat يمكنك سحب إفادات 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 - + Export one or more table(s) to a JSON file صدّر جدولًا أو أكثر إلى ملف JSON - + 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. @@ -2801,407 +2801,407 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed يمكنك سحب إفادات SQL من عمود ”المخطّط“ وإسقاطها في محرّر SQL أو في أيّ تطبيق آخر. - + &Remote الب&عيد - - + + 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 م&ساعدة - + Too&ls أ&دوات - + 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... &عدّل الجدول... - + 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. يعرض أو يُخفي شريط قاعدة البيانات.. - + New &tab - + 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? ما ه&ذا؟ @@ -3227,643 +3227,822 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed - - + + Temp Store + + + + + Secure Delete + + + + + Case Sensitive Like + + + + + Journal Mode + + + + + Journal Size Limit + + + + + Recursive Triggers + + + + + Delete + pragma + + + + + Truncate + pragma + + + + + Persist + pragma + + + + + Memory + pragma + + + + + WAL + pragma + + + + + Off + pragma + + + + + Page Size + + + + + Foreign Keys + + + + + Auto Vacuum + + + + + Max Page Count + + + + + Normal + pragma + + + + + Exclusive + pragma + + + + + Checkpoint Full FSYNC + + + + + Off + + + + + Normal + + + + + + Full + + + + + Default + المبدئي + + + + File + الملف + + + + Memory + + + + + Automatic Index + + + + + Ignore Check Constraints + + + + + Full FSYNC + + + + + WAL Auto Checkpoint + + + + + User Version + + + + + Synchronous + + + + + None + + + + + Incremental + + + + + Locking Mode + + + + + E&xecute SQL This has to be equal to the tab title in all the main tabs - + &Recent Files - + &New Database - - + + Ctrl+F4 Ctrl+F4 - + &Undo - - + + Undo last change to the database - + This action undoes the last change performed to the database in the Database Browser or in Execute SQL. Redoing is not possible. - + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields from a table, as well as modify field names and types. - + 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. - + Ctrl+Shift+T - + &Load Extension... &حمّل امتدادًا... - + Execute line نفّذ السطر - + &Wiki الوي&كي - + F1 - + Bug &Report... أبلِغ عن علّ&ة... - + Feature Re&quest... ا&طلب ميزة... - + Web&site موقع الو&ب - + &Donate on Patreon... تبرّع &عبر باتريون... - + &Save Project - + Open &Project... افتح م&شروعًا... - + 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 - + Export to &JSON - + Save as &view احفظ كمن&ظور - + Save as view احفظ كمنظور - + Shows or hides the Project toolbar. اعرض أو أخفِ شريط أدوات المشروع. - + Extra DB Toolbar شريط أدوات قواعد البيانات الإضافي - + &Open Database - + New In-&Memory Database قاعدة بيانات جديدة في ال&ذاكرة - + Drag && Drop SELECT Query - - + + When dragging fields from the same table or a single table, drop a SELECT query into the editor - + 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 - + Close Pro&ject - - + + Close project and database files and return to the initial state - - + + Ctrl+Shift+W - + Table from CSV data in Clipboard... - + This treats the current clipboard contents as a CSV file and opens the same import wizard that is used for importing CSV data from a file. - + Show &Row Counts - + This shows the number of rows for each table and view in the database. - + Save Database &As... - + Save the current database as a different file - + Refresh أنعِش - + Reload the database structure - + Ctrl+Shift+F4 - - + + Detach Database - - + + Detach database file attached to the current database connection - + &Recently opened المفتوحة حدي&ثًا - - + + 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 @@ -3872,475 +4051,475 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed %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“؟ - + Could not find resource file: %1 تعذّر العثور على ملف الموارد: %L1 - + Choose a project file to open اختر ملف مشروع لفتحه - + Could not open project file for writing. Reason: %1 تعذّر فتح ملف المشروع للكتابة. السبب: %L1 - + Setting PRAGMA values will commit your current transaction. Are you sure? سيؤّدي ضبط قيم PRAGMA إلى إيداع المعاملة الحالية. أمتأكّد؟ - + Ctrl+Tab - + Ctrl+Shift+Tab - + Clear List - + Window Layout تخطيط النافذة - + Reset Window Layout صفّر تخطيط النافذة - + Simplify Window Layout بسّط تخطيط النافذة - + Alt+Shift+0 Alt+Shift+0 - + Dock Windows at Bottom ارصف النوافذ بالأسفل - + Dock Windows at Left Side ارصف النوافذ على اليسار - + Dock Windows at Top ارصف النوافذ بالأعلى - + The database is currently busy. قاعدة البيانات مشغولة حاليًا. - + Click here to interrupt the currently running query. انقر هنا لمقاطعة الاستعلام الذي يعمل حاليًا. - + Ctrl+Alt+W - + Could not open database file. Reason: %1 تعذّر فتح ملف قاعدة البيانات. السبب: %L1 - + In-Memory database قاعدة بيانات في الذاكرة - + Choose a database file to save under - + Error while saving the database to the new file. - + 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... - + Do you want to save the changes made to SQL tabs in the project file '%1'? أتريد حفظ التعديلات التي أجريتها على ألسنة SQL في ملف المشروع ”%L1“؟ - + The statements in the tab '%1' 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? - + DB file '%1' could not be opened - + 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 no longer fully supported. If you want to load it completely, please use DB Browser for SQLite version 3.12 to convert it to the new file format. - + Table '%1' not found; settings ignored - + -- Reference to file "%1" (not supported by this version) -- - + Project saved to file '%1' حُفظ المشروع في الملف ”%L1“ - + Yes. Don't ask again - + 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 م‌ث - + Automatically load the last opened DB file at startup - + Ctrl+Alt+0 - + Choose text files اختر ملفات نصية - + Import completed. Some foreign key constraints are violated. Please fix them before saving. اكتمل الاستيراد. انتُهكت بعض قيود المفتاح الأجنبي. من فضلك أصلِحها قبل الحفظ. - + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. @@ -4353,53 +4532,53 @@ Are you sure? - + 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! @@ -4408,57 +4587,57 @@ 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. ضع اسمًا جديدًا للسان 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. اكتمل التنفيذ دون أخطاء. @@ -6273,26 +6452,26 @@ Are you sure you want to proceed? من فضلك أدخِل عبارة السر لشهادة العميل لإجراء الاستيثاق. - + Cancel ألغِ - + Uploading remote database to %1 يرفع قاعدة البيانات البعيدة إلى %L1 - + Downloading remote database from %1 ينزّل قاعدة البيانات البعيدة من %L1 - + Error: Cannot open the file for sending. خطأ: تعذّر فتح الملف لإرساله. @@ -7027,32 +7206,32 @@ Use of this function must be authorized from Preferences. يحمّل... - + 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 ألغِ @@ -7394,7 +7573,7 @@ Hold %3Shift and click to jump there - + Delete Record احذف السجلّ @@ -7496,7 +7675,7 @@ Hold %3Shift and click to jump there - + Set encoding اضبط الترميز @@ -7769,96 +7948,96 @@ Hold %3Shift and click to jump there . المجموع: %L1، المتوسّط: %L2، الأدنى: %L3، الأقصى: %L4 - + Conditional formats for "%1" تنسيقات ”%L1“ الشرطيّة - + determining row count... يحدّد عدد الصفوف... - + %L1 - %L2 of >= %L3 - + %L1 - %L2 of %L3 - + (clipped at %L1 rows) - + 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 من فضلك اختر سجلًا أوّلًا - + 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 diff --git a/src/translations/sqlb_cs.ts b/src/translations/sqlb_cs.ts index f2df39a23..f01ea51da 100644 --- a/src/translations/sqlb_cs.ts +++ b/src/translations/sqlb_cs.ts @@ -687,17 +687,17 @@ If any of the other settings were altered for this database file you need to pro - + Cancel Zrušit - + Executing SQL... Provádím SQL... - + Action cancelled. Akce zrušena. @@ -733,140 +733,140 @@ If any of the other settings were altered for this database file you need to pro - - + + 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 - + Error loading built-in extension: %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. @@ -1925,7 +1925,7 @@ All data currently stored in this field will be lost. ExtendedScintilla - + Ctrl+H @@ -1936,22 +1936,22 @@ All data currently stored in this field will be lost. - + Ctrl+P - + Find... - + Find and Replace... Najít a nahradit... - + Print... Tisk... @@ -1959,128 +1959,128 @@ All data currently stored in this field will be lost. 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 - + Cut - + 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. @@ -2461,7 +2461,7 @@ x~y Range: values between x and y - + Tab Karta @@ -2604,7 +2604,7 @@ x~y Range: values between x and y - + Deselect All Zrušit celý výběr @@ -2614,52 +2614,52 @@ x~y Range: values between x and y - + 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 - + Could not prepare INSERT statement: %1 - + Unexpected end of file. Please make sure that you have configured the correct quote characters and the file is not malformed. - + 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 @@ -2672,405 +2672,405 @@ x~y Range: values between x and y 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 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 - + 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 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 - + New &tab - + 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 - + Close Pro&ject - - + + Close project and database files and return to the initial state - + Ctrl+Shift+F4 - - + + Detach Database - - + + Detach database file attached to the current database connection - + &Attach Database... Přiložit databázi... @@ -3096,382 +3096,561 @@ x~y Range: values between x and y - - + + Temp Store + + + + + Secure Delete + + + + + Case Sensitive Like + + + + + Journal Mode + + + + + Journal Size Limit + + + + + Recursive Triggers + + + + + Delete + pragma + + + + + Truncate + pragma + + + + + Persist + pragma + + + + + Memory + pragma + + + + + WAL + pragma + + + + + Off + pragma + + + + + Page Size + + + + + Foreign Keys + + + + + Auto Vacuum + + + + + Max Page Count + + + + + Normal + pragma + + + + + Exclusive + pragma + + + + + Checkpoint Full FSYNC + + + + + Off + + + + + Normal + + + + + + Full + + + + + Default + Výchozí + + + + File + Soubor + + + + Memory + + + + + Automatic Index + + + + + Ignore Check Constraints + + + + + Full FSYNC + + + + + WAL Auto Checkpoint + + + + + User Version + + + + + Synchronous + + + + + None + Žádná + + + + Incremental + + + + + Locking Mode + + + + + E&xecute SQL This has to be equal to the tab title in all the main tabs - + &Recent Files - + &New Database - + &Undo - - + + Undo last change to the database - + This action undoes the last change performed to the database in the Database Browser or in Execute SQL. Redoing is not possible. - + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields from a table, as well as modify field names and types. - + Ctrl+Shift+T - + &Save Project - + Open &Project - - + + 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 - + Export to &JSON - + 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 - + &Open Database - + New In-&Memory Database - + Drag && Drop SELECT Query - - + + When dragging fields from the same table or a single table, drop a SELECT query into the editor - + 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 - - + + Ctrl+Shift+W - + Table from CSV data in Clipboard... - + This treats the current clipboard contents as a CSV file and opens the same import wizard that is used for importing CSV data from a file. - + Show &Row Counts - + This shows the number of rows for each table and view in the database. - + Save Database &As... - + Save the current database as a different file - + Refresh Obnovit - + Reload the database structure - + &Recently opened &Nedávno otevřené - + Ctrl+T @@ -3483,87 +3662,87 @@ You can drag SQL statements from an object row and drop them into other applicat - + 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. - + Too&ls 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. @@ -3571,609 +3750,609 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed - + &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)... - + 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? - + Could not find resource file: %1 - + Choose a project file to open Vybrat soubor projektu k otevření - + Could not open project file for writing. Reason: %1 - + Busy (%1) - + Setting PRAGMA values will commit your current transaction. Are you sure? - + Ctrl+Tab - + Ctrl+Shift+Tab - + Clear List - + Window Layout - + Reset Window Layout - + Simplify Window Layout - + Alt+Shift+0 - + Dock Windows at Bottom - + Dock Windows at Left Side - + Dock Windows at Top - + The database is currently busy. - + Click here to interrupt the currently running query. - + Ctrl+Alt+W - + Could not open database file. Reason: %1 - + In-Memory database - + Choose a database file to save under - + Error while saving the database to the new file. - + 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 - + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. @@ -4183,215 +4362,215 @@ Are you sure? - + The statements in the tab '%1' 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? - + DB file '%1' could not be opened - + 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 no longer fully supported. If you want to load it completely, please use DB Browser for SQLite version 3.12 to convert it to the new file format. - + Table '%1' not found; settings ignored - + -- Reference to file "%1" (not supported by this version) -- - + Yes. Don't ask again - + 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 - + Automatically load the last opened DB file at startup - + Ctrl+Alt+0 - + 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. @@ -6172,26 +6351,26 @@ Are you sure you want to proceed? - + 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: Cannot open the file for sending. Chyba: Nemohu otevřít soubor k odeslání. @@ -6924,31 +7103,31 @@ Use of this function must be authorized from Preferences. 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 @@ -7284,7 +7463,7 @@ Hold %3Shift and click to jump there - + Delete Record Smazat záznam @@ -7386,7 +7565,7 @@ Hold %3Shift and click to jump there - + Set encoding Nastavit kódování @@ -7653,96 +7832,96 @@ Hold %3Shift and click to jump there - + Conditional formats for "%1" - + determining row count... - + %L1 - %L2 of >= %L3 - + %L1 - %L2 of %L3 - + (clipped at %L1 rows) - + 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í - + 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. diff --git a/src/translations/sqlb_de.ts b/src/translations/sqlb_de.ts index df75b775a..4de24d157 100644 --- a/src/translations/sqlb_de.ts +++ b/src/translations/sqlb_de.ts @@ -700,17 +700,17 @@ Wenn weitere Einstellungen für diese Datenbankdatei vorgenommen worden sind, m - + Cancel Abbrechen - + Executing SQL... SQL ausführen... - + Action cancelled. Vorgang abgebrochen. @@ -746,99 +746,99 @@ Wenn weitere Einstellungen für diese Datenbankdatei vorgenommen worden sind, m Möchten Sie die andere Operation abbrechen? - - + + No database file opened Keine Datenbankdatei geöffnet - - + + Error in statement #%1: %2. Aborting execution%3. Fehler in der Anweisung #%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 @@ -847,12 +847,12 @@ 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: @@ -861,32 +861,32 @@ Meldung von Datenbank: - + could not get list of databases: %1 konnte keine Datenbankliste abrufen: %1 - + Error loading extension: %1 Fehler beim Laden der Erweiterung: %1 - + Error loading built-in extension: %1 Fehler beim Laden der eingebauten Erweiterung: %1 - + could not get column information Spalteninformationen konnten nicht ermittelt werden - + Error setting pragma %1 to %2: %3 Fehler beim Setzen des Pragmas %1 auf %2: %3 - + File not found. Datei nicht gefunden. @@ -1952,7 +1952,7 @@ Alle aktuell in diesem Feld gespeicherten Daten gehen verloren. ExtendedScintilla - + Ctrl+H @@ -1963,22 +1963,22 @@ Alle aktuell in diesem Feld gespeicherten Daten gehen verloren. - + Ctrl+P - + Find... Suchen... - + Find and Replace... Suchen und ersetzen... - + Print... Drucken... @@ -1986,128 +1986,128 @@ Alle aktuell in diesem Feld gespeicherten Daten gehen verloren. 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 - + Cut Ausschneiden - + Copy Kopieren - + Copy with Headers Mit Headern kopieren - + Copy as SQL Als SQL kopieren - + Paste Einfügen - + Print... Drucken... - + Use in Filter Expression Im 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 eine NOT NULL Beschränkung. @@ -2499,7 +2499,7 @@ x~y Bereich: Werte zwischen x und y - + Tab Tab @@ -2642,7 +2642,7 @@ x~y Bereich: Werte zwischen x und y - + Deselect All Alle abwählen @@ -2652,52 +2652,52 @@ x~y Bereich: Werte zwischen x und y Ä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 - + Could not prepare INSERT statement: %1 INSERT-Anweisung konnte nicht vorbereitet werden: %1 - + Unexpected end of file. Please make sure that you have configured the correct quote characters and the file is not malformed. Unerwartetes Dateiende. Bitte sicherstellen, dass die korrekten Anführungszeichen gesetzt sind und die Datei wohlgeformt ist. - + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. Import der Datei '%1' benötigte %2 ms. Davon wurden %3 ms in der Zeilenfunktion verbracht. - + Inserting row failed: %1 Einfügen der Zeile fehlgeschlagen: %1 @@ -2705,17 +2705,17 @@ x~y Bereich: Werte zwischen x und y MainWindow - + toolBar1 Werkzeugleiste1 - + Opens the SQLCipher FAQ in a browser window Öffnet die SQLCipher-FAQ in einem Browserfenster - + Export one or more table(s) to a JSON file Exportiert eine oder mehrere Tabelle(n) in eine JSON-Datei @@ -2734,47 +2734,47 @@ Sie können SQL-Anweisungen aus einer Objektzeile fassen und in anderen Anwendun - + 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 Fehlerprotokoll @@ -2800,546 +2800,725 @@ Sie können SQL-Anweisungen aus einer Objektzeile fassen und in anderen Anwendun P&ragmas bearbeiten - - + + Temp Store + + + + + Secure Delete + + + + + Case Sensitive Like + + + + + Journal Mode + + + + + Journal Size Limit + + + + + Recursive Triggers + + + + + Delete + pragma + + + + + Truncate + pragma + + + + + Persist + pragma + + + + + Memory + pragma + + + + + WAL + pragma + + + + + Off + pragma + + + + + Page Size + + + + + Foreign Keys + Fremdschlüssel + + + + Auto Vacuum + + + + + Max Page Count + + + + + Normal + pragma + + + + + Exclusive + pragma + + + + + Checkpoint Full FSYNC + + + + + Off + + + + + Normal + + + + + + Full + + + + + Default + Voreinstellung + + + + File + Datei + + + + Memory + + + + + Automatic Index + + + + + Ignore Check Constraints + + + + + Full FSYNC + + + + + WAL Auto Checkpoint + + + + + User Version + + + + + Synchronous + + + + + None + + + + + Incremental + + + + + Locking Mode + + + + + E&xecute SQL This has to be equal to the tab title in all the main tabs SQL aus&führen - + &Recent Files &Kürzliche Dateien - + &New Database &Neue Datenbank - - + + Ctrl+F4 - + &Undo &Zurücksetzen - - + + Undo last change to the database Letzte Datenbankänderung rückgängig machen - + This action undoes the last change performed to the database in the Database Browser or in Execute SQL. Redoing is not possible. Diese Aktion macht die letzte Änderung an der Datenbank aus "Daten durchsuchen" oder "SQL ausführen" rückgängig. Wiederherstellen ist nicht möglich. - + Compact &Database... &Datenbank komprimieren... - + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields from a table, as well as modify field names and types. Den Dialog zum Ändern der Tabelle öffnen, wo eine existierende Tabelle umbenannt werden kann. Zudem ist das Hinzufügen oder Löschen von Tabellenfeldern möglich, genauso wie das Ändern von Feldnamen und -typen. - + 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 die aktuell ausgewählte SQL-Anweisung aus. Wenn kein Text ausgewählt ist, werden alle SQL-Anweisungen ausgeführt. - + Ctrl+Shift+T - + &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... - + &Save Project Projekt &speichern - + Open &Project... &Projekt öffnen... - + 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 Abfrage - - + + 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 - + Export to &JSON Nach &JSON exportieren - + Save as &view Als &View speichern - + Save as view Als Ansicht speichern - + &Open Database Datenbank &öffnen - + Drag && Drop SELECT Query Drag-and-drop für SELECT-Abfrage - - + + When dragging fields from the same table or a single table, drop a SELECT query into the editor Wenn Felder aus der gleichen Tabelle oder einen einzelnen Tabelle ausgewählt und gezogen werden, soll eine SELECT-Abfrage in den Editor geschrieben werden - + Browse Table Tabelle durchsuchen - - + + Ctrl+Shift+W - + Table from CSV data in Clipboard... Tabelle aus CSV-Daten in der Zwischenablage... - + This treats the current clipboard contents as a CSV file and opens the same import wizard that is used for importing CSV data from a file. Dies behandelt den aktuellen Inhalt der Zwischenablage als CSV-Datei und öffnet den gleichen Import-Dialog wie für den Import von CSV-Daten aus einer Datei. - + Show &Row Counts Zeilena&nzahl anzeigen - + This shows the number of rows for each table and view in the database. Dies zeigt die Anzahl der Zeilen für jede Tabelle und Ansicht in der Datenbank. - + Save Database &As... D&atenbank speichern unter... - + Save the current database as a different file Die aktuelle Datenbank in einer anderen Datei speichern - + Refresh Aktualisieren - + Reload the database structure Die Datenbankstruktur neu laden - + 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-and-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-and-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 Pragma integrity_check 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 Pragma foreign_key_check 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 Pragma quick_check 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 Pragmas integrity_check 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 Pragma optimize 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 - + Close Pro&ject Pro&jekt schließen - - + + Close project and database files and return to the initial state Projekt und Datenbankdateien schließen und zum initialen Zustand zurückkehren - + Ctrl+Shift+F4 - - + + Detach Database Datenbank ablösen - - + + Detach database file attached to the current database connection Die mit der aktuellen Datenbankverbindung verwendete Datenbankdatei ablösen - + 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-Protokolle - + 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 Protokolls 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. @@ -3350,529 +3529,529 @@ Sie können SQL-Anweisungen aus der Schemaspalte nehmen und in den SQL-Editor od - + &Remote Entfe&rnt - + 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 die SQL-Anweisung 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-Anweisung kopieren - + Copy the CREATE statement of the item to the clipboard CREATE-Anweisung des Elements in die Zwischenablage kopieren - + User Benutzer - + Application Anwendung - + &Clear &Leeren - + &New Database... &Neue Datenbank... - - + + Create a new database file Neue Datenbankdatei erstellen - + This option is used to create a new database file. Diese Option wird zum Erstellen einer neuen Datenbankdatei verwendet. - + Ctrl+N - - + + &Open Database... Datenbank &öffnen... - - - - - + + + + + Open an existing database file Existierende Datenbankdatei öffnen - - - + + + This option is used to open an existing database file. Diese Option wird zum Öffnen einer existierenden Datenbankdatei 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 Datenbankdatei auf den zuletzt gespeicherten Zustand verwendet. Alle getätigten Änderungen gehen verloren. - - + + Write changes to the database file Änderungen in Datenbankdatei schreiben - + This option is used to save changes to the database file. Diese Option wird zum Speichern von Änderungen in der Datenbankdatei verwendet. - + Ctrl+S - + Compact the database file, removing space wasted by deleted records Datenbankdatei komprimieren, löscht Speicherplatz von gelöschten Zeilen - - + + Compact the database file, removing space wasted by deleted records. Datenbankdatei 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 Tabellenkalkulationsanwendungen 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 Tabellenkalkulationsanwendungen. - + 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 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-Werkzeugleiste - + Shows or hides the Database toolbar. Zeigt oder versteckt die Datenbank-Werkzeugleiste. - + Shift+F1 - + &Recently opened &Kürzlich geöffnet - + Ctrl+T - + 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, das von einer SQLite-Erweiterung zur Verfügung gestellt wird. - + Too&ls &Werkzeuge - + DB Toolbar DB-Werkzeugleiste - + SQL &Log SQL-&Protokoll - + 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 - + New &tab Neuer &Tab - + 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-Codierung - - + + Choose a database file Eine Datenbankdatei auswählen - + Ctrl+Return - + Ctrl+D - + Ctrl+I - + Reset Window Layout Fensteranordnung zurücksetzen - + The database is currently busy. Die Datenbank ist aktuell beschäftigt. - + Click here to interrupt the currently running query. Hier klicken, um die aktuell laufende Abfrage 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 @@ -3881,297 +4060,297 @@ Reason: %1 %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üssel-Prüfung nicht bestanden.<br/>Sie sollten 'Werkzeuge | Fremdschlüssel-Prüfung' 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. - + Ctrl+Tab - + Ctrl+Shift+Tab - + Clear List Liste leeren - + Window Layout Fensterlayout - + Simplify Window Layout Fensterlayout vereinfachen - + Alt+Shift+0 - + Dock Windows at Bottom Fenster unten anheften - + Dock Windows at Left Side Fenster links anheften - + Dock Windows at Top Fenster oben anheften - + 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-Anweisungen 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 - + Automatically load the last opened DB file at startup Beim Starten automatisch die zuletzt geöffnete Datenbank öffnen - + 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-Anweisungen ausgeführt. Sollen diese gestoppt werden, um stattdessen die aktuellen Anweisungen 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 das Komprimieren wird Ihre aktuelle Transaktion übermitteln. Sind Sie sich sicher? - + Opened '%1' in read-only mode from recent file list '%1' aus der Liste zuletzt geöffneter Dateien im Lesemodus geöffnet - + Opened '%1' from recent file list '%1' aus der Liste zuletzt geöffneter Dateien geöffnet - + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. @@ -4180,225 +4359,225 @@ Sind Sie sich sicher? - + The statements in the tab '%1' 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? Die Anweisungen im Tab '%1' werden noch ausgeführt. Das Schließen des Tabs stoppt die Ausführung. Dies hinterlässt die Datenbank möglicherweise in einem inkonsistenten Zustand. Soll der Tab wirklich geschlossen werden? - + 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 no longer fully supported. If you want to load it completely, please use DB Browser for SQLite version 3.12 to convert it to the new file format. Diese Projektdatei verwendet ein altes Dateiformat, da es mit DB-Browser für SQLite Version 3.10 oder älter erstellt wurde. Das Laden dieser Dateien wird nicht mehr vollständig unterstützt. Um es komplett zu laden, bitte DB-Browser für SQLite Version 3.12 verwenden und in das neue Format konvertieren. - + Project saved to file '%1' Projekt in Datei '%1' gespeichert - + Yes. Don't ask again Ja. Nicht erneut fragen - + 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'... '%1' öffnen... - + 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 %2 ms zurückgegeben - + Ctrl+Alt+0 - + Ctrl+Alt+W - + Choose a database file to save under Datenbankdatei zum Speichern auswählen - + Error while saving the database to the new file. Fehler beim Speichern der Datenbank in einer neuen Datei. - + 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-Beschränkungen wurden verletzt. Bitte 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 - + &%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... - + 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? - + 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 - + DB file '%1' could not be opened Datenbankdatei '%1' konnte nicht geöffnet werden - + Table '%1' not found; settings ignored Tabelle '%1' nicht gefunden; Einstellungen werden ignoriert - + Could not open project file for writing. Reason: %1 Projekt-Datei konnte nicht schreibend geöffnet werden. Grund: %1 - + -- Reference to file "%1" (not supported by this version) -- -- Referenz zu Datei "%1" (von dieser Version nicht unterstützt) -- - + 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! @@ -4407,47 +4586,47 @@ Wenn Sie fortfahren, sollten Sie im Hinterkopf behalten, dass mit Ihrer Datenban 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) @@ -6261,26 +6440,26 @@ Soll wirklich fortgefahren werden? Bitte die Passphrase für dieses 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: Cannot open the file for sending. Fehler: Öffnen der Datei zum Senden nicht möglich. @@ -7015,32 +7194,32 @@ Die Verwendung dieser Funktion muss in den Einstellungen autorisiert werden.laden... - + 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 Liste der Spalten ermitteln - + Fetching data... Daten abrufen... - - + + Cancel Abbrechen @@ -7382,7 +7561,7 @@ Halten Sie %3Umschalt und klicken Sie, um hierher zu springen - + Delete Record Zeile löschen @@ -7484,7 +7663,7 @@ Halten Sie %3Umschalt und klicken Sie, um hierher zu springen - + Set encoding Codierung setzen @@ -7749,96 +7928,96 @@ Halten Sie %3Umschalt und klicken Sie, um hierher zu springen . Summe: %1; Durchschnitt: %2; Minimum: %3; Maximum: %4 - + Conditional formats for "%1" Bedingte Formatierung für "%1" - + determining row count... Zeilenanzahl bestimmen... - + %L1 - %L2 of >= %L3 %L1 - %L2 von >= %L3 - + %L1 - %L2 of %L3 %L1 - %L2 von %L3 - + (clipped at %L1 rows) (abgeschnitten bei %L1 Zeilen) - + 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 - + Please choose a new encoding for all tables. Bitte wählen Sie eine neue Codierung für alle Tabellen. - + Please choose a new encoding for this table. Bitte wählen Sie eine neue Codierung für diese Tabelle. - + %1 Leave the field empty for using the database encoding. %1 Lassen Sie das Feld leer, um die Datenbank-Codierung zu verwenden. - + This encoding is either not valid or not supported. Diese Codierung ist entweder nicht gültig oder nicht unterstützt. - + %1 replacement(s) made. %1 Ersetzung(en) durchgeführt. diff --git a/src/translations/sqlb_en_GB.ts b/src/translations/sqlb_en_GB.ts index 09df735a8..3353e75f8 100644 --- a/src/translations/sqlb_en_GB.ts +++ b/src/translations/sqlb_en_GB.ts @@ -718,155 +718,155 @@ If any of the other settings were altered for this database file you need to pro - + 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. - + Renaming the column 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 - + Error loading built-in extension: %1 - + could not get column information - + Error renaming table '%1' to '%2'. Message from database engine: %3 - + Creating savepoint failed. DB says: %1 - - + + Releasing savepoint failed. DB says: %1 - + could not get list of db objects: %1 - + Error setting pragma %1 to %2: %3 - + File not found. @@ -1920,7 +1920,7 @@ All data currently stored in this field will be lost. ExtendedScintilla - + Ctrl+H @@ -1931,22 +1931,22 @@ All data currently stored in this field will be lost. - + Ctrl+P - + Find... - + Find and Replace... - + Print... @@ -1954,128 +1954,128 @@ All data currently stored in this field will be lost. 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 - + Cut - + 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. @@ -2456,7 +2456,7 @@ x~y Range: values between x and y - + Tab @@ -2599,7 +2599,7 @@ x~y Range: values between x and y - + Deselect All @@ -2609,52 +2609,52 @@ x~y Range: values between x and y - + 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 - + Could not prepare INSERT statement: %1 - + Unexpected end of file. Please make sure that you have configured the correct quote characters and the file is not malformed. - + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. - + Inserting row failed: %1 @@ -2667,98 +2667,98 @@ x~y Range: values between x and y - + 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 @@ -2770,82 +2770,82 @@ You can drag SQL statements from an object row and drop them into other applicat - + 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. - + Too&ls - + 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. @@ -2853,664 +2853,843 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed - - + + 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 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 - + New &tab - + 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... - + &Save Project - + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file - + Open &Project - + 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 - + Close Pro&ject - - + + Close project and database files and return to the initial state - + Ctrl+Shift+F4 - - + + Detach Database - - + + Detach database file attached to the current database connection - + &Attach Database... - - + + Temp Store + + + + + Secure Delete + + + + + Case Sensitive Like + + + + + Journal Mode + + + + + Journal Size Limit + + + + + Recursive Triggers + + + + + Delete + pragma + + + + + Truncate + pragma + + + + + Persist + pragma + + + + + Memory + pragma + + + + + WAL + pragma + + + + + Off + pragma + + + + + Page Size + + + + + Foreign Keys + + + + + Auto Vacuum + + + + + Max Page Count + + + + + Normal + pragma + + + + + Exclusive + pragma + + + + + Checkpoint Full FSYNC + + + + + Off + + + + + Normal + + + + + + Full + + + + + Default + + + + + File + + + + + Memory + + + + + Automatic Index + + + + + Ignore Check Constraints + + + + + Full FSYNC + + + + + WAL Auto Checkpoint + + + + + User Version + + + + + Synchronous + + + + + None + + + + + Incremental + + + + + Locking Mode + + + + + 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 - + Export to &JSON - + Save as &view - + Save as view - + Shows or hides the Project toolbar. - + Extra DB Toolbar - + &Open Database - + New In-&Memory Database - + Drag && Drop SELECT Query - - + + When dragging fields from the same table or a single table, drop a SELECT query into the editor - + 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 - - + + Ctrl+Shift+W - + Table from CSV data in Clipboard... - + This treats the current clipboard contents as a CSV file and opens the same import wizard that is used for importing CSV data from a file. - + Show &Row Counts - + This shows the number of rows for each table and view in the database. - + Save Database &As... - + Save the current database as a different file - + Refresh - + Reload the database structure - + &Recently opened - + Ctrl+T - + SQL &Log @@ -3536,749 +3715,749 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed - - + + E&xecute SQL This has to be equal to the tab title in all the main tabs - + &Recent Files - + Show S&QL submitted by - + &Plot - + &New Database - - + + Ctrl+F4 - + &Revert Changes - + &Undo - - + + Undo last change to the database - + This action undoes the last change performed to the database in the Database Browser or in Execute SQL. Redoing is not possible. - + &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... - + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields from a table, as well as modify field names and types. - + 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. - + Ctrl+Shift+T - - - + + + 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. - + Automatically load the last opened DB file at startup - + Alt+Shift+0 - + The database is currently busy. - + 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? - + Could not find resource file: %1 - + Choose a project file to open - + 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 - + Click here to interrupt the currently running query. - + Ctrl+Alt+W - + Could not open database file. Reason: %1 - + In-Memory database - + Choose a database file to save under - + Error while saving the database to the new file. - + 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)... - + Do you want to save the changes made to SQL tabs in the project file '%1'? - + The statements in the tab '%1' 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 - + DB file '%1' could not be opened - + 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 no longer fully supported. If you want to load it completely, please use DB Browser for SQLite version 3.12 to convert it to the new file format. - + Table '%1' not found; settings ignored - + -- Reference to file "%1" (not supported by this version) -- - + Yes. Don't ask again - + 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 - + Ctrl+Tab - + Ctrl+Shift+Tab - + Clear List - + Window Layout - + Ctrl+Alt+0 - + Simplify Window Layout - + Dock Windows at Bottom - + Dock Windows at Left Side - + Dock Windows at Top - + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. @@ -4287,105 +4466,105 @@ Are you sure you want to save the database? - + 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. @@ -6083,24 +6262,24 @@ Are you sure you want to proceed? - + Cancel - + Uploading remote database to %1 - + Downloading remote database from %1 - + Error: Cannot open the file for sending. @@ -6833,30 +7012,30 @@ Use of this function must be authorized from Preferences. - + References %1(%2) Hold %3Shift and click to jump there - + Error changing data: %1 - + retrieving list of columns - + Fetching data... - - + + Cancel @@ -7197,7 +7376,7 @@ Hold %3Shift and click to jump there - + Delete Record @@ -7294,7 +7473,7 @@ Hold %3Shift and click to jump there - + Set encoding @@ -7559,94 +7738,94 @@ Hold %3Shift and click to jump there - + Conditional formats for "%1" - + determining row count... - + %L1 - %L2 of >= %L3 - + %L1 - %L2 of %L3 - + (clipped at %L1 rows) - + 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 - + 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. diff --git a/src/translations/sqlb_es_ES.ts b/src/translations/sqlb_es_ES.ts index c7908863e..ef00c539e 100644 --- a/src/translations/sqlb_es_ES.ts +++ b/src/translations/sqlb_es_ES.ts @@ -705,17 +705,17 @@ Si se modificaron cualquiera de los otros ajustes para este archivo de base de d - + Cancel Cancelar - + Executing SQL... Ejecutando SQL... - + Action cancelled. Acción cancelada. @@ -751,99 +751,99 @@ Si se modificaron cualquiera de los otros ajustes para este archivo de base de d ¿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 tabla 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 @@ -852,12 +852,12 @@ 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: @@ -866,32 +866,32 @@ Mensaje de la base de datos: - + 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 - + Error loading built-in extension: %1 Error cargando extensión incorporada: %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. @@ -1959,7 +1959,7 @@ Todos los datos actualmente almacenados en este campo se perderán.ExtendedScintilla - + Ctrl+H @@ -1970,22 +1970,22 @@ Todos los datos actualmente almacenados en este campo se perderán. - + Ctrl+P - + Find... Buscar... - + Find and Replace... Buscar y reemplazar... - + Print... Imprimir... @@ -1993,127 +1993,127 @@ Todos los datos actualmente almacenados en este campo se perderán. 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 - + Cut Cortar - + 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. @@ -2506,7 +2506,7 @@ x~y Rango: valores entre x e y - + Tab Tab @@ -2649,7 +2649,7 @@ x~y Rango: valores entre x e y - + Deselect All Deseleccionar Todo @@ -2659,52 +2659,52 @@ x~y Rango: valores entre x e y 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 - + Could not prepare INSERT statement: %1 No se pudo preparar la sentencia «INSERT»: %1 - + Unexpected end of file. Please make sure that you have configured the correct quote characters and the file is not malformed. Fin de archivo inesperado. Por favor, asegúrese de haber configurado correctamente el entrecomillado y de que el archivo no esté mal formado. - + 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 @@ -2738,532 +2738,711 @@ x~y Rango: valores entre x e y Editar p&ragmas - - + + Temp Store + Almacenamiento temporal + + + + Secure Delete + Borrado seguro + + + + Case Sensitive Like + LIKE sensible a mayús/minus. + + + + Journal Mode + Modo de journal + + + + Journal Size Limit + Límite en tamaño de journal + + + + Recursive Triggers + Disparadores recursivos + + + + Delete + pragma + Borrar + + + + Truncate + pragma + Truncar + + + + Persist + pragma + Persistir + + + + Memory + pragma + Memoria + + + + WAL + pragma + + + + + Off + pragma + Apagado + + + + Page Size + Tamaño de página + + + + Foreign Keys + Claves foráneas + + + + Auto Vacuum + Limpieza automática + + + + Max Page Count + Máx. número de páginas + + + + Normal + pragma + + + + + Exclusive + pragma + Exclusivo + + + + Checkpoint Full FSYNC + Checkpoint FSYNC completo + + + + Off + Apagado + + + + Normal + + + + + + Full + Completa + + + + Default + Por defecto + + + + File + Archivo + + + + Memory + Memoria + + + + Automatic Index + Indexado automático + + + + Ignore Check Constraints + Ignorar restricciones CHECK + + + + Full FSYNC + FSYNC completo + + + + WAL Auto Checkpoint + Punto de comprobación WAL auto. + + + + User Version + Versión de usuario + + + + Synchronous + Síncrono + + + + None + Ninguno + + + + Incremental + + + + + Locking Mode + Modo de bloqueo + + + + E&xecute SQL This has to be equal to the tab title in all the main tabs E&jecutar SQL - + toolBar1 toolBar1 - + &Recent Files Archivos &recientes - + 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 - + &New Database &Nueva base de datos - + 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 - + &Undo &Deshacer - - + + Undo last change to the database Deshace el último cambio realizado a la base de datos - + This action undoes the last change performed to the database in the Database Browser or in Execute SQL. Redoing is not possible. Esta acción deshace el último cambio realizado a la base de datos en «Hoja de datos» «Ejecutar SQL». Volver a realizarlo no es posible. - + Compact &Database... Compactar base de &datos... - + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields from a table, as well as modify field names and types. Abre el asistente «Modificar tabla», donde se puede renombrar una tabla existente. También se pueden añadir o borrar campos de la tabla, así como modificar los nombres de los campos y sus tipos. - + &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. - + Ctrl+Shift+T - + &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... - + &Save Project &Guardar proyecto - + Open &Project... Abrir &proyecto... - + 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 - - + + Ctrl+Shift+W - + Table from CSV data in Clipboard... Tabla desde CSV en el portapapeles... - + This treats the current clipboard contents as a CSV file and opens the same import wizard that is used for importing CSV data from a file. Esta opción interpreta el contenido del portapapeles como un archivo CSV y abre el mismo asistente usado para importar datos CSV desde un archivo. - + Show &Row Counts &Contar filas - + This shows the number of rows for each table and view in the database. Muestra el número de filas de cada una de las tablas y vistas de la base de datos. - + Save Database &As... G&uardar base de datos como... - + Save the current database as a different file Guardar la base de datos actual como un archivo diferente - + Refresh Refrescar - + Reload the database structure Recargar la estructura de la base de datos - + New &tab Nueva pesta&ña - + 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» - + Export to &JSON Exportar a &JSON - + &Open Database &Abrir base de datos - + New In-&Memory Database Nueva base de datos en &memoria - + Drag && Drop SELECT Query Arrastrar y soltar consulta SELECT - - + + When dragging fields from the same table or a single table, drop a SELECT query into the editor Cuando se arrastran campos de la misma tabla o de una única tabla, pone una consulta SELECT en el editor - + 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 - + Close Pro&ject Cerrar pro&yecto - - + + Close project and database files and return to the initial state Cierra el proyecto y los archivos de la base de datos y vuelve al estado inicial - + Ctrl+Shift+F4 - - + + Detach Database Desanclar base de datos - - + + Detach database file attached to the current database connection Desanclar el archivo de base de datos anclado a la conexión actual de la base de datos - + 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 @@ -3277,139 +3456,139 @@ Puede arrastrar sentencias SQL desde una fila de objeto y soltarlas en otras apl - + 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 - + Too&ls &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. @@ -3420,451 +3599,451 @@ Puede arrastrar sentencias SQL desde la columna Esquema y soltarlas en el editor - + &Remote &Remoto - - + + 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 Revierte el estado de la base de datos al último 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 revertir el estado de la base de datos actual al último 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 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 - + Ctrl+T - + 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 &Revertir 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 @@ -3872,164 +4051,164 @@ Puede arrastrar sentencias SQL desde la columna Esquema y soltarlas en el editor %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... Anexar base de datos... - + Import CSV file(s)... Importar archivo(s) CSV... - + 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. - + Automatically load the last opened DB file at startup Cargar automáticamente al inicio el último archivo abierto - + Ctrl+Alt+0 - + Ctrl+Alt+W - + Choose a database file to save under Elija un archivo de base de datos en el que guardar - + Error while saving the database to the new file. Error mientras se guardaba la base de datos en el nuevo archivo. - + 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 - + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. @@ -4038,104 +4217,104 @@ Si responde no se intentarán importar los datos del archivo SQL en la base de d - + The statements in the tab '%1' 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 la pestaña «%1»; todavía se están ejecutando. Al cerrar la pestaña se detendrá la ejecución. Esto puede dejar la base de datos en un estado inconsistente. ¿Está seguro de que quiere cerrar la pestaña? - + DB file '%1' could not be opened El archivo de base de datos «%1»; no se pudo 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 no longer fully supported. If you want to load it completely, please use DB Browser for SQLite version 3.12 to convert it to the new file format. Este proyecto está usando un formato de archivo antiguo porque fue creado usando «DB Browser for SQLite» versión 3.10 o menor. La carga de este formato de archivo no está soportado en su totalidad. Si quiere cargarlo completamente, por favor, use «DB Browser for SQLite» versión 3.12 para convertirlo al nuevo formato. - + Table '%1' not found; settings ignored No se ha encontrado la tabla «%1»;; ajustes ignorados - + -- Reference to file "%1" (not supported by this version) -- -- Vínculo al archivo "%1" (no soportado en esta versión) -- - + Yes. Don't ask again Sí. No pregunte otra vez - + 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? - + 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 - + 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! @@ -4144,317 +4323,317 @@ 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? - + Ctrl+Tab - + Ctrl+Shift+Tab - + Clear List Limpiar lista - + Window Layout Disposición de la ventana - + Reset Window Layout Reiniciar disposición - + Simplify Window Layout Simplificar disposición - + Alt+Shift+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 currently 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. @@ -6275,26 +6454,26 @@ Are you sure you want to proceed? 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: Cannot open the file for sending. Error: No se puede abrir el archivo para enviar. @@ -7029,32 +7208,32 @@ El uso de esta función tiene que ser autorizado desde las Preferencias.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 @@ -7396,7 +7575,7 @@ Mantenga pulsado %3Mayús. y haga clic para ir ahí - + Delete Record Borrar registro @@ -7498,7 +7677,7 @@ Mantenga pulsado %3Mayús. y haga clic para ir ahí - + Set encoding Definir codificación @@ -7763,96 +7942,96 @@ Mantenga pulsado %3Mayús. y haga clic para ir ahí . 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... - + %L1 - %L2 of >= %L3 %L1 - %L2 de >= %L3 - + %L1 - %L2 of %L3 %L1 - %L2 de %L3 - + (clipped at %L1 rows) (truncado a %L1 filas) - + 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 - + 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). diff --git a/src/translations/sqlb_fa.ts b/src/translations/sqlb_fa.ts index 207186f77..e3e052632 100644 --- a/src/translations/sqlb_fa.ts +++ b/src/translations/sqlb_fa.ts @@ -718,155 +718,155 @@ If any of the other settings were altered for this database file you need to pro - + 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 - + Error loading built-in extension: %1 - + could not get column information @@ -1917,7 +1917,7 @@ All data currently stored in this field will be lost. ExtendedScintilla - + Ctrl+H @@ -1928,22 +1928,22 @@ All data currently stored in this field will be lost. - + Ctrl+P - + Find... - + Find and Replace... - + Print... @@ -1951,128 +1951,128 @@ All data currently stored in this field will be lost. 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 - + Cut - + 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. @@ -2453,7 +2453,7 @@ x~y Range: values between x and y - + Tab @@ -2596,7 +2596,7 @@ x~y Range: values between x and y - + Deselect All @@ -2606,52 +2606,52 @@ x~y Range: values between x and y - + 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 - + Could not prepare INSERT statement: %1 - + Inserting row failed: %1 - + Unexpected end of file. Please make sure that you have configured the correct quote characters and the file is not malformed. - + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. @@ -2671,112 +2671,112 @@ You can drag SQL statements from an object row and drop them into other applicat - + 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. - + toolBar1 - + &File - + &Import - + &Export - + &Edit - + &View - + &Help - + Too&ls - + 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. @@ -2784,381 +2784,381 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed - + &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... - + 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. - + New &tab - + 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 - + Close Pro&ject - - + + Close project and database files and return to the initial state - + Ctrl+Shift+F4 - - + + Detach Database - - + + Detach database file attached to the current database connection - + W&hat's This? @@ -3184,1006 +3184,1185 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed - - + + Temp Store + + + + + Secure Delete + + + + + Case Sensitive Like + + + + + Journal Mode + + + + + Journal Size Limit + + + + + Recursive Triggers + + + + + Delete + pragma + + + + + Truncate + pragma + + + + + Persist + pragma + + + + + Memory + pragma + + + + + WAL + pragma + + + + + Off + pragma + + + + + Page Size + + + + + Foreign Keys + + + + + Auto Vacuum + + + + + Max Page Count + + + + + Normal + pragma + + + + + Exclusive + pragma + + + + + Checkpoint Full FSYNC + + + + + Off + + + + + Normal + + + + + + Full + + + + + Default + + + + + File + + + + + Memory + + + + + Automatic Index + + + + + Ignore Check Constraints + + + + + Full FSYNC + + + + + WAL Auto Checkpoint + + + + + User Version + + + + + Synchronous + + + + + None + + + + + Incremental + + + + + Locking Mode + + + + + E&xecute SQL This has to be equal to the tab title in all the main tabs - + &Recent Files - + &New Database - - + + Ctrl+F4 - + &Undo - - + + Undo last change to the database - + This action undoes the last change performed to the database in the Database Browser or in Execute SQL. Redoing is not possible. - + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields from a table, as well as modify field names and types. - + Shift+F1 - + &About - + &Recently opened - + 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 - + Ctrl+Shift+T - - - + + + 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 Project - - + + Save the current session to a file - + Open &Project... - + 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 - + Export to &JSON - + Save as &view - + Save as view - + Shows or hides the Project toolbar. - + Extra DB Toolbar - + &Open Database - + New In-&Memory Database - + Drag && Drop SELECT Query - - + + When dragging fields from the same table or a single table, drop a SELECT query into the editor - + 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+Shift+W - + Table from CSV data in Clipboard... - + This treats the current clipboard contents as a CSV file and opens the same import wizard that is used for importing CSV data from a file. - + Show &Row Counts - + This shows the number of rows for each table and view in the database. - + Save Database &As... - + Save the current database as a different file - + Refresh - + Reload the database structure - + Ctrl+L - + Ctrl+D - + Ctrl+I - + Ctrl+E - + Ctrl+Alt+0 - + The database is currently 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 - + Ctrl+Alt+W - - + + Choose a database file - + Could not open database file. Reason: %1 - - - + + + Choose a filename to save under - + In-Memory database - + Choose a database file to save under - + Error while saving the database to the new file. - + 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. - + 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)... - + 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? - + The statements in the tab '%1' 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(*) - + 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. - + Ctrl+Tab - + Ctrl+Shift+Tab - + Clear List - + Window Layout - + Reset Window Layout - + Simplify Window Layout - + Alt+Shift+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 - - + + 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 - + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. @@ -4191,197 +4370,197 @@ If you answer no we will attempt to import the data in the SQL file to the curre - + DB file '%1' could not be opened - + 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 no longer fully supported. If you want to load it completely, please use DB Browser for SQLite version 3.12 to convert it to the new file format. - + Table '%1' not found; settings ignored - + Could not open project file for writing. Reason: %1 - + -- Reference to file "%1" (not supported by this version) -- - + Project saved to file '%1' - + Yes. Don't ask again - + Rename Tab - + Duplicate Tab - + Close Tab - + Opening '%1'... - + There was an error opening '%1'... - + Value is not a valid URL or filename: %1 - + Setting PRAGMA values will commit your current transaction. Are you sure? - + Automatically load the last opened DB file at startup - + 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) - + 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) @@ -6079,24 +6258,24 @@ Are you sure you want to proceed? - + Cancel - + Uploading remote database to %1 - + Downloading remote database from %1 - + Error: Cannot open the file for sending. @@ -6829,30 +7008,30 @@ Use of this function must be authorized from Preferences. - + References %1(%2) Hold %3Shift and click to jump there - + Error changing data: %1 - + retrieving list of columns - + Fetching data... - - + + Cancel @@ -7188,7 +7367,7 @@ Hold %3Shift and click to jump there - + Delete Record @@ -7290,7 +7469,7 @@ Hold %3Shift and click to jump there - + Set encoding @@ -7553,94 +7732,94 @@ Hold %3Shift and click to jump there - + Conditional formats for "%1" - + determining row count... - + %L1 - %L2 of >= %L3 - + %L1 - %L2 of %L3 - + (clipped at %L1 rows) - + 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 - + 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. diff --git a/src/translations/sqlb_fr.ts b/src/translations/sqlb_fr.ts index 498c59e24..6a90f4aeb 100644 --- a/src/translations/sqlb_fr.ts +++ b/src/translations/sqlb_fr.ts @@ -705,17 +705,17 @@ Il sera appliqué à chaque valeur avant son affichage. - + Cancel Annuler - + Executing SQL... Exécution du SQL... - + Action cancelled. Action annulée. @@ -751,99 +751,99 @@ Il sera appliqué à chaque valeur avant son affichage. 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 @@ -852,12 +852,12 @@ 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: @@ -866,33 +866,33 @@ Message du moteur de base de données : - + 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 - + Error loading built-in 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é. @@ -1963,7 +1963,7 @@ Toutes les données contenues dans ce champ seront perdues. ExtendedScintilla - + Ctrl+H @@ -1974,22 +1974,22 @@ Toutes les données contenues dans ce champ seront perdues. - + Ctrl+P - + Find... Rechercher... - + Find and Replace... Chercher et remplacer... - + Print... Imprimer... @@ -1997,129 +1997,129 @@ Toutes les données contenues dans ce champ seront perdues. 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 - + Cut Couper - + 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 - + Ctrl+Shift+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. @@ -2513,7 +2513,7 @@ x~y Fourchette : valeurs entre x et y - + Tab Tabulation @@ -2656,7 +2656,7 @@ x~y Fourchette : valeurs entre x et y - + Deselect All Désélectionner tout @@ -2667,52 +2667,52 @@ x~y Fourchette : valeurs entre x et y 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 - + Could not prepare INSERT statement: %1 Impossible de préparer l'instruction INSERT : %1 - + Unexpected end of file. Please make sure that you have configured the correct quote characters and the file is not malformed. Fin de fichier inattendue. Veuillez vous assurer que vous avez configuré les bons guillemets et que le fichier n'est pas défectueux. - + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. L'importation du fichier'%1' a pris %2 ms. %3 ms ont été utilisés par la fonction enregistrement. - + Inserting row failed: %1 L'insertion de l'enregistrement a échoué : %1 @@ -2720,32 +2720,32 @@ x~y Fourchette : valeurs entre x et y 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. Écrire le pragma pourrait écraser un LIKE redéfini fourni par une extension SQLite. - + Too&ls &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 @@ -2755,439 +2755,439 @@ x~y Fourchette : valeurs entre x et y 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. - + &Undo Ann&uler - - + + Undo last change to the database Annuler la dernière modification apportée à la base de données - + This action undoes the last change performed to the database in the Database Browser or in Execute SQL. Redoing is not possible. Cette action annule la dernière modification apportée à la base de données dans le navigateur de bases de données ou dans l'onglet Exécuter le SQL. Il n'est pas possible d'annuler à nouveau. - + &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 - + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields from a table, as well as modify field names and types. Ouvrir l'assistant de modification d'une table où 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. - + 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 exécutées. - + Ctrl+Shift+T Ctrl+Maj+T - + 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... Faire une &donation sur Patreon... - + &Save Project Enre&gistrer le projet - + Open &Project... Ouvrir un &projet... - + 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 une base de données en &lecture seule... - + Ctrl+Shift+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 - + Export to &JSON Exporter au format &JSON - + Save as &view Enregistrer comme une &vue - + Save as view Enregistrer comme une vue - + &Open Database &Ouvrir une base de données - + Drag && Drop SELECT Query Glisser && Déposer la requête SELECT - - + + When dragging fields from the same table or a single table, drop a SELECT query into the editor Lorsque vous faites glisser des champs d'une même table ou d'une table unique, déposez une requête SELECT dans l'éditeur - + Browse Table Parcourir la table - - + + Ctrl+Shift+W Ctrl+Maj+W - + Table from CSV data in Clipboard... Table depuis les données CSV du Presse-papiers... - + This treats the current clipboard contents as a CSV file and opens the same import wizard that is used for importing CSV data from a file. Cette opération traite le contenu actuel du presse-papiers comme un fichier CSV et ouvre le même assistant d'importation que celui utilisé pour importer des données CSV à partir d'un fichier. - + Show &Row Counts Afficher le nomb&re de lignes - + This shows the number of rows for each table and view in the database. Indique le nombre de lignes pour chaque table et vue de la base de données. - + Save Database &As... Enregistrer la b&ase de données sous... - + Save the current database as a different file Enregistrer la base de données en cours dans un autre fichier - + Refresh Rafraîchir - + Reload the database structure Recharger la structure de la base de données - + 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 de projet DB Browser pour SQLite @@ -3213,316 +3213,495 @@ x~y Fourchette : valeurs entre x et y Éditer les p&ragmas - - + + Temp Store + + + + + Secure Delete + + + + + Case Sensitive Like + + + + + Journal Mode + + + + + Journal Size Limit + + + + + Recursive Triggers + + + + + Delete + pragma + + + + + Truncate + pragma + + + + + Persist + pragma + + + + + Memory + pragma + + + + + WAL + pragma + + + + + Off + pragma + + + + + Page Size + + + + + Foreign Keys + Clés étrangères + + + + Auto Vacuum + + + + + Max Page Count + + + + + Normal + pragma + + + + + Exclusive + pragma + + + + + Checkpoint Full FSYNC + + + + + Off + + + + + Normal + + + + + + Full + + + + + Default + Défaut + + + + File + Fichier + + + + Memory + + + + + Automatic Index + + + + + Ignore Check Constraints + + + + + Full FSYNC + + + + + WAL Auto Checkpoint + + + + + User Version + + + + + Synchronous + + + + + None + Aucun + + + + Incremental + + + + + Locking Mode + + + + + E&xecute SQL This has to be equal to the tab title in all the main tabs E&xécuter le SQL - + &Recent Files Fichiers &récents - + &New Database &Nouvelle base de données - + This button lets you open a DB Browser for SQLite project file Ce bouton vous permet d'ouvrir un fichier de 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 indiqué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 le 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 &étrangè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 [Ctrl+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 - + Close Pro&ject Fermer le pro&jet - - + + Close project and database files and return to the initial state Fermer les fichiers du projet et de la base de données et revenir à l'état initial - + Ctrl+Shift+F4 Ctrl+Maj+F4 - - + + Detach Database Détacher une base de données - - + + Detach database file attached to the current database connection Détacher le fichier de base de données attaché à la connexion actuelle à la base de données - + 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 la 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 la table... - + 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 - + &Recently opened Ouvert &récemment - + 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. @@ -3533,58 +3712,58 @@ Vous pouvez faire glisser les instructions SQL de la colonne Schéma et les dép - - + + 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 - - + + 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 @@ -3598,297 +3777,297 @@ Vous pouvez faire glisser les instructions SQL d'une ligne d'objet et - + 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 - + 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 ? - + New &tab Nouvel ongle&t - + 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 - + 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 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+D - + Ctrl+I - + Reset Window Layout Rétablir la disposition des fenêtres - + The database is currently 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 @@ -3897,297 +4076,297 @@ Motif : %1 %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. - + Ctrl+Tab Ctrl+Tab - + Ctrl+Shift+Tab Ctrl+Maj+Tab - + Clear List Effacer la liste - + Window Layout Disposition des fenêtres - + Simplify Window Layout Simplifier la disposition des fenêtres - + Alt+Shift+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 maintenant 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 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 - + Automatically load the last opened DB file at startup - + 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 vouloir supprimer la vue %1 ? - + Are you sure you want to delete the trigger '%1'? Êtes-vous sûr de vouloir supprimer le déclencheur %1 ? - + Are you sure you want to delete the index '%1'? Êtes-vous sûr de vouloir 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 le 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 Éditer la vue %1 - + Edit Trigger %1 Éditer 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' -- -- EXÉCUTION DE LA SELECTION DANS '%1' -- - + -- EXECUTING LINE IN '%1' -- -- EXÉCUTION DE LA LIGNE DANS '%1' -- - + -- EXECUTING ALL IN '%1' -- -- EXÉCUTER 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 - + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. @@ -4196,226 +4375,226 @@ Are you sure? - + The statements in the tab '%1' 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 traitements de l'onglet '%1' sont toujours en cours d'exécution. La fermeture de l'onglet arrêtera l'exécution. Cela pourrait laisser la base de données dans un état incohérent. Êtes-vous sûr de vouloir fermer l'onglet ? - + 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 no longer fully supported. If you want to load it completely, please use DB Browser for SQLite version 3.12 to convert it to the new file format. Ce fichier de projet utilise un ancien format de fichier car il a été créé à l'aide de DB Browser for SQLite version 3.10 ou inférieure. Le chargement de ce format de fichier n'est plus entièrement pris en charge. Si vous souhaitez le charger complètement, veuillez utiliser DB Browser for SQLite version 3.12 pour le convertir au nouveau format de fichier. - + Project saved to file '%1' Projet enregistré dans le fichier '%1' - + Yes. Don't ask again Oui. Ne plus demander - + 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 - + Ctrl+Alt+0 Ctrl+Alt+0 - + Ctrl+Alt+W Ctrl+Alt+W - + Choose a database file to save under Choisissez un fichier de base de donnés pour enregistrer sous - + Error while saving the database to the new file. Erreur lors de l'enregistrement de la base de données dans le nouveau fichier. - + 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 la vue - + Modify Trigger Modifier le déclencheur - + Modify Index Modifier l'index - + Modify Table Modifier la 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... - + 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 ? - + 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 - + DB file '%1' could not be opened Le fichier DB '%1' n'a pu être ouvert - + Table '%1' not found; settings ignored Table "%1" introuvable ; paramètres ignorés - + Could not open project file for writing. Reason: %1 Le fichier projet ne peut être ouvert en écriture. Raison : %1 - + -- Reference to file "%1" (not supported by this version) -- -- Référence au fichier "%1" (non supporté par cette version) -- - + 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! @@ -4424,47 +4603,47 @@ Si vous choisissez de continuer, ayez à l'esprit que des choses non souhai 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) @@ -6279,26 +6458,26 @@ Are you sure you want to proceed? 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: Cannot open the file for sending. Erreur : le fichier à envoyer ne peut être ouvert. @@ -7035,32 +7214,32 @@ L'utilisation de cette fonction doit être autorisée à partir des Préfé 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 @@ -7402,7 +7581,7 @@ Appuyez simultanément sur %3+Maj et cliquez pour arriver ici - + Delete Record Supprimer l'enregistrement @@ -7504,7 +7683,7 @@ Appuyez simultanément sur %3+Maj et cliquez pour arriver ici - + Set encoding Définir l'encodage @@ -7769,96 +7948,96 @@ Appuyez simultanément sur %3+Maj et cliquez pour arriver ici . 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... - + %L1 - %L2 of >= %L3 %L1 - %L2 of >= %L3 - + %L1 - %L2 of %L3 %L1 - %L2 of %L3 - + (clipped at %L1 rows) (coupé à %L1 lignes) - + 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 - + 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). diff --git a/src/translations/sqlb_id.ts b/src/translations/sqlb_id.ts index fadbda6e9..98242febf 100644 --- a/src/translations/sqlb_id.ts +++ b/src/translations/sqlb_id.ts @@ -731,114 +731,114 @@ Bila sebarang pengaturan lain diubah untuk berkas basis data ini, Anda perlu men - + Cancel Batal - - + + No database file opened Tidak ada berkas basis data yang dibuka - + Executing SQL... Mengeksekusi SQL... - + Action cancelled. Aksi dibatalkan. - - + + Error in statement #%1: %2. Aborting execution%3. Kesalahan dalam pernyataan #%1: %2. Menggugurkan eksekusi %3. - - + + and rolling back dan me-roll back - + didn't receive any output from %1 tak menerima keluaran apa pun dari %1 - + could not execute command: %1 tidak bisa mengeksekusi perintah: %1 - + Cannot delete this object Tidak bisa menghapus objek ini - + Cannot set data on this object Tidak bisa menata data pada objek ini - - + + A table with the name '%1' already exists in schema '%2'. Sebuah tabel dengan nama '%1' sudah ada dalam skema '%2'. - + No table with name '%1' exists in schema '%2'. Tidak ada tabel dengan nama '%1' ada dalam skema '%2'. - - + + Cannot find column %1. Tidak bisa temukan kolom %1. - + Creating savepoint failed. DB says: %1 Gagal membuat savepoint. Pesan DB: %1 - + Renaming the column failed. DB says: %1 Gagal mengubah nama kolom. Pesan DB: %1 - - + + Releasing savepoint failed. DB says: %1 Gagal melepas savepoint. Pesan DB: %1 - + Creating new table failed. DB says: %1 Gagal membuat tabel baru. Pesan DB: %1 - + Copying data to new table failed. DB says: %1 Gagal menyalin data ke tabel baru. Pesan DB: %1 - + Deleting old table failed. DB says: %1 Gagal menghapus tabel lama. Pesan 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: @@ -847,27 +847,27 @@ Menggugurkan eksekusi %3. - + could not get list of databases: %1 tidak bisa memperoleh daftar basis data: %1 - + Error loading extension: %1 Kesalahan saat memuat ekstensi: %1 - + Error loading built-in extension: %1 - + could not get column information tidak bisa memperoleh informasi kolom - + Error renaming table '%1' to '%2'. Message from database engine: %3 @@ -876,17 +876,17 @@ Pesan dari mesin basis data: %3 - + could not get list of db objects: %1 tidak bisa memperoleh daftar obyek db: %1 - + Error setting pragma %1 to %2: %3 Kesalahan saat mengatur pragma %1 ke %2: %3 - + File not found. Berkas tidak ditemukan. @@ -1950,7 +1950,7 @@ Semua data yang saat ini disimpan dalam ruas ini akan hilang. ExtendedScintilla - + Ctrl+H Ctrl+H @@ -1961,22 +1961,22 @@ Semua data yang saat ini disimpan dalam ruas ini akan hilang. - + Ctrl+P Ctrl+P - + Find... Cari... - + Find and Replace... Cari dan Ganti... - + Print... Cetak... @@ -1984,129 +1984,129 @@ Semua data yang saat ini disimpan dalam ruas ini akan hilang. ExtendedTableWidget - + Use as Exact Filter Gunakan sebagai Filter Eksak - + Containing Memuat - + Not containing Tidak memuat - + Not equal to Tidak sama dengan - + Greater than Lebih dari - + Less than Kurang dari - + Greater or equal Lebih dari atau sama dengan - + Less or equal Kurang dari atau sama dengan - + Between this and... Antara ini dan... - + Regular expression Ekspresi reguler - + Edit Conditional Formats... Sunting Format Bersyarat... - + Set to NULL Atur ke NULL - + Cut Potong - + Copy Salin - + Copy with Headers Salin dengan Header - + Copy as SQL Salin sebagai SQL - + Paste Tempel - + Print... Cetak... - + Use in Filter Expression Pakai dalam Ekspresi Filter - + 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? Konten papan klip lebih besar daripada rentang yang dipilih. Tetap disisipkan? - + <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>Belum semua data dimuat. <b>Apakah Anda ingin memuat semua data sebelum memilih semua baris?</b><p><p>Menjawab <b>Tidak</b> berarti tidak ada lagi data yang akan dimuat dan pemilihan tidak akan dilaksanakan.<br/>Menjawab <b>Ya</b> mungkin akan makan waktu ketika data dimuat tapi pemilihan akan lengkap.</p>Peringatan: Memuat semua data mungkin memerlukan sejumlah besar memori untuk tabel-tabel besar. - + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. Tidak bisa menata pilihan ke NULL. Kolom %1 memiliki konstrain NOT NULL. Cannot set selection to NULL. Column %1 has a NOT NULL constraint. @@ -2499,7 +2499,7 @@ x~y Rentang: nilai antara x dan y - + Tab Tab @@ -2642,7 +2642,7 @@ x~y Rentang: nilai antara x dan y - + Deselect All Hapus Semua Pilihan @@ -2652,52 +2652,52 @@ x~y Rentang: nilai antara x dan y Cocok Serupa - + Select All Pilih Semua - + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. Sudah ada tabel bernama '%1' dan suatu impor ke tabel yang telah ada hanya mungkin bila cacah kolom cocok. - + There is already a table named '%1'. Do you want to import the data into it? Sudah ada tabel bernama '%1'. Apakah Anda ingin mengimpor data ke dalamnya? - + Creating restore point failed: %1 Gagal membuat titik pemulihan: %1 - + Creating the table failed: %1 Gagal membuat tabel: %1 - + importing CSV mengimpor CSV - + Could not prepare INSERT statement: %1 Tidak bisa mempersiapkan pernyataan INSERT: %1 - + Unexpected end of file. Please make sure that you have configured the correct quote characters and the file is not malformed. Akhir berkas yang tak diduga. Harap pastikan bahwa Anda telah mengonfigurasi karakter kutip yang benar dan berkas tidak salah bentuk. - + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. Mengimpor berkas '%1' makan waktu %2 ms. %3 ms dari total itu dihabiskan dalam fungsi baris. - + Inserting row failed: %1 Gagal menyisipkan baris: %1 @@ -2710,98 +2710,98 @@ x~y Rentang: nilai antara x dan y Peramban DB untuk SQLite - + toolBar1 bilahAlat1 - + Opens the SQLCipher FAQ in a browser window Membuka FAQ SQL Cipher dalam sebuah jendela peramban - + Export one or more table(s) to a JSON file Ekspor satu tabel atau lebih ke berkas JSON - + &File &Berkas - + &Import &Impor - + &Export &Ekspor - + &Edit &Sunting - + &View &Tilik - + &Help B&antuan - + DB Toolbar Bilah Alat DB - + Edit Database &Cell &Sunting Sel Basis Data - + DB Sche&ma Ske&ma DB - + &Remote &Remote - - + + Execute current line Eksekusi baris kini - + This button executes the SQL statement present in the current editor line Tombol ini mengeksekusi pernyataan SQL yang ada dalam baris penyunting saat ini - + Shift+F5 Shift+F5 - + Sa&ve Project Simpan Pro&yek - + Open an existing database file in read only mode Buka berkas basis data yang ada dalam mode hanya baca - + User Pengguna @@ -2815,82 +2815,82 @@ Anda dapat menyeret pernyataan SQL dari suatu baris objek dan menjatuhkan mereka - + Un/comment block of SQL code Jadikan komentar/bukan komentar blok kode SQL - + Un/comment block Jadikan komentar/bukan komentar blok - + Comment or uncomment current line or selected block of code Jadikan komentar/bukan komentar baris saat ini atau blok kode yang dipilih - + 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. Jadikan komentar/bukan komentar baris yang dipilih atau baris saat ini, bila tidak ada yang dipilih. Seluruh blok dijungkitkan menurut baris pertama. - + Ctrl+/ Ctrl+/ - + Stop SQL execution Hentikan eksekusi SQL - + Stop execution Hentikan eksekusi - + Stop the currently running SQL script Hentikan skrip SQL yang saat ini sedang berjalan - + 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. Peringatan: pragma ini tidak dapat dibaca dan nilai ini telah disimpulkan. Menulis pragma mungkin menimpa suatu LIKE yang didefinisikan ulang yang disediakan oleh sebuah ekstensi SQLite. - + Too&ls Pera&latan - + Application Aplikasi - + Error Log Log Kesalahan - + This button clears the contents of the SQL logs Tombol ini membersihkan isi log SQL - + &Clear &Bersihkan - + This panel lets you examine a log of all SQL commands issued by the application or by yourself Panel ini memungkinkan Anda memeriksa log dari semua perintah SQL yang diberikan oleh aplikasi atau oleh Anda sendiri - + 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. @@ -2901,664 +2901,843 @@ Anda dapat menyeret pernyataan SQL dari kolom Skema dan menjatuhkan mereka ke da - - + + Project Toolbar Bilah Alat Proyek - + Extra DB toolbar Bilah alat DB ekstra - - - + + + Close the current database file Tutup berkas basis data saat ini - + &New Database... &Basis Data Baru... - - + + Create a new database file Buat suatu berkas basis data baru - + This option is used to create a new database file. Opsi ini dipakai untuk membuat sebuah berkas basis data baru. - + Ctrl+N Ctrl+N - - + + &Open Database... Buk&a Basis Data... - - - - - + + + + + Open an existing database file Buka sebuah berkas basis data yang ada - - - + + + This option is used to open an existing database file. Opsi ini dipakai untuk membuka sebuah berkas basis data yang ada. - + Ctrl+O Ctrl+O - + &Close Database &Tutup Basis Data - + This button closes the connection to the currently open database file Tombol ini menutup koneksi ke berkas basis data yang saat ini terbuka - - + + Ctrl+W Ctrl+W - - + + Revert database to last saved state Pulihkan basis data ke keadaan tersimpan terakhir - + 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. Opsi ini dipakai untuk memulihkan berkas basis data saat ini ke keadaan tersimpan terakhir. Semua perubahan yang dibuat sejak operasi simpan terakhir hilang. - - + + Write changes to the database file Tulis perubahan ke berkas basis data - + This option is used to save changes to the database file. Opsi ini dipakai untuk menyimpan perubahan ke berkas basis data. - + Ctrl+S Ctrl+S - + Compact &Database... Mampatkan Basis &Data... - + Compact the database file, removing space wasted by deleted records Memampatkan berkas basis data, menghapus ruang yang terbuang oleh record yang dihapus - - + + Compact the database file, removing space wasted by deleted records. Memampatkan berkas basis data, menghapus ruang yang terbuang oleh record yang dihapus. - + E&xit &Keluar - + Ctrl+Q Ctrl+Q - + Import data from an .sql dump text file into a new or existing database. Impor data dari sebuah berkas teks dump sql ke dalam basis data baru atau yang ada. - + 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. Opsi ini memungkinkan Anda mengimpor data dari berkas teks curah .sql ke dalam basis data baru atau yang ada. Berkas curah SQL dapat dibuat pada kebanyakan mesin basis data, termasuk MySQL dan PostgreSQL. - + Open a wizard that lets you import data from a comma separated text file into a database table. Membuka suatu wahana pandu yang mengizinkan Anda mengimpor data dari berkas teks dengan pemisah koma ke dalam tabel basis data. - + 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. Opsi ini membuka suatu wahana pandu yang memungkinkan Anda mengimpor data dari berkas teks dipisah koma ke dalam tabel basis data. Berkas CSV dapat dibuat pada kebanyakan aplikasi basis data dan lembar kerja. - + Export a database to a .sql dump text file. Ekspor suatu basis data ke sebuah berkas teks curah .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. Opsi ini memungkinkan Anda mengekspor sebuah basis data ke suatu berkas teks curah .sql. Berkas curah SQL memuat semua data yang diperlukan untuk mencipta ulang basis data pada kebanyakan mesin basis data, termasuk MySQL dan PostgreSQL. - + Export a database table as a comma separated text file. Ekspor suatu tabel basis data sebagai sebuah berkas teks yang dipisah koma. - + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. Ekspor suatu tabel basis data sebagai berkas teks yang dipisah koma, siap untuk diimpor ke dalam aplikasi lembar kerja atau basis data lain. - + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database Membuka wahana pandu Buat Tabel, dimana mungkin untuk mendefinisikan nama dan ruas bagi suatu tabel baru dalam basis data - - + + Delete Table Hapus Tabel - + Open the Delete Table wizard, where you can select a database table to be dropped. Membuka wahana pandu Hapus Tabel, dimana Anda dapat memilih sebuah tabel basis data yang akan di-drop. - + Open the Create Index wizard, where it is possible to define a new index on an existing database table. Membuka wahana pandu Buat Indeks, dimana mungkin untuk mendefinisikan sebuah indeks baru pada tabel basis data yang ada. - + &Preferences... &Preferensi... - - + + Open the preferences window. Buka jendela preferensi. - + &DB Toolbar Bilah Alat &DB - + Shows or hides the Database toolbar. Menampilkan atau menyembunyikan bilah alat Basis Data. - + Shift+F1 Shift+F1 - + New &tab &Tab baru - + Open SQL file(s) Buka berkas SQL - + This button opens files containing SQL statements and loads them in new editor tabs Tombol ini membuka berkas yang memuat pernyataan SQL dan memuat mereka dalam tab penyunting baru - + Execute line Eksekusi baris - + &Wiki &Wiki - + F1 F1 - + Bug &Report... Lapo&ran Bug... - + Feature Re&quest... Per&mintaan Fitur... - + Web&site &Situs Web - + &Donate on Patreon... &Donasi di Patreon... - + &Save Project &Simpan Proyek - + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file Tombol ini memungkinkan Anda menyimpan semua pengaturan terkait DB yang terbuka ke suatu berkas proyek Peramban DB untuk SQLite - + Open &Project Buka &Proyek - + This button lets you open a DB Browser for SQLite project file Tombol ini memungkinkan Anda membuka suatu berkas proyek Peramban DB untuk SQLite - + Ctrl+Shift+O Ctrl+Shift+O - + &Save Project As... &Simpan Proyek Sebagai... - - - + + + Save the project in a file selected in a dialog Simpan proyek dalam suatu berkas yang dipilih dalam sebuah dialog - + Save A&ll Simpan Se&mua - - - + + + Save DB file, project file and opened SQL files Simpan berkas DB, berkas proyek, dan berkas SQL yang dibuka - + Ctrl+Shift+S Ctrl+Shift+S - + Browse Table Ramban Tabel - + Close Pro&ject Tutup Pro&yek - - + + Close project and database files and return to the initial state Tutup berkas basis data dan proyek, dan kembali ke keadaan awal - + Ctrl+Shift+F4 Ctrl+Shift+F4 - - + + Detach Database Lepas Cantolan Basis Data - - + + Detach database file attached to the current database connection Lepas cantolan berkas basis data yang tercantol ke koneksi basis data saat ini - + &Attach Database... C&antol Basis Data... - - + + Temp Store + + + + + Secure Delete + + + + + Case Sensitive Like + + + + + Journal Mode + + + + + Journal Size Limit + + + + + Recursive Triggers + + + + + Delete + pragma + + + + + Truncate + pragma + + + + + Persist + pragma + + + + + Memory + pragma + + + + + WAL + pragma + + + + + Off + pragma + + + + + Page Size + + + + + Foreign Keys + Foreign Key + + + + Auto Vacuum + + + + + Max Page Count + + + + + Normal + pragma + + + + + Exclusive + pragma + + + + + Checkpoint Full FSYNC + + + + + Off + + + + + Normal + + + + + + Full + + + + + Default + Baku + + + + File + Berkas + + + + Memory + + + + + Automatic Index + + + + + Ignore Check Constraints + + + + + Full FSYNC + + + + + WAL Auto Checkpoint + + + + + User Version + + + + + Synchronous + + + + + None + Nihil + + + + Incremental + + + + + Locking Mode + + + + + Add another database file to the current database connection Tambahkan berkas basis data lain ke koneksi basis data saat ini - + This button lets you add another database file to the current database connection Tombol ini memungkinkan Anda menambah berkas basis data lain ke koneksi basis data saat ini - + &Set Encryption... Atur Enkrip&si... - + SQLCipher &FAQ &FAQ SQLCipher - + Table(&s) to JSON... Tabel ke J&SON... - + Open Data&base Read Only... &Buka Basis Data Hanya-Baca... - + Save results Simpan hasil - + Save the results view Simpan view hasil - + This button lets you save the results of the last executed query Tombol ini memungkinkan Anda menyimpan hasil dari query yang terakhir dieksekusi - - + + Find text in SQL editor Cari teks dalam penyunting SQL - + Find Cari - + This button opens the search bar of the editor Tombol ini membuka bilah pencarian dari penyunting - + Ctrl+F Ctrl+F - - + + Find or replace text in SQL editor Cari atau ganti teks dalam penyunting SQL - + Find or replace Cari atau ganti - + This button opens the find/replace dialog for the current editor tab Tombol ini membuka dialog cari/ganti untuk tab penyunting saat ini - + Ctrl+H Ctrl+H - + Export to &CSV Ekspor ke &CSV - + Export to &JSON Ekspor ke &JSON - + Save as &view Simpan sebagai &view - + Save as view Simpan sebagai view - + Shows or hides the Project toolbar. Menampilkan atau menyembunyikan bilah alat Proyek. - + Extra DB Toolbar Bila Alat DB Ekstra - + &Open Database Buk&a Basis Data - + New In-&Memory Database Basis Data Dalam &Memori Baru - + Drag && Drop SELECT Query Seret && Jatuhkan Query SELECT - - + + When dragging fields from the same table or a single table, drop a SELECT query into the editor Ketika menyeret ruas dari tabel yang sama atau suatu tabel tunggal, menjatuhkan suatu query SELECT ke dalam penyunting - + Drag && Drop Qualified Names Seret && Jatuhkan Qualified Name - - + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor Pakai qualified name (mis. "Table"."Field") ketika menyeret objek dan menjatuhkan mereka ke dalam penyunting - + Drag && Drop Enquoted Names Seret && Jatuhkan Nama Berkutip - - + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor Pakai identifier berkutip (mis. "Table1") ketika menyeret objek dan menjatuhkan mereka ke dalam penyunting - + &Integrity Check Pemeriksaan &Integritas - + 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. Menjalankan pragma integrity_check atas basis data yang terbuka dan mengembalikan hasil dalam tab Jalankan SQL. Pragma ini melakukan pemeriksaan integritas dari seluruh basis data. - + &Foreign-Key Check Pemeriksaan &Foreign-Key - + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab Menjalankan pragma foreign_key_check atas basis data yang terbuka dan mengembalikan hasil dalam tab Jalankan SQL - + &Quick Integrity Check Pemeri&ksaan Cepat Integritas - + Run a quick integrity check over the open DB Menjalankan pemeriksaan cepat atas integritas pada DB yang terbuka - + 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. Menjalankan pragma quick_check atas basis data yang terbuka dan mengembalikan hasil dalam tab Jalankan SQL. Perintah ini melakukan hampir seluruh pemeriksaan dari PRAGMA integrity_check tapi berjalan jauh lebih cepat. - + &Optimize &Optimasikan - + Attempt to optimize the database Mencoba mengoptimasi basis data - + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. Menjalankan pragma optimasi atas basis data yang dibuka. Pragma ini mungkin melakukan optimasi yang akan memperbaiki kinerja dari query di masa mendatang. - - + + Print Cetak - + Print text from current SQL editor tab Cetak teks dari tab penyunting SQL saat ini - + Open a dialog for printing the text in the current SQL editor tab Membuka suatu dialog untuk mencetak teks dalam tab penyunting SQL saat ini - + Print the structure of the opened database Cetak struktur dari basis data yang dibuka - + Open a dialog for printing the structure of the opened database Membuka suatu dialog untuk mencetak struktur dari basis data yang dibuka - - + + Ctrl+Shift+W Ctrl+Shift+W - + Table from CSV data in Clipboard... Tabel dari data CSV dalam Papan Klip... - + This treats the current clipboard contents as a CSV file and opens the same import wizard that is used for importing CSV data from a file. Ini memperlakukan konten papan klip saat ini sebagai suatu berkas CSV dan membuka wahana pandu impor yang sama dengan yang dipakai untuk mengimpor data CSV dari suatu berkas. - + Show &Row Counts Tampilkan Cacah Ba&ris - + This shows the number of rows for each table and view in the database. Ini menampilkan cacah baris bagi setiap tabel dan view dalam basis data. - + Save Database &As... Simpan Basis Data Seb&agai... - + Save the current database as a different file Menyimpan basis data saat ini sebagai suatu berkas yang berbeda - + Refresh Segarkan - + Reload the database structure Memuat ulang struktur basis data - + &Recently opened Ba&ru-baru ini dibuka - + Ctrl+T Ctrl+T - + SQL &Log &Log SQL @@ -3584,308 +3763,308 @@ Anda dapat menyeret pernyataan SQL dari kolom Skema dan menjatuhkan mereka ke da Sunting P&ragma - - + + E&xecute SQL This has to be equal to the tab title in all the main tabs Jalan&kan SQL - + &Recent Files Be&rkas Baru-baru Ini - + Show S&QL submitted by Tampilkan S&QL yang dikirim oleh - + &Plot &Plot - + &New Database &Basis Data Baru - - + + Ctrl+F4 Ctrl+F4 - + &Revert Changes Balikkan Pe&rubahan - + &Undo Tak Ja&di - - + + Undo last change to the database Batalkan perubahan terakhir ke basis data - + This action undoes the last change performed to the database in the Database Browser or in Execute SQL. Redoing is not possible. Aksi ini membatalkan perubahan terakhir yang dilakukan ke basis data dalam Peramban Basis Data atau dalam Jalankan SQL. Menjalankan ulang tidak mungkin. - + &Write Changes &Tulis Perubahan - + &Database from SQL file... Basis &data dari berkas SQL... - + &Table from CSV file... &Tabel dari berkas CSV... - + &Database to SQL file... Basis &data ke berkas SQL... - + &Table(s) as CSV file... &Tabel sebagai berkas CSV... - + &Create Table... &Buat Tabel... - + &Delete Table... &Hapus Tabel... - + &Modify Table... &Ubah Tabel... - + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields from a table, as well as modify field names and types. Membuka wahana pandu Ubah Tabel, dimana dimungkinkan mengubah nama suatu tabel yang ada. Juga mungkin untuk menambah atau menghapus ruas dari suatu tabel, maupun mengubah nama dan tipe ruas. - + Create &Index... Buat &Indeks... - + W&hat's This? Apa &Ini? - + &About Perih&al - + This button opens a new tab for the SQL editor Tombol ini membuka suatu tab baru bagi penyunting SQL - + &Execute SQL &Eksekusi SQL - + Execute all/selected SQL Eksekusi semua/SQL yang dipilih - + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. Tombol ini mengeksekusi pernyataan SQL yang saat ini dipilih. Bila tidak ada teks yang dipilih, semua pernyataan dieksekusi. - + Ctrl+Shift+T Ctrl+Shift+T - - - + + + Save SQL file Simpan berkas SQL - + &Load Extension... &Muat Ekstensi... - + Ctrl+E Ctrl+E - + Export as CSV file Ekspor sebagai berkas CSV - + Export table as comma separated values file Ekspor tabel sebagai berkas nilai yang dipisah koma - - + + Save the current session to a file Simpan sesi saat ini ke suatu berkas - + Open &Project... Buka &Proyek... - - + + Load a working session from a file Muat suatu sesi kerja dari sebuah berkas - - + + Save SQL file as Simpan berkas SQL sebagai - + This button saves the content of the current SQL editor tab to a file Tombol ini menyimpan isi dari tab penyunting SQL saat ini ke sebuah berkas - + &Browse Table Ram&ban Tabel - + Copy Create statement Salin pernyataan Create - + Copy the CREATE statement of the item to the clipboard Salin pernyataan CREATE dari butir ke papan klip - + Ctrl+Return Ctrl+Return - + Ctrl+L Ctrl+L - - + + Ctrl+P Ctrl+P - + Ctrl+D Ctrl+D - + Ctrl+I Ctrl+I - + Encrypted Terenkripsi - + Read only Hanya baca - + Database file is read only. Editing the database is disabled. Berkas basis data hanya baca. Menyunting basis data dinonaktifkan. - + Database encoding Pengkodean basis data - + Database is encrypted using SQLCipher Basis data terenkripsi memakai SQLCipher - - + + Choose a database file Pilh suatu berkas basis data - - - + + + Choose a filename to save under Pilih suatu nama berkas untuk tempat menyimpan - + Error checking foreign keys after table modification. The changes will be reverted. Kesalahan saat memeriksa foreign key setelah modifikasi tabel. Perubahan akan dibalikkan. - + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. Tabel ini tidak lolos pemeriksaan foreign key.<br/>Anda mesti menjalankan 'Alat | Pemeriksaan Foreign Key' dan memperbaiki masalah-masalah yang dilaporkan. - - + + At line %1: Pada baris %1: - + Result: %2 Hasil: %2 - + Setting PRAGMA values or vacuuming will commit your current transaction. Are you sure? Menata nilai PRAGMA atau mem-vacuum akan meng-commit transaksi Anda saat ini. Anda yakin? - + 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 @@ -3894,452 +4073,452 @@ Anda yakin? %1 - + Are you sure you want to undo all changes made to the database file '%1' since the last save? Anda yakin ingin membatalkan semua perubahan yang dibuat ke berkas basis data '%1' sejak penyimpanan terakhir? - + Choose a file to import Pilih suatu berkas yang akan diimpor - + Text files(*.sql *.txt);;All files(*) Berkas teks(*.sql *.txt);;Semua berkas(*) - + 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. Apakah Anda ingin membuat suatu berkas basis data baru untuk menampung data yang diimpor? Bila Anda menjawab tidak kami akan mencoba mengimpor data dalam berkas SQL ke basis data saat ini. - + Automatically load the last opened DB file at startup - + 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? Anda masih mengeksekusi pernyataan SQL. Menutup basis data sekarang akan menghentikan eksekusi mereka, kemungkinkan meninggalkan basis data dalam keadaan tidak konsisten. Anda yakin hendak menutup basis data? - + Do you want to save the changes made to the project file '%1'? Apakah Anda ingin menyimpan perubahan yang dibuat ke berkas proyek '%1'? - + File %1 already exists. Please choose a different name. Berkas %1 sudah ada. Harap pilih nama lain. - + Error importing data: %1 Kesalahan saat mengimpor data: %1 - + Import completed. Impor selesai. - + Delete View Hapus View - + Modify View Ubah View - + Delete Trigger Hapus Trigger - + Modify Trigger Ubah Trigger - + Delete Index Hapus Indeks - + Modify Index Ubah Indeks - + Modify Table Ubah Tabel - + Do you want to save the changes made to SQL tabs in a new project file? Apakah Anda ingin menyimpan perubahan yang dibuat ke tab SQL dalam suatu berkas proyek baru? - + Do you want to save the changes made to the SQL file %1? Apakah Anda ingin menyimpan perubahan yang dibuat ke berkas SQL %1? - + Could not find resource file: %1 Tidak bisa menemukan berkas sumber daya: %1 - + Choose a project file to open Pilih sebuah berkas proyek untuk dibuka - + Could not open project file for writing. Reason: %1 Tidak bisa membuka berkas proyek untuk ditulisi. Alasan: %1 - + Busy (%1) Sibuk (%1) - + Setting PRAGMA values will commit your current transaction. Are you sure? Menata nilai PRAGMA akan meng-commit transaksi Anda saat ini. Anda yakin? - + Reset Window Layout Reset Tata Letak Jendela - + The database is currently busy. Basis data saat ini sibuk. - + Click here to interrupt the currently running query. Klik di sini untuk mengiterupsi query yang sedang berjalan. - + Ctrl+Alt+W Ctrl+Alt+W - + Could not open database file. Reason: %1 Tidak bisa membuka berkas basis data. Alasan: %1 - + In-Memory database Basis data dalam memori - + Choose a database file to save under Pilih suatu berkas basis data tempat menyimpan - + Error while saving the database to the new file. Kesalahan saat menyimpan basis data ke berkas baru. - + Are you sure you want to delete the table '%1'? All data associated with the table will be lost. Anda yakin ingin menghapus tabel '%1'? Semua data terkait dengan tabel akan hilang. - + Are you sure you want to delete the view '%1'? Anda yakin ingin menghapus view '%1'? - + Are you sure you want to delete the trigger '%1'? Anda yakin ingin menghapus trigger '%1'? - + Are you sure you want to delete the index '%1'? Anda yakin ingin menghapus indeks '%1'? - + Error: could not delete the table. Kesalahan: tidak bisa menghapus tabel. - + Error: could not delete the view. Kesalahan: tidak bisa menghapus view. - + Error: could not delete the trigger. Kesalahan: tidak bisa menghapus trigger. - + Error: could not delete the index. Kesalahan: tidak bisa menghapus indeks. - + Message from database engine: %1 Pesan dari mesin basis data: %1 - + Editing the table requires to save all pending changes now. Are you sure you want to save the database? Menyunting tabel memerlukan menyimpan semua perubahan tertunda sekarang. Anda yakin ingin menyimpan basis data? - + Edit View %1 Sunting View %1 - + Edit Trigger %1 Sunting 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. Anda telah sedang mengeksekusi pernyataan SQL. Apakah Anda ingin menghentikan mereka untuk mengeksekusi pernyataan saat ini sebagai pengganti? Perhatikan bahwa ini mungkin meninggalkan basis data dalam keadaan yang tidak konsisten. - + -- EXECUTING SELECTION IN '%1' -- -- MENGEKSEKUSI PILIHAN DALAM '%1' -- - + -- EXECUTING LINE IN '%1' -- -- MENGEKSEKUSI BARIS DALAM '%1' -- - + -- EXECUTING ALL IN '%1' -- -- MENGEKSEKUSI SEMUA DALAM '%1' -- - + Result: %1 Hasil: %1 - + %1 rows returned in %2ms %1 baris dikembalikan dalam %2 ms - + Choose text files Pilih berkas teks - + Import completed. Some foreign key constraints are violated. Please fix them before saving. Impor selesai. Beberapa konstrain foreign key dilanggar. Harap perbaiki mereka sebelum menyimpan. - + Opened '%1' in read-only mode from recent file list Membuka '%1' dalam mode hanya baca dari daftar berkas terkini - + Opened '%1' from recent file list Membuka '%1' dari daftar berkas terkini - + &%1 %2%3 &%1 %2%3 - + (read only) (hanya baca) - + Open Database or Project Buka Basis Data atau Proyek - + Attach Database... Cantol Basis Data... - + Import CSV file(s)... Impor berkas CSV... - + Do you want to save the changes made to SQL tabs in the project file '%1'? Apakah Anda ingin menyimpan perubahan yang dibuat ke tab SQL dalam berkas proyek '%1'? - + The statements in the tab '%1' 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? Pernyataan dalam tab '%1' masih sedang dieksekusi. Menutup tab akan menghentikan eksekusi. Ini mungkin membuat basis data dalam keadaan tidak konsisten. Anda yakin ingin menutup tab? - + Select SQL file to open Pilih berkas SQL yang akan dibuka - + DB file '%1' could not be opened Berkas DB '%1' tidak dapat dibuka - + 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 no longer fully supported. If you want to load it completely, please use DB Browser for SQLite version 3.12 to convert it to the new file format. Berkas proyek ini memakai format berkas lama karena itu dibuat memakai Peramban DB untuk SQLite versi 3.10 atau sebelumnya. Memuat format berkas ini tidak lagi didukung sepenuhnya. Bila Anda ingin memuatnya secara lengkap, harap gunakan Peramban DB untuk SQLite versi 3.12 untuk mengubahnya ke format berkas baru. - + Table '%1' not found; settings ignored Tabel '%1' tidak ditemukan, pengaturan diabaikan - + -- Reference to file "%1" (not supported by this version) -- -- Referensi ke berkas "%1" (tidak didukung oleh versi ini) -- - + Yes. Don't ask again Ya. Jangan tanyakan lagi - + This action will open a new SQL tab with the following statements for you to edit and run: Aksi ini akan membuka sebuah tab SQL baru dengan pernyataan berikut untuk Anda sunting dan jalankan: - + Rename Tab Ubah Nama Tab - + Duplicate Tab Duplikatkan Tab - + Close Tab Tutup Tab - + Opening '%1'... Membuka '%1'... - + There was an error opening '%1'... Ada kesalahan saat membuka '%1'... - + Value is not a valid URL or filename: %1 Nilai bukanlah URL atau nama berkas yang valid: %1 - + Select file name Pilih nama berkas - + Ctrl+Tab Ctrl+Tab - + Ctrl+Shift+Tab Ctrl+Shift+Tab - + Clear List Bersihkan Daftar - + Window Layout Tata Letak Jendela - + Ctrl+Alt+0 Ctrl+Alt+0 - + Simplify Window Layout Sederhanakan Tata Letak Jendela - + Alt+Shift+0 Alt+Shift+0 - + Dock Windows at Bottom Tambatkan Jendela ke Bawah - + Dock Windows at Left Side Tambatkan Jendela ke Sisi Kiri - + Dock Windows at Top Tambatkan Jendela ke Atas - + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. @@ -4347,48 +4526,48 @@ Anda yakin ingin menyimpan basis data? - + Select extension file Pilih berkas ekstensi - + Extension successfully loaded. Ekstensi sukses dimuat. - + Error loading extension: %1 Kesalahan saat memuat ekstensi: %1 - - + + Don't show again Jangan tampilkan lagi - + New version available. Tersedia versi baru. - + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. Tersedia sebuah versi baru Peramban DB bagi SQLite (%1.%2.%3).<br/><br/>Harap unduh di <a href='%4'>%4</a>. - + Project saved to file '%1' Proyek disimpan ke berkas '%1' - + Collation needed! Proceed? Perlu kolasi! Lanjutkan? - + 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! @@ -4397,57 +4576,57 @@ Bila Anda memilih melanjutkan, sadari bahwa hal-hal buruk dapat terjadi ke basis Buat suatu cadangan! - + creating collation membuat kolasi - + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. Menata sebuah nama baru bagi tab SQL. Gunakan karakter '&&' untuk mengizinkan memakai karakter berikut sebagai suatu pintasan papan ketik. - + Please specify the view name Harap tentukan nama view - + There is already an object with that name. Please choose a different name. Sudah ada objek dengan nama itu. Harap pilih nama lain. - + View successfully created. View sukses dibuat. - + Error creating view: %1 Kesalahan saat membuat view: %1 - + This action will open a new SQL tab for running: Aksi ini akan membuka sebuah tab SQL baru untuk menjalankan: - + Press Help for opening the corresponding SQLite reference page. Tekan Bantuan untuk membuka halaman referensi SQLite yang terkait. - + DB Browser for SQLite project file (*.sqbpro) Berkas proyek Peramban DB bagi SQLite (*.sqbpro) - + Execution finished with errors. Eksekusi selesai dengan kesalahan. - + Execution finished without errors. Eksekusi selesai tanpa kesalahan. @@ -6261,26 +6440,26 @@ Anda yakin ingin melanjutkan? Harap masukkan frasa sandi bagi sertifikat klien ini untuk mengautentikasi. - + Cancel Batal - + Uploading remote database to %1 Mengunggah basis data remote ke %1 - + Downloading remote database from %1 Mengunduh basis data remote dari %1 - + Error: Cannot open the file for sending. Kesalahan: Tidak bisa membuka berkas untuk pengiriman. @@ -7015,32 +7194,32 @@ Penggunaan fungsi ini mesti diotorisasi dari Preferensi. memuat... - + References %1(%2) Hold %3Shift and click to jump there Mengacu %1(%2) Tahan Shift%3 dan klik untuk melompat ke sana - + Error changing data: %1 Kesalahan saat mengubah data: %1 - + retrieving list of columns mengambil daftar kolom - + Fetching data... Mengambil data... - - + + Cancel Batal @@ -7382,7 +7561,7 @@ Tahan Shift%3 dan klik untuk melompat ke sana - + Delete Record Hapus Record @@ -7484,7 +7663,7 @@ Tahan Shift%3 dan klik untuk melompat ke sana - + Set encoding Atur pengkodean @@ -7747,96 +7926,96 @@ Tahan Shift%3 dan klik untuk melompat ke sana . Jumlah: %1; Rerata: %2; Min: %3; Maks: %4 - + Conditional formats for "%1" Format bersyarat bagi "%1" - + determining row count... menentukan cacah baris... - + %L1 - %L2 of >= %L3 %L1 - %L2 dari >= %L3 - + %L1 - %L2 of %L3 %L1 - %L2 dari %L3 - + (clipped at %L1 rows) (dipangkas pada %L1 baris) - + 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. Harap masukkan suatu kunci primer pseudo agar memungkinkan penyuntingan pada view ini. Ini mesti berupa nama dari sebuah kolom unik dalam view. - + Delete Records Hapus Record - + Duplicate records Duplikatkan record - + Duplicate record Duplikatkan record - + Ctrl+" Ctrl+" - + Adjust rows to contents Setel baris ke isi - + Error deleting record: %1 Kesalahan saat menghapus record: %1 - + Please select a record first Harap pilih suatu record terlebih dahulu - + Please choose a new encoding for all tables. Harap pilih suatu enkoding baru bagi semua tabel. - + Please choose a new encoding for this table. Harap pilih suatu enkoding baru bagi tabel ini. - + %1 Leave the field empty for using the database encoding. %1 Biarkan ruas kosong untuk memakai enkoding basis data. - + This encoding is either not valid or not supported. Enkoding ini tidak valid atau tidak didukung. - + %1 replacement(s) made. %1 penggantian dibuat. diff --git a/src/translations/sqlb_it.ts b/src/translations/sqlb_it.ts index 0a3e9ce37..15dabe216 100644 --- a/src/translations/sqlb_it.ts +++ b/src/translations/sqlb_it.ts @@ -731,112 +731,112 @@ Se una qualunque altra impostazione è stata modificata per l'inserimento d - + 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 @@ -845,12 +845,12 @@ 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: @@ -859,32 +859,32 @@ Messaggio dal DB: - + 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 - + Error loading built-in extension: %1 Errore nel caricamento dell'esensione inclusa: %1 - + could not get column information non è possibile ricavare informazioni sulla colonna @@ -1951,7 +1951,7 @@ Tutti i dati che sono attualmente memorizzati in questo campo andranno persi.ExtendedScintilla - + Ctrl+H @@ -1962,22 +1962,22 @@ Tutti i dati che sono attualmente memorizzati in questo campo andranno persi. - + Ctrl+P - + Find... Trova... - + Find and Replace... Trova e Sostituisci... - + Print... Stampa... @@ -1985,129 +1985,129 @@ Tutti i dati che sono attualmente memorizzati in questo campo andranno persi. 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 - + Cut Taglia - + 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. @@ -2499,7 +2499,7 @@ x~y Intervallo: valori tra x e y - + Tab Tab @@ -2642,7 +2642,7 @@ x~y Intervallo: valori tra x e y - + Deselect All Deseleziona tutte @@ -2652,52 +2652,52 @@ x~y Intervallo: valori tra x e y 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 - + Could not prepare INSERT statement: %1 Non posso preparae la dichiarazione INSERT: %1 - + Inserting row failed: %1 Inserimento della riga fallito: %1 - + Unexpected end of file. Please make sure that you have configured the correct quote characters and the file is not malformed. Fine del file inaspettata. Si prega di verificare l'impostazione corretta dei caratteri di citazione e che il file non sia malformato. - + 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. @@ -2719,112 +2719,112 @@ Puoi trascinare SQL da una riga oggetto e rilasciarli dentro altri applicativi o - + 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. - + toolBar1 - + &File &File - + &Import &Importa - + &Export &Esporta - + &Edit &Modifica - + &View &Visualizza - + &Help &Aiuto - + Too&ls &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. @@ -2835,451 +2835,451 @@ Puoi trascinare statement SQL dalla colonna Schema e rilasciarli dentro l'e - + &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... - + 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. - + New &tab Nuovo &tab - + 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 dichiarazioni SQL e le carica in un 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 all'apertura di un DB in un nuovo file di progetto 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 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 C&ome... - - - + + + 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 - + Close Pro&ject Chiudi Pro&getto - - + + Close project and database files and return to the initial state Chiude il progetto e i file di database e ritorna allo stato iniziale - + Ctrl+Shift+F4 Ctrl+Shift+F4 - - + + Detach Database Scollega Database - - + + Detach database file attached to the current database connection Scollega il file di database associato alla connessione corrente - + W&hat's This? Cos'è &questo? @@ -3305,801 +3305,980 @@ Puoi trascinare statement SQL dalla colonna Schema e rilasciarli dentro l'e Modifica P&ragmas - - + + Temp Store + + + + + Secure Delete + + + + + Case Sensitive Like + + + + + Journal Mode + + + + + Journal Size Limit + + + + + Recursive Triggers + + + + + Delete + pragma + Elimina + + + + Truncate + pragma + + + + + Persist + pragma + + + + + Memory + pragma + + + + + WAL + pragma + + + + + Off + pragma + + + + + Page Size + + + + + Foreign Keys + Chiavi esterne + + + + Auto Vacuum + + + + + Max Page Count + + + + + Normal + pragma + + + + + Exclusive + pragma + + + + + Checkpoint Full FSYNC + + + + + Off + + + + + Normal + + + + + + Full + + + + + Default + Default + + + + File + File + + + + Memory + + + + + Automatic Index + + + + + Ignore Check Constraints + + + + + Full FSYNC + + + + + WAL Auto Checkpoint + + + + + User Version + + + + + Synchronous + + + + + None + Nessuna + + + + Incremental + + + + + Locking Mode + + + + + E&xecute SQL This has to be equal to the tab title in all the main tabs &Esegui SQL - + &Recent Files F&iles Recenti - + &New Database &Nuovo Database - + &Undo A&nnulla - - + + Undo last change to the database Annulla l'ultima modifica al database - + This action undoes the last change performed to the database in the Database Browser or in Execute SQL. Redoing is not possible. Questa azione annulla l'ultima modifica effettuata al database in "Visualizza Dati" o in "Esegui SQL". Riapplicarla non è possibile. - + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields from a table, as well as modify field names and types. Apre il wizard per Modificare la Tabella, in cui è possibile rinominare una tabella esistente. Si può anche aggiungere o eliminare campi da una tabella così come modificarne nome e tipo. - + Shift+F1 - + &About &Informazioni - + &Recently opened &Aperti di recente - + 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. - + Ctrl+Shift+T Ctrl+Shift+T - - - + + + 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 Project &Salva Progetto - - + + Save the current session to a file Salva la sessione correte in un file - + Open &Project... Apri &Progetto... - + Open &Project Apri &Progetto - - + + Load a working session from a file Carica una sessione di lavoro da file - + &Attach Database... Co&llega 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 - + Export to &JSON Esporta in &JSON - + 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 - + &Open Database &Apri Database - + New In-&Memory Database Nuovo Database In M&emoria - + Drag && Drop SELECT Query Trascina && Rilascia Query SELECT - - + + When dragging fields from the same table or a single table, drop a SELECT query into the editor Quando si trascinano campi da una stessa tabella o una singola tabella, rilascia una query SELECT nell'editor - + 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+Shift+W Ctrl+Shift+W - + Table from CSV data in Clipboard... Tabella da dati CSV negli Appunti... - + This treats the current clipboard contents as a CSV file and opens the same import wizard that is used for importing CSV data from a file. Questo tratta il contenuto attuale degli Appunti come un file CSV e apre lo stesso wizard d'importazione che viene utilizzato per importare dati da un file CSV. - + Show &Row Counts Mostra Numero &Righe - + This shows the number of rows for each table and view in the database. Questo mostra il numero di righe per ogni tabella e vista del database. - + Save Database &As... Salva Database Co&me... - + Save the current database as a different file Salva il database corrente in un diverso file - + Refresh Aggiorna - + Reload the database structure Aggiorna la struttura del database - - + + 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 - + The database is currently 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à sola lettura dalla lista dei files recenti - + Opened '%1' from recent file list Aperto '%1' dalla lista dei files recenti - + The statements in the tab '%1' 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? Le dichiarazioni nella scheda '%1' sono ancora in esecuzione. Chiudere la scheda fermerà l'esecuzione. Questo potrebbe lasciare il database in uno stato inconsistente. Sei sicuro di voler chiudere la scheda? - + 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 no longer fully supported. If you want to load it completely, please use DB Browser for SQLite version 3.12 to convert it to the new file format. Questo file di progetto utilizza un vecchio formato perché è stato creato con DB Browser for SQLite versione 3.10 o precedente. Il caricamento di questo formato non è più pienamente supportato. Se vuoi caricarlo completamente, si prega di utilizzare DB Browser for SQLite versione 3.12 per convertirlo al nuovo formato. - + Project saved to file '%1' Progetto salvato sul file '%1' - + Yes. Don't ask again Si, non chiedere di nuovo - + This action will open a new SQL tab with the following statements for you to edit and run: Questa azione apre una nuova scheda SQL con le seguenti dichiarazioni per te da editare ed eseguire: - + 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 - + Automatically load the last opened DB file at startup Carica automaticamente l'ultimo file DB aperto all'avvio - + 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 @@ -4108,189 +4287,189 @@ Sei sicuro? %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... - + 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. - + Ctrl+Tab Ctrl+Tab - + Ctrl+Shift+Tab Ctrl+Shift+Tab - + Clear List Pulisci la Lista - + Window Layout Disposizione finestra - + Ctrl+Alt+0 Ctrl+Alt+0 - + Simplify Window Layout Semplifica Disposizione Finestra - + Alt+Shift+0 Alt+Shift+0 - + Dock Windows at Bottom Posiziona Finestre nel Basso - + Dock Windows at Left Side Posiziona Finestre sul Lato Sinistro - + Dock Windows at Top Posiziona Finestre in Alto - + Ctrl+Alt+W Ctrl+Alt+W - + Choose a database file to save under Scegli il file database in cui salvare - + Error while saving the database to the new file. Errore nel salvataggio in un nuovo file di 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? 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 - + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. @@ -4299,107 +4478,107 @@ Se rispondi di no proveremo ad importare i dati del file SQL all'interno de - + 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? - + 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) - + DB file '%1' could not be opened Il file DB '%1' non può essere aperto - + Table '%1' not found; settings ignored Tabella '%1' non trovata; impostazioni ignorate - + Could not open project file for writing. Reason: %1 Non posso scrivere nel file di progetto. Motivo: %1 - + -- Reference to file "%1" (not supported by this version) -- -- Riferimento al file "%1" (non supportato in questa versione) -- - + 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! @@ -4408,47 +4587,47 @@ Se scegli di proseguire, sappi che potrebbero generarsi problemi nel tuo databas 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) @@ -7508,26 +7687,26 @@ Sei sicuro di voler procedere? 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: Cannot open the file for sending. Errore: Impossibile aprire il file per l'invio. @@ -8262,32 +8441,32 @@ L'utilizzo di questa funzione dev'essere permesso tramite le Preferenz 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 @@ -8629,7 +8808,7 @@ Tieni premuto %3Shift e clicca per saltare lì - + Delete Record Elimina Riga @@ -8731,7 +8910,7 @@ Tieni premuto %3Shift e clicca per saltare lì - + Set encoding Imposta codifica @@ -8996,96 +9175,96 @@ Tieni premuto %3Shift e clicca per saltare lì . Somma: %1; Media: %2; Min: %3; Max: %4 - + Conditional formats for "%1" Formattazione condizionale per '%1' - + determining row count... determino il numero di righe... - + %L1 - %L2 of >= %L3 %L1 - %L2 di >= %L3 - + %L1 - %L2 of %L3 %L1 - %L2 di %L3 - + (clipped at %L1 rows) (troncato a %L1 righe) - + 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 - + 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). diff --git a/src/translations/sqlb_ja.ts b/src/translations/sqlb_ja.ts index 33b5bfa97..5c6946e75 100644 --- a/src/translations/sqlb_ja.ts +++ b/src/translations/sqlb_ja.ts @@ -732,114 +732,114 @@ If any of the other settings were altered for this database file you need to pro - + 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 @@ -848,12 +848,12 @@ Message from database engine: %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: @@ -863,32 +863,32 @@ Restoring some of the objects associated with this table failed. This is most li - + 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 - + Error loading built-in extension: %1 ビルトイン拡張の読み込みでエラー: %1 - + could not get column information カラム情報が取得できませんでした @@ -1952,7 +1952,7 @@ All data currently stored in this field will be lost. ExtendedScintilla - + Ctrl+H @@ -1963,22 +1963,22 @@ All data currently stored in this field will be lost. - + Ctrl+P - + Find... 検索... - + Find and Replace... 検索と置換... - + Print... 印刷... @@ -1986,129 +1986,129 @@ All data currently stored in this field will be lost. 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に設定 - + Cut 切り取り - + 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制約があります。 @@ -2501,7 +2501,7 @@ x~y 範囲: xとyの間 - + Tab タブ @@ -2644,7 +2644,7 @@ x~y 範囲: xとyの間 - + Deselect All すべて非選択 @@ -2654,52 +2654,52 @@ x~y 範囲: xとyの間 類似に一致 - + 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のインポート - + Could not prepare INSERT statement: %1 INSERT文を準備できませんでした: %1 - + Inserting row failed: %1 行の挿入に失敗: %1 - + Unexpected end of file. Please make sure that you have configured the correct quote characters and the file is not malformed. 予想外のEoF。正しくクォートされているか、ファイル形式が不正でないか確認してください。 - + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. ファイル '%1' のインポートに %2msかかりました。内 %3ms は行関数に費やされました。 @@ -2721,112 +2721,112 @@ 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. 警告: このプラグマは読み取り可能でなく、この値は推定です。プラグマを書き込んでも、SQLite 拡張などで上書きされるかもしれません。 - + toolBar1 ツールバー1 - + &File ファイル(&F) - + &Import インポート(&I) - + &Export エクスポート(&E) - + &Edit 編集(&E) - + &View ビュー(&V) - + &Help ヘルプ(&H) - + Too&ls ツール(&L) - + 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. @@ -2837,446 +2837,446 @@ 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 このボタンで現在開いているデータベースファイルとの接続を閉じます - + New &tab 新しいタブ(&T) - + 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を開くことに関係するすべての設定をDB Browser for SQLite プロジェクトファイルに保存します - + This button lets you open a DB Browser for SQLite project file このボタンはDB Browser for 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 テーブルを閲覧 - + Close Pro&ject プロジェクトを閉じる(&J) - - + + Close project and database files and return to the initial state プロジェクトとデータベースを閉じて初期状態に戻します - + Ctrl+Shift+F4 - - + + Detach Database データベースを切断 - - + + Detach database file attached to the current database connection 現在のデータベース接続から使用中のデータベースファイルを切り離します - - + + 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)... - + 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)? @@ -3302,681 +3302,860 @@ SQL文をスキーマカラムからSQLエディターや他のアプリケー プラグマ編集(&R) - - + + Temp Store + + + + + Secure Delete + + + + + Case Sensitive Like + + + + + Journal Mode + + + + + Journal Size Limit + + + + + Recursive Triggers + + + + + Delete + pragma + + + + + Truncate + pragma + + + + + Persist + pragma + + + + + Memory + pragma + + + + + WAL + pragma + + + + + Off + pragma + + + + + Page Size + + + + + Foreign Keys + 外部キー + + + + Auto Vacuum + + + + + Max Page Count + + + + + Normal + pragma + + + + + Exclusive + pragma + + + + + Checkpoint Full FSYNC + + + + + Off + + + + + Normal + + + + + + Full + + + + + Default + デフォルト + + + + File + ファイル + + + + Memory + + + + + Automatic Index + + + + + Ignore Check Constraints + + + + + Full FSYNC + + + + + WAL Auto Checkpoint + + + + + User Version + + + + + Synchronous + + + + + None + なし + + + + Incremental + + + + + Locking Mode + + + + + E&xecute SQL This has to be equal to the tab title in all the main tabs SQL実行(&X) - + &Recent Files 最近使用したファイル(&R) - + &New Database 新しいデータベース(&N) - - + + Ctrl+F4 - + &Undo 元に戻す(&U) - - + + Undo last change to the database データベースへの最後の変更を元に戻します - + This action undoes the last change performed to the database in the Database Browser or in Execute SQL. Redoing is not possible. この操作はデータ閲覧かSQL実行で最後に行ったデータベースへの変更を元に戻します。やり直しはできません。 - + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields from a table, as well as modify field names and types. 既存のテーブル名を変更できるテーブル変更ウィザードを開きます。これはテーブルに対しフィ―ルドの追加や削除、フィールド名やデータ型の変更ができます。 - + Shift+F1 - + &About DB Browser for SQLite について(&A) - + &Recently opened 最近開いたファイル(&R) - + 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文が実行されます。 - + Ctrl+Shift+T - - - + + + 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 Project プロジェクトを保存(&S) - - + + Save the current session to a file 現在のセッションをファイルに保存します - + Open &Project... プロジェクトを開く(&P)... - + 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) - + Export to &JSON JSONにエクスポート(&J) - + Save as &view ビューとして保存(&V) - + Save as view ビューとして保存 - + Shows or hides the Project toolbar. プロジェクトツールバーを表示/非表示します。 - + Extra DB Toolbar 追加DBツールバー - + &Open Database データベースを開く(&O) - + New In-&Memory Database 新しいインメモリーデータベース(&M) - + Drag && Drop SELECT Query SELECT クエリーをドラッグ&&ドロップ - - + + When dragging fields from the same table or a single table, drop a SELECT query into the editor 同じテーブル、もしくは、単独のテーブルからフィールドをドラッグすると、エディター内にSELECTクエリーがドロップします - + 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+Shift+W - + Table from CSV data in Clipboard... クリップボードのCSVデータからテーブル... - + This treats the current clipboard contents as a CSV file and opens the same import wizard that is used for importing CSV data from a file. この処理は現在のクリップボードの内容をCSVファイルとみなして、実際のCSVファイルと同じようにインポートウィザードを開きます。 - + Show &Row Counts 行数を表示(&R) - + This shows the number of rows for each table and view in the database. データベース内にあるテーブルとビューそれぞれの行数を表示します。 - + Save Database &As... 名前を付けてデータベースを保存(&A)... - + Save the current database as a different file 現在のデータベースを別のファイルに保存します - + Refresh 更新 - + Reload the database structure データベース構造を再読み込み - - + + Ctrl+P - + Execute all/selected SQL すべて/選択したSQLを実行 - + Ctrl+Return - + Ctrl+L - + Ctrl+D - + Ctrl+I - + Ctrl+E - + Reset Window Layout ウィンドウレイアウトをリセット - + Ctrl+Tab - + Ctrl+Shift+Tab - + Clear List リストを削除 - + Window Layout ウィンドウレイアウト - + Ctrl+Alt+0 - + Simplify Window Layout ウィンドウレイアウトをシンプルに - + Alt+Shift+0 - + Dock Windows at Bottom ウィンドウを下にドッキング - + Dock Windows at Left Side ウィンドウを左にドッキング - + Dock Windows at Top ウィンドウを上にドッキング - + The database is currently 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 データベースのエンコード - + Ctrl+Alt+W - - + + Choose a database file データベースファイルを選択 - + Could not open database file. Reason: %1 データベースファイルを開けません。 理由: %1 - - - + + + Choose a filename to save under 保存するファイル名を下から選択 - + In-Memory database インメモリーデータベース - + Choose a database file to save under 保存するデータベースファイルを下から選択 - + Error while saving the database to the new file. データベースを新しいファイルへ保存時にエラー。 - + 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' を開きました - + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. @@ -3984,219 +4163,219 @@ Reason: %1 - + The statements in the tab '%1' 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? タブ '%1' の文はまだ実行中です。タブを閉じると実行が停止します。これはデータベースの一貫性がなくなる可能性があります。本当にタブを閉じますか? - + Could not find resource file: %1 リソースファイルが見つかりません: %1 - + DB file '%1' could not be opened DBファイル '%1' を開けませんでした - + 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 no longer fully supported. If you want to load it completely, please use DB Browser for SQLite version 3.12 to convert it to the new file format. このプロジェクトファイルはDB Browser for SQLite バージョン 3.10 以前で作られた古いファイルフォーマットを使用しています。このファイルフォーマットの読み込みは既に完全にはサポートされていません。もし完全に読み込みたい場合は、DB Browser for SQLite バージョン3.12 を使って新しいファイルフォーマットに変換してください。 - + Table '%1' not found; settings ignored テーブル '%1' が見つかりません; 設定は無視されます - + Could not open project file for writing. Reason: %1 書き込むプロジェクトファイルを開くことができません。 理由: %1 - + -- Reference to file "%1" (not supported by this version) -- -- ファイル "%1" への参照 (このバージョンではサポートされていません) -- - + Project saved to file '%1' プロジェクトをファイル '%1' に保存しました - + Yes. Don't ask again はい。もう聞かないで - + 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 @@ -4205,207 +4384,207 @@ Are you sure? %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ファイルをインポート... - + 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 に保存しますか? - + 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ファイルからのデータを現在のデータベースにインポートしようとします。 - + Automatically load the last opened DB file at startup 最後に開いたDBファイルを起動時に自動的に読み込む - + 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) - + 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! @@ -4414,42 +4593,42 @@ 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. 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 のリファレンスページを開きます。 @@ -6262,26 +6441,26 @@ Are you sure you want to proceed? このクライアント証明書を確認するためパスフレーズを入力してください。 - + Cancel キャンセル - + Uploading remote database to %1 リモートデータベースをここにアップロード中 %1 - + Downloading remote database from %1 リモートデータベースをここからダウンロード中 %1 - + Error: Cannot open the file for sending. エラー: 送信するファイルを開けません。 @@ -7018,32 +7197,32 @@ Use of this function must be authorized from Preferences. 読み込み中... - + 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 キャンセル @@ -7385,7 +7564,7 @@ Hold %3Shift and click to jump there - + Delete Record レコードを削除 @@ -7487,7 +7666,7 @@ Hold %3Shift and click to jump there - + Set encoding エンコードの設定 @@ -7750,96 +7929,96 @@ Hold %3Shift and click to jump there . 合計: %1; 平均: %2; 最低: %3; 最高: %4 - + Conditional formats for "%1" "%1" の条件付き書式 - + determining row count... 行数を計算中... - + %L1 - %L2 of >= %L3 %L1 - %L2 of >= %L3 - + %L1 - %L2 of %L3 %L1 - %L2 of %L3 - + (clipped at %L1 rows) (%L1 行を抜き出し) - + 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 最初にレコードを選択してください - + 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 つ置き換えました。 diff --git a/src/translations/sqlb_ko_KR.ts b/src/translations/sqlb_ko_KR.ts index 9882c2eca..45fda1f52 100644 --- a/src/translations/sqlb_ko_KR.ts +++ b/src/translations/sqlb_ko_KR.ts @@ -700,17 +700,17 @@ If any of the other settings were altered for this database file you need to pro - + Cancel 취소 - + Executing SQL... SQL 실행 중... - + Action cancelled. 실행이 취소되었습니다. @@ -746,98 +746,98 @@ If any of the other settings were altered for this database file you need to pro 이 명령을 취소하시겠습니까? - - + + 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 @@ -846,12 +846,12 @@ Message from database engine: %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: @@ -860,32 +860,32 @@ Message from database engine: - + could not get list of databases: %1 데이터베이스 목록을 가져올 수 없습니다: %1 - + Error loading extension: %1 확장기능을 불러오기 에러: %1 - + Error loading built-in extension: %1 내장 확장기능을 불러오는데 실패했습니다: %1 - + could not get column information 열 정보를 가져올 수 없습니다 - + Error setting pragma %1 to %2: %3 pragma 설정을 %1에서 %2로 변경하는데 에러: %3 - + File not found. 파일을 찾을 수 없습니다. @@ -1948,7 +1948,7 @@ All data currently stored in this field will be lost. ExtendedScintilla - + Ctrl+H @@ -1959,22 +1959,22 @@ All data currently stored in this field will be lost. - + Ctrl+P - + Find... 찾기... - + Find and Replace... 검색과 바꾸기... - + Print... 인쇄하기... @@ -1982,128 +1982,128 @@ All data currently stored in this field will be lost. 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로 변경하기 - + Cut 잘라내기 - + 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 제약 조건이 있습니다. @@ -2495,7 +2495,7 @@ x~y 범위: x와 y값 사이 값 - + Tab @@ -2638,7 +2638,7 @@ x~y 범위: x와 y값 사이 값 - + Deselect All 모두 선택 해제 @@ -2648,52 +2648,52 @@ x~y 범위: x와 y값 사이 값 비슷한거 찾기 - + 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 가져오기 - + Could not prepare INSERT statement: %1 INSERT 문을 준비할 수 없습니다: %1 - + Unexpected end of file. Please make sure that you have configured the correct quote characters and the file is not malformed. 예기치 않은 파일의 끝(EOF)입니다. 올바른 따옴표를 구성했는지, 파일 형식이 잘못되지 않았는지 확인하세요. - + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. 파일 '%1' 가져오는데 %2ms가 걸렸습니다. 이 중에서 행 기능을 적용하는데 %3ms가 걸렸습니다. - + Inserting row failed: %1 행 추가에 실패했습니다: %1 @@ -2706,157 +2706,157 @@ x~y 범위: x와 y값 사이 값 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) - + Too&ls 도구(&L) - + 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. @@ -2868,246 +2868,246 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed - + &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 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) - + Ctrl+T @@ -3121,119 +3121,119 @@ You can drag SQL statements from an object row and drop them into other applicat - + 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를 덮어 쓸 수 있습니다. - + &Recent Files 최근 파일 열기(&R) - - + + Ctrl+F4 - + Compact &Database... 데이터베이스 압축(&D)... - + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields from a table, as well as modify field names and types. 기존 테이블의 이름을 바꿀 수 있는 테이블 수정 마법사를 엽니다. 테이블에서 필드를 추가 또는 삭제하고 필드 이름 및 유형을 수정할 수도 있습니다. - + 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)... @@ -3259,602 +3259,781 @@ You can drag SQL statements from an object row and drop them into other applicat Pragma 수정(&R) - - + + Temp Store + + + + + Secure Delete + + + + + Case Sensitive Like + + + + + Journal Mode + + + + + Journal Size Limit + + + + + Recursive Triggers + + + + + Delete + pragma + + + + + Truncate + pragma + + + + + Persist + pragma + + + + + Memory + pragma + + + + + WAL + pragma + + + + + Off + pragma + + + + + Page Size + + + + + Foreign Keys + 외래 키 제약 + + + + Auto Vacuum + + + + + Max Page Count + + + + + Normal + pragma + + + + + Exclusive + pragma + + + + + Checkpoint Full FSYNC + + + + + Off + + + + + Normal + + + + + + Full + + + + + Default + + + + + File + 파일 + + + + Memory + + + + + Automatic Index + + + + + Ignore Check Constraints + + + + + Full FSYNC + + + + + WAL Auto Checkpoint + + + + + User Version + + + + + Synchronous + + + + + None + 사용하지 않음 + + + + Incremental + + + + + Locking Mode + + + + + E&xecute SQL This has to be equal to the tab title in all the main tabs SQL 실행(&E) - + &New Database 새 데이터베이스(&N) - + &Undo 실행 취소(&U) - - + + Undo last change to the database 데이터베이스에 대한 마지막 변경 사항 실행 취소합니다 - + This action undoes the last change performed to the database in the Database Browser or in Execute SQL. Redoing is not possible. 이 작업은 데이터베이스 브라우저 또는 SQL 실행에서 데이터베이스에 마지막으로 수행한 변경 사항을 실행 취소합니다. 다시 실행할 수 없습니다. - + New &tab 새 탭(&T) - + Open SQL file(s) SQL 파일 열기 - + This button opens files containing SQL statements and loads them in new editor tabs 이 버튼은 SQL 문이 포함된 파일을 열고 새 편집기 탭에 로드합니다 - + Ctrl+Shift+T - + &Save Project 프로젝트 저장하기(&S) - + 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 프로젝트 파일로 저장할 수 있습니다 - + Open &Project 프로젝트 열기(&P) - + 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) - + Export to &JSON &JSON으로 내보내기 - + Save as &view 뷰로 저장하기(&V) - + Save as view 다른 이름의 뷰로 저장하기 - + Shows or hides the Project toolbar. 프로젝트 툴바를 표시하거나 숨깁니다. - + Extra DB Toolbar 확장 DB 툴바 - + &Open Database 데이터베이스 열기(&O) - + New In-&Memory Database In-Memory 데이터베이스 생성(&M) - + Drag && Drop SELECT Query 드래그 앤 드롭 SELECT 쿼리 - - + + When dragging fields from the same table or a single table, drop a SELECT query into the editor 동일한 테이블 또는 단일 테이블에서 필드를 드래그할 때 SELECT 쿼리를 편집기에 드롭합니다 - + 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 - + Close Pro&ject 프로젝트 닫기(&J) - - + + Close project and database files and return to the initial state 프로젝트 및 프로젝트 파일을 닫고 초기 상태로 돌아갑니다 - - + + Ctrl+Shift+W - + Table from CSV data in Clipboard... 클립보드에 저장된 CSV 데이터에서 테이블 가져오기... - + This treats the current clipboard contents as a CSV file and opens the same import wizard that is used for importing CSV data from a file. 현재 클립보드에 저장된 내용을 CSV파일로 간주하여 파일로부터 CSV데이터를 불러올때 사용되는 불러오기 마법사를 엽니다. - + Show &Row Counts 행 개수 보기 (&R) - + This shows the number of rows for each table and view in the database. 데이터베이스의 각 테이블과 뷰에 저장된 행의 개수를 표시합니다. - + Save Database &As... 다른 이름으로 저장하기...(&A) - + Save the current database as a different file 현재 데이터베이스를 다른 파일로 저장하기 - + Refresh 새로고침 - + Reload the database structure 데이터베이스 구조를 다시 로드합니다 - + Ctrl+Shift+F4 - - + + Detach Database 데이터베이스 분리 - - + + Detach database file attached to the current database connection 현재 데이터베이스 연결에 연결되어 있는 데이터베이스 파일 분리 - + 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 @@ -3862,294 +4041,294 @@ You can drag SQL statements from an object row and drop them into other applicat %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 파일 가져오기... - + 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 설정을 변경하려면 여러분의 현재 트랜잭션을 커밋해야합니다. 동의하십니까? - + Ctrl+Tab - + Ctrl+Shift+Tab - + Clear List 목록 지우기 - + Window Layout 창 레이아웃 - + Reset Window Layout 창 레이아웃 초기화 - + Simplify Window Layout 창 레이아웃 단순화 - + Alt+Shift+0 - + Dock Windows at Bottom 하단에 창 고정 - + Dock Windows at Left Side 좌측에 창 고정 - + Dock Windows at Top 상단에 창 고정 - + The database is currently busy. 이 데이터베이스는 현재 사용 중입니다. - + Click here to interrupt the currently running query. 여기를 눌러 현재 실행 중인 쿼리를 강제 중단합니다. - + Ctrl+Alt+W - + Could not open database file. Reason: %1 데이터베이스 파일을 열 수 없습니다. 원인: %1 - + In-Memory database In-Memory 데이터베이스 - + Choose a database file to save under 저장하려는 파일명을 선택하세요 - + Error while saving the database to the new file. 데이터베이스를 새 파일에 저장할 때 오류가 발생했습니다. - + 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'의 뜻이 보류입니다만, 여기서는 작업 중이던이 더 맞다고 판단했습니다. @@ -4157,75 +4336,75 @@ Are you sure you want to save the database? 데이터베이스를 저장하시겠습니까? - + 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'을(를) 열었습니다 - + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. @@ -4233,148 +4412,148 @@ Are you sure? - + The statements in the tab '%1' 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? %1 탭의 문이 여전히 실행 중입니다. 탭을 닫으면 실행이 중단됩니다. 이로 인해 데이터베이스가 일관성이 없는 상태가 될 수 있습니다. 정말로 탭을 닫으시겠습니까? - + DB file '%1' could not be opened DB 파일 '%1'을(를) 열 수 없습니다 - + 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 no longer fully supported. If you want to load it completely, please use DB Browser for SQLite version 3.12 to convert it to the new file format. 이 프로젝트 파일은 DB Browser for SQLite 버전 3.10 이하를 사용하여 생성되었기 때문에 이전 파일 형식을 사용하고 있습니다. 이 파일 형식을 로드하는 것은 더 이상 완전히 지원되지 않습니다. 완벽하게 로드하려면 DB Browser for SQLite 버전 3.12를 사용하여 새 파일 형식으로 변환하세요. - + Table '%1' not found; settings ignored 테이블 '%1'을(를) 찾을 수 없습니다. 설정이 무시됩니다 - + -- Reference to file "%1" (not supported by this version) -- -- "%1" 파일에 대한 참조(이 버전에서는 지원되지 않음) -- - + Yes. Don't ask again 예. 다시 묻지 않습니다 - + 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 행이 반환되었습니다 - + Automatically load the last opened DB file at startup 시작 시 마지막으로 연 DB 파일 자동으로 불러오기 - + Ctrl+Alt+0 - + 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 확장기능 불러오기 에러: %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>에서 다운로드하세요. - + 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! @@ -4383,67 +4562,67 @@ 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. 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. 에러 없이 실행 완료. @@ -6239,25 +6418,25 @@ Are you sure you want to proceed? 인증을 위한 클라이언트 인증서 암호를 입력해주세요. - + Cancel 취소 - + Uploading remote database to %1 %1로 원격 데이터베이스를 업로드 중입니다 - + Downloading remote database from %1 %1 에서 원격 데이터베이스를 다운로드 중입니다. {1?} - + Error: Cannot open the file for sending. 에러: 보내려는 파일을 열 수 없습니다. @@ -6993,33 +7172,33 @@ Use of this function must be authorized from Preferences. - + 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 취소 @@ -7319,7 +7498,7 @@ Hold %3Shift and click to jump there - + Delete Record 레코드 삭제 @@ -7437,7 +7616,7 @@ Hold %3Shift and click to jump there - + Set encoding 인코딩 지정하기 @@ -7726,96 +7905,96 @@ Hold %3Shift and click to jump there . 합계: %1, 평균: %2, 최소값: %3, 최대값: %4 - + Conditional formats for "%1" "%1"에 대한 조건부 서식 - + determining row count... 행 개수 결정 중... - + %L1 - %L2 of >= %L3 L1 - %L2의 >= %L3 - + %L1 - %L2 of %L3 %L1 - %L2의 %L3 - + (clipped at %L1 rows) (%L1 행에서 잘림) - + 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 레코드를 먼저 선택하세요 - + 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개의 교체가 이루어졌습니다. diff --git a/src/translations/sqlb_nl.ts b/src/translations/sqlb_nl.ts index 3fbd910c9..1cefb015a 100644 --- a/src/translations/sqlb_nl.ts +++ b/src/translations/sqlb_nl.ts @@ -731,112 +731,112 @@ Indien enige andere opties voor dit databasebestand gewijzigd waren dan dien je - + 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: @@ -845,7 +845,7 @@ Uitvoering wordt afgebroken%3. - + Error renaming table '%1' to '%2'. Message from database engine: %3 @@ -854,37 +854,37 @@ 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 - + Error loading built-in extension: %1 - + could not get column information Fout bij het verkrijgen van kolominformatie @@ -1945,7 +1945,7 @@ Alle waarden die momenteel opgeslagen zijn in dit veld zullen verloren gaan.ExtendedScintilla - + Ctrl+H @@ -1956,22 +1956,22 @@ Alle waarden die momenteel opgeslagen zijn in dit veld zullen verloren gaan. - + Ctrl+P - + Find... Zoeken... - + Find and Replace... Zoeken en Vervangen... - + Print... Afdrukken... @@ -1979,129 +1979,129 @@ Alle waarden die momenteel opgeslagen zijn in dit veld zullen verloren gaan. 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 - + Cut Knippen - + 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. @@ -2493,7 +2493,7 @@ x~y Bereik: waarden tussen x en y - + Tab Tab @@ -2636,7 +2636,7 @@ x~y Bereik: waarden tussen x en y - + Deselect All Alles deselecteren @@ -2646,52 +2646,52 @@ x~y Bereik: waarden tussen x en y 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 - + Could not prepare INSERT statement: %1 - + Inserting row failed: %1 Invoegen van record is mislukt: %1 - + Unexpected end of file. Please make sure that you have configured the correct quote characters and the file is not malformed. Onverwachts einde van bestand bereikt. Verzeker je ervan dat je de juiste aanhalingstekens ingesteld hebt en dat de bestandsinhoud goed geformuleerd is. - + 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. @@ -2713,112 +2713,112 @@ Je kunt SQL-instructies vanuit een objectrij naar andere applicaties of andere v - + 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. - + toolBar1 werkbalk1 - + &File &Bestand - + &Import &Importeren - + &Export &Exporteren - + &Edit Be&werken - + &View Bee&ld - + &Help &Help - + Too&ls 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. @@ -2829,243 +2829,243 @@ Je kunt SQL-instructies vanuit de Schema-kolom naar de SQL-bewerker of naar ande - + &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... @@ -3091,1019 +3091,1198 @@ Je kunt SQL-instructies vanuit de Schema-kolom naar de SQL-bewerker of naar ande - - + + Temp Store + + + + + Secure Delete + + + + + Case Sensitive Like + + + + + Journal Mode + + + + + Journal Size Limit + + + + + Recursive Triggers + + + + + Delete + pragma + + + + + Truncate + pragma + + + + + Persist + pragma + + + + + Memory + pragma + + + + + WAL + pragma + + + + + Off + pragma + + + + + Page Size + + + + + Foreign Keys + + + + + Auto Vacuum + + + + + Max Page Count + + + + + Normal + pragma + + + + + Exclusive + pragma + + + + + Checkpoint Full FSYNC + + + + + Off + + + + + Normal + + + + + + Full + + + + + Default + Standaard + + + + File + Bestand + + + + Memory + + + + + Automatic Index + + + + + Ignore Check Constraints + + + + + Full FSYNC + + + + + WAL Auto Checkpoint + + + + + User Version + + + + + Synchronous + + + + + None + Geen + + + + Incremental + + + + + Locking Mode + + + + + E&xecute SQL This has to be equal to the tab title in all the main tabs - + &Recent Files - + &New Database - + &Undo - - + + Undo last change to the database - + This action undoes the last change performed to the database in the Database Browser or in Execute SQL. Redoing is not possible. - + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields from a table, as well as modify field names and types. - + 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 - + New &tab Nieuw &tabblad - + 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 - + Ctrl+Shift+T - - - + + + 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 Project - - + + 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... - + Open &Project - - + + 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 - + Export to &JSON - + 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 - + &Open Database - + New In-&Memory Database Nieuwe werk&geheugendatabase - + Drag && Drop SELECT Query - - + + When dragging fields from the same table or a single table, drop a SELECT query into the editor - + 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 - + Close Pro&ject Pro&ject sluiten - - + + Close project and database files and return to the initial state Het project en databasebestanden sluiten en terugkeren naar de oorspronkelijke staat - - + + Ctrl+Shift+W - + Table from CSV data in Clipboard... - + This treats the current clipboard contents as a CSV file and opens the same import wizard that is used for importing CSV data from a file. - + Show &Row Counts - + This shows the number of rows for each table and view in the database. - + Save Database &As... - + Save the current database as a different file - + Refresh Verversen - + Reload the database structure - + Ctrl+Shift+F4 - - + + Detach Database Database ontkoppelen - - + + Detach database file attached to the current database connection Ontkoppel het databasebestand dat aan de huidige databaseverbinding gekoppeld is - - + + Ctrl+W - + Ctrl+Tab - + Ctrl+Shift+Tab - + Automatically load the last opened DB file at startup - + Clear List Lijst legen - + Ctrl+L - + Ctrl+D - + Ctrl+I - + Ctrl+E - + Window Layout Vensterindeling - + Reset Window Layout Vensterindeling herstellen - + Ctrl+Alt+0 - + Simplify Window Layout Vensterindeling versimpelen - + Alt+Shift+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 currently 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 - + Ctrl+Alt+W - - + + 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 - + Choose a database file to save under - + Error while saving the database to the new file. - + 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 @@ -4112,114 +4291,114 @@ Weet je het zeker? %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. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. @@ -4228,137 +4407,137 @@ Als je nee antwoordt, wordt geprobeerd om de gegevens uit het SQL-bestand te imp - + 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 the tab '%1' 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 tabblad '%1' 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? - + 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) - + DB file '%1' could not be opened - + 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 no longer fully supported. If you want to load it completely, please use DB Browser for SQLite version 3.12 to convert it to the new file format. Dit projectbestand gebruikt een oud bestandsformaat omdat het gemaakt is met versie 3.10 of lager van DB-browser voor SQLite. Dit bestandsformaat wordt niet meer volledig ondersteund. Als je het volledig wilt kunnen laden, gebruik dan versie 3.12 van DB-browser voor SQLite om het om te zetten naar het nieuwe bestandsformaat. - + Table '%1' not found; settings ignored - + Could not open project file for writing. Reason: %1 Kon het projectbestand niet openen om naar te schrijven. Reden: %1 - + -- Reference to file "%1" (not supported by this version) -- - + Project saved to file '%1' Project opgeslagen in bestand '%1' - + Yes. Don't ask again Ja. Niet nogmaals vragen - + 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! @@ -4367,82 +4546,82 @@ Wees je er bewust van dat als je doorgaat er slechte dingen kunnen gebeuren met 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 @@ -6251,26 +6430,26 @@ Weet je zeker dat je door wilt gaan? 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: Cannot open the file for sending. Fout: kan het te verzenden bestand niet openen. @@ -7060,32 +7239,32 @@ bestaat in de partitie dan wordt NULL geretourneerd. 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 @@ -7427,7 +7606,7 @@ Houdt %3Shift ingedrukt terwijl je klikt om er naartoe te springen - + Delete Record Record verwijderen @@ -7529,7 +7708,7 @@ Houdt %3Shift ingedrukt terwijl je klikt om er naartoe te springen - + Set encoding Encodering aanpassen @@ -7794,96 +7973,96 @@ Houdt %3Shift ingedrukt terwijl je klikt om er naartoe te springen . Som: %1; Gemiddelde: %2; Min.: %3; Max.: %4 - + Conditional formats for "%1" Voorwaardelijke opmaakregels voor "%1" - + determining row count... aantal records bepalen... - + %L1 - %L2 of >= %L3 - + %L1 - %L2 of %L3 - + (clipped at %L1 rows) - + 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 - + 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. diff --git a/src/translations/sqlb_pl.ts b/src/translations/sqlb_pl.ts index 51ceeb989..915ae52cb 100644 --- a/src/translations/sqlb_pl.ts +++ b/src/translations/sqlb_pl.ts @@ -732,114 +732,114 @@ Jeśli zostały zmienione jakiekolwiek dodatkowe ustawienia dla pliku tej bazy d - + 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 @@ -848,12 +848,12 @@ 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: @@ -862,32 +862,32 @@ Wiadomość z silnika bazy danych: - + 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 - + Error loading built-in extension: %1 - + could not get column information nie można uzyskać informacji o kolumnie @@ -1958,7 +1958,7 @@ Wszystkie dane przechowywane w tym polu zostaną utracone. ExtendedScintilla - + Ctrl+H Ctrl+H @@ -1969,22 +1969,22 @@ Wszystkie dane przechowywane w tym polu zostaną utracone. - + Ctrl+P Ctrl+P - + Find... Znajdź... - + Find and Replace... Znajdź i zamień… - + Print... Wydrukuj... @@ -1992,128 +1992,128 @@ Wszystkie dane przechowywane w tym polu zostaną utracone. 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 - + Cut Wytnij - + Copy Skopiuj - + Copy with Headers Skopiuj wraz z nagłówkami - + Copy as SQL Skopiuj jako SQL - + Paste Wklej - + Print... Wydrukuj... - + 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 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? Zawartość schowka jest większa niż zaznaczony zakres. @@ -2508,7 +2508,7 @@ x~y Zakres: wartości pomiędzy x oraz y - + Tab Tab @@ -2651,7 +2651,7 @@ x~y Zakres: wartości pomiędzy x oraz y - + Deselect All Odznacz wszystkie @@ -2661,52 +2661,52 @@ x~y Zakres: wartości pomiędzy x oraz y 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 - + Could not prepare INSERT statement: %1 Nie można było przygotować polecania INSERT: %1 - + Inserting row failed: %1 Wstawianie rzędu nie powiodło się: %1 - + Unexpected end of file. Please make sure that you have configured the correct quote characters and the file is not malformed. Nieoczekiwany koniec pliku. Upewnij się, że masz poprawnie ustawione znaki cytowania i że plik nie jest zniekształcony. - + 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. @@ -2719,12 +2719,12 @@ x~y Zakres: wartości pomiędzy x oraz y Przeglądarka 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. 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 @@ -2738,379 +2738,379 @@ Można przeciągać polecenia SQL z wiersza obiektu i upuszczać je na innych ap - + 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+/ Ctrl+/ - + Stop SQL execution Zatrzymaj wykonywanie SQL - + Stop execution Zatrzymaj wykonywanie - + Stop the currently running SQL script Zatrzymaj wykonywanie bieżącego skryptu SQL - + &File &Plik - + &Import Za&importuj - + &Export Wy&eksportuj - + &Edit &Edycja - + &View &Widok - + &Help Po&moc - + Too&ls &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 Układ 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 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 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 - + New &tab Nowa kar&ta - + Open SQL file(s) Otwórz plik(i) SQL - + This button opens files containing SQL statements and loads them in new editor tabs Przycisk ten otwiera pliki, zawierające polecenia SQL oraz wczytuje je do kart nowego edytora - + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file Przycisk ten umożliwia zapisanie wszystkich ustawień związanych z otwieraniem bazy danych w Przeglądarce BD w przypadku pliku projektu - + This button lets you open a DB Browser for SQLite project file Przycisk ten umożliwia ci otwarcie pliku projektu Przeglądarki BD - + &Open Database &Otwórz bazę danych - + Drag && Drop SELECT Query Przeciągnij && upuść zapytanie SELECT - - + + When dragging fields from the same table or a single table, drop a SELECT query into the editor Przy przeciągniu pól z tej samej tabeli lub pojedynczej tabeli upuść zapytania SELECT na edytor - + Browse Table Przeglądaj tabelę - + Close Pro&ject Zamknij pro&jekt - - + + Close project and database files and return to the initial state Zamknij plik projektu i bazy danych oraz zwróć początkowy stan - + Ctrl+Shift+F4 Ctrl+Shift+F4 - - + + Detach Database Odłącz bazę danych - - + + Detach database file attached to the current database connection Odłącz plik bazy danych dołączony do bieżącego połączenia bazy danych - - + + Ctrl+W 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+S - + Ctrl+Shift+O 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 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. @@ -3121,345 +3121,345 @@ Można przeciągać polecenia SQL z kolumny schematu i upuszczać je w edytorze - + 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 Ctrl+Q - + &Database from SQL file... Bazę &danych z pliku SQL… - + Import data from an .sql dump text file into a new or existing database. Zaimportuj 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... &Tabelę 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... Bazę &danych do pliku SQL… - + Export a database to a .sql dump text file. Wyeksportuj 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... &Tabelę 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... &Dostosuj tabelę... - + 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... U&stawienia... - - + + 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 od bazy danych. - + Ctrl+T Ctrl+T - + W&hat's This? &Co to jest? - - + + Ctrl+F4 Ctrl+F4 - + Shift+F1 Shift+F1 - + &About O progr&amie - + &Load Extension... &Wczytaj rozszerzenia... - + &Wiki &Wiki - + F1 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 z układu - - + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor Używaj nazw z układu (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 Wydrukuj - + Print text from current SQL editor tab Wydrukuj 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 Wydrukuj układ bieżącej bazy danych - + Open a dialog for printing the structure of the opened database Otwiera okno do drukowania układu bieżącej bazy danych - + &Recently opened Ostatnio otwie&rane @@ -3485,412 +3485,591 @@ Plik CSV można stworzyć na podstawie większości baz danych i aplikacji arkus Edytuj p&ragmy - - + + Temp Store + + + + + Secure Delete + + + + + Case Sensitive Like + + + + + Journal Mode + + + + + Journal Size Limit + + + + + Recursive Triggers + + + + + Delete + pragma + + + + + Truncate + pragma + + + + + Persist + pragma + + + + + Memory + pragma + + + + + WAL + pragma + + + + + Off + pragma + + + + + Page Size + + + + + Foreign Keys + Klucze obce + + + + Auto Vacuum + + + + + Max Page Count + + + + + Normal + pragma + + + + + Exclusive + pragma + + + + + Checkpoint Full FSYNC + + + + + Off + + + + + Normal + + + + + + Full + + + + + Default + + + + + File + Plik + + + + Memory + + + + + Automatic Index + + + + + Ignore Check Constraints + + + + + Full FSYNC + + + + + WAL Auto Checkpoint + + + + + User Version + + + + + Synchronous + + + + + None + Brak + + + + Incremental + + + + + Locking Mode + + + + + E&xecute SQL This has to be equal to the tab title in all the main tabs W&ykonaj SQL - + &Recent Files Os&tatnie pliki - + &New Database &Nowa baza danych - + &Undo &Cofnij - - + + Undo last change to the database Wycofaj ostatnią zmianę w bazie danych - + This action undoes the last change performed to the database in the Database Browser or in Execute SQL. Redoing is not possible. To działanie wycofuje ostatnią zmianę dokonaną w bazie danych w Przeglądarce Bazy Danych lub poprzez Wykonanie Polecenia SQL. Ponowienie tego działania jest niemożliwe. - + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields from a table, as well as modify field names and types. Otwiera pomocnika Zmiany Tabeli, gdzie można zmienić nazwę istniejącej tabeli. Można także dodawać i usuwać pola z tabeli, a także zmieniać nazwy oraz rodzaje pól. - + This button opens a new tab for the SQL editor Ten przycisk otwiera nową tabelę w edytorze SQL - + &Execute SQL &Wykonaj polecenie 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. - + Ctrl+Shift+T Ctrl+Shift+T - - - + + + 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 Shift+F5 - + Export as CSV file Wyeksportuj do pliku CSV - + Export table as comma separated values file Wyeksportuj tabelę jako plik z wartościami oddzielonymi przecinkami - + Sa&ve Project &Zapisz projekt - + &Save Project Zapi&sz projekt - - + + Save the current session to a file Zapisz obecną sesję do pliku - + Open &Project Otwórz &projekt - - + + 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 Wyeksportuj 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 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 Ctrl+H - + Export to &CSV Wyeksportuj do &CSV - + Export to &JSON Wyeksportuj do &JSON - + 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+Shift+W Ctrl+Shift+W - + Table from CSV data in Clipboard... Tabela z danych CSV ze schowka... - + This treats the current clipboard contents as a CSV file and opens the same import wizard that is used for importing CSV data from a file. Traktuje to bieżącą zawartość schowka jako plik CSV i otwiera tego samego pomocnika importowania, co w przypadku importowania danych CSV z pliku. - + Show &Row Counts Pokaż licznik wie&rszy - + This shows the number of rows for each table and view in the database. Pokazuje to liczbę wierszy dla każdej tabeli i wodku w bazie danych. - + Save Database &As... Z&apisz bazę danych jako... - + Save the current database as a different file Zapisz bieżącą bazę danych do innego pliku - + Refresh Odśwież - + Reload the database structure Wczytaj ponownie strukturę bazy danych - + Ctrl+Return Ctrl+Enter - + Ctrl+L Ctrl+L - - + + Ctrl+P Ctrl+P - + Ctrl+D Ctrl+D - + Ctrl+I Ctrl+I - + Ctrl+E Ctrl+E - + Reset Window Layout Wyzeruj układ okien - + The database is currently 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 @@ -3898,180 +4077,180 @@ z bieżącej transakcji. Czy na pewno? - + In-Memory database Baza danych w-pamięci - + Automatically load the last opened DB file at startup - + Ctrl+Alt+0 Ctrl+Alt+0 - + Ctrl+Alt+W Ctrl+Alt+W - + Choose a database file to save under Wybierz plik, do którego zapisać bazę danych - + Error while saving the database to the new file. Napotkano błąd podczas zapisywania bazy danych do nowego pliku. - + 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 Edytuj widok %1 - + Edit Trigger %1 Edytuj wyzwalacz %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 Otworzono '%1' w trybie tylko do odczytu ze spisu ostatnich plików - + Opened '%1' from recent file list Otwarto '%1' ze spisu ostatnich plików - + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. @@ -4081,77 +4260,77 @@ Czy na pewno zapisać bazę danych? - + The statements in the tab '%1' 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 na karcie '%1' nadal są wykonywane. Zamknięcie tej karty przerwie ich wykonywanie. Może to pozostawić bazę danych w niespójnym stanie. Czy na pewno zamknąć tę kartę? - + DB file '%1' could not be opened Nie można otworzyć pliku BD '%1' - + 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 no longer fully supported. If you want to load it completely, please use DB Browser for SQLite version 3.12 to convert it to the new file format. Projekt ten używa starego formatu pliku, bo został stworzony w Przeglądarce BD w wersji 3.10 lub wcześniejszej. Wczytywanie takich formatów plików nie jest już obsługiwane. Jeśli chcesz go wczytać całkowicie, to użyj Przeglądarki BD w wersji 3.12 i przekształć go na nowy format pliku. - + Table '%1' not found; settings ignored Nie można było odnaleźć tabeli '%1'; pominięto ustawienia - + -- Reference to file "%1" (not supported by this version) -- -- Odniesienie do pliku "%1" (nieobsługiwane w tej wersji) -- - + Project saved to file '%1' Projekt zapisano do pliku '%1' - + Yes. Don't ask again Tak. Nie pytaj - + This action will open a new SQL tab with the following statements for you to edit and run: Działanie to otworzy nową kartę SQL z następującymi poleceniami, które możesz dostosować i wykonać: - + 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 @@ -4160,164 +4339,164 @@ Czy na pewno zapisać bazę danych? %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)... Zaimportuj plik(i) CSV... - + 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. - + Ctrl+Tab Ctrl+Tab - + Ctrl+Shift+Tab Ctrl+Shift+Tab - + Clear List Wyczyść spis - + Window Layout Układ okna - + Simplify Window Layout Uprość układ okien - + Alt+Shift+0 Alt+Shift+0 - + Dock Windows at Bottom Zadokuj okna na dole - + Dock Windows at Left Side Zadokuj okna po lewej stronie - + Dock Windows at Top Zadokuj okna na górze - + 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 Dostosuj tabelę - + Setting PRAGMA values will commit your current transaction. Are you sure? Ustawianie wartości PRAGMA spowoduje wdrożenie twoich zmian @@ -4325,95 +4504,95 @@ 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? - + 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) - + 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! @@ -4422,47 +4601,47 @@ 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) @@ -6259,26 +6438,26 @@ Are you sure you want to proceed? Wpisz 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: Cannot open the file for sending. Błąd: Nie można otworzyć pliku do wysłania. @@ -7016,32 +7195,32 @@ elementu w grupie, a wiersze-partycji to liczba wierszy w partycji.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 @@ -7383,7 +7562,7 @@ Przyciśnij %3Shift i kliknij, aby tu przejść - + Delete Record Usuń rekord @@ -7485,7 +7664,7 @@ Przyciśnij %3Shift i kliknij, aby tu przejść - + Set encoding Ustaw kodowanie @@ -7752,96 +7931,96 @@ Przyciśnij %3Shift i kliknij, aby tu przejść . Suma: %1; Średnia: %2; Min: %3; Maks: %4 - + Conditional formats for "%1" Formatowania warunkowe dla "%1" - + determining row count... określanie liczby wierszy… - + %L1 - %L2 of >= %L3 %L1 - %L2 z >= %L3 - + %L1 - %L2 of %L3 %L1 - %L2 z %L3 - + (clipped at %L1 rows) (przycięta na %L1 wirszach) - + 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+" 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 - + 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ń. diff --git a/src/translations/sqlb_pt_BR.ts b/src/translations/sqlb_pt_BR.ts index c4c1f9546..3c60f2290 100644 --- a/src/translations/sqlb_pt_BR.ts +++ b/src/translations/sqlb_pt_BR.ts @@ -695,22 +695,22 @@ O processo de encriptação pode demorar alguns minutos e você deve ter um back - + 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: @@ -719,12 +719,12 @@ O processo de encriptação pode demorar alguns minutos e você deve ter um back - + Error setting pragma %1 to %2: %3 Erro definindo pragma %1 para %2: %3 - + File not found. Arquivo não encontrado. @@ -734,31 +734,31 @@ O processo de encriptação pode demorar alguns minutos e você deve ter um back 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 - + Error loading built-in extension: %1 - + could not get column information não pôde obter informação sobre a coluna @@ -794,80 +794,80 @@ Aborting execution%3. 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 @@ -876,17 +876,17 @@ 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 @@ -1947,7 +1947,7 @@ Todos os dados atualmente armazenados nesse campo serão perdidos. ExtendedScintilla - + Ctrl+H @@ -1958,22 +1958,22 @@ Todos os dados atualmente armazenados nesse campo serão perdidos. - + Ctrl+P - + Find... Encontrar... - + Find and Replace... Encontrar e substituir... - + Print... Imprimir... @@ -1981,129 +1981,129 @@ Todos os dados atualmente armazenados nesse campo serão perdidos. 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... - + Cut - + 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. @@ -2490,7 +2490,7 @@ x~y Intervalo: valores entre x e y - + Tab Tab @@ -2557,17 +2557,17 @@ x~y Intervalo: valores entre x e y 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 @@ -2613,7 +2613,7 @@ x~y Intervalo: valores entre x e y - + Deselect All Limpar seleção @@ -2623,7 +2623,7 @@ x~y Intervalo: valores entre x e y Detectar similares - + Select All Selecionar tudo @@ -2668,32 +2668,32 @@ x~y Intervalo: valores entre x e y 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 - + Could not prepare INSERT statement: %1 - + Unexpected end of file. Please make sure that you have configured the correct quote characters and the file is not malformed. - + 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. @@ -2706,528 +2706,528 @@ x~y Intervalo: valores entre x e y 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 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 - + Ctrl+T - + &Execute SQL &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+L - - + + Ctrl+P - + Ctrl+D - + Ctrl+I - + Reset Window Layout Resetar layout da janela - + The database is currently 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. - + Ctrl+Tab - + Ctrl+Shift+Tab - + Clear List - + Window Layout - + Ctrl+Alt+0 - + Simplify Window Layout - + Alt+Shift+0 - + Dock Windows at Bottom - + Dock Windows at Left Side - + Dock Windows at Top - + Ctrl+Alt+W - + Choose a database file to save under - + Error while saving the database to the new file. - + 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 - + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. @@ -3236,200 +3236,200 @@ Se você disser que não, tentaremos importar os dados do arquivo SQL para o ban - + 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. - + Edit Database &Cell Editar &célula do banco de dados - + DB Sche&ma Esque&ma do banco de dados - + Open SQL file(s) - + This button opens files containing SQL statements and loads them in new editor tabs - + 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 @@ -3438,49 +3438,49 @@ Você tem certeza? %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. @@ -3496,32 +3496,211 @@ Você pode arrastar comandos SQL de uma linha e soltá-los em outras aplicaçõe - + + Temp Store + + + + + Secure Delete + + + + + Case Sensitive Like + + + + + Journal Mode + + + + + Journal Size Limit + + + + + Recursive Triggers + + + + + Delete + pragma + + + + + Truncate + pragma + + + + + Persist + pragma + + + + + Memory + pragma + + + + + WAL + pragma + + + + + Off + pragma + + + + + Page Size + + + + + Foreign Keys + + + + + Auto Vacuum + + + + + Max Page Count + + + + + Normal + pragma + + + + + Exclusive + pragma + + + + + Checkpoint Full FSYNC + + + + + Off + + + + + Normal + + + + + + Full + + + + + Default + + + + + File + Arquivo + + + + Memory + + + + + Automatic Index + + + + + Ignore Check Constraints + + + + + Full FSYNC + + + + + WAL Auto Checkpoint + + + + + User Version + + + + + Synchronous + + + + 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. - + + None + Nenhum + + + + Incremental + + + + + Locking Mode + + + + Too&ls Ferr&amentas - + 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. @@ -3532,336 +3711,336 @@ Você pode arrastar comandos SQL da coluna Esquema e largá-los no editor SQL ou - - + + 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 - + &New Database - + This button closes the connection to the currently open database file Esse botão fecha a conexão com o arquivo aberto - - + + Ctrl+F4 - + &Undo - - + + Undo last change to the database - + This action undoes the last change performed to the database in the Database Browser or in Execute SQL. Redoing is not possible. - + Compact &Database... Compactar banco de &dados... - + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields from a table, as well as modify field names and types. - + &About &Sobre - + New &tab - + 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. - + Ctrl+Shift+T - + &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... - + &Save Project - + Open &Project... Abrir &projeto... - + Open &Project - + &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 - + Export to &JSON - + 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 - - + + Ctrl+Shift+W - + Table from CSV data in Clipboard... - + This treats the current clipboard contents as a CSV file and opens the same import wizard that is used for importing CSV data from a file. - + Show &Row Counts - + This shows the number of rows for each table and view in the database. - + Save Database &As... - + Save the current database as a different file - + Refresh Atualizar - + Reload the database structure - + 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 @@ -3887,505 +4066,505 @@ Você pode arrastar comandos SQL da coluna Esquema e largá-los no editor SQL ou - - + + E&xecute SQL This has to be equal to the tab title in all the main tabs - + &Recent Files - + 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 - + &Open Database - + New In-&Memory Database Nova tabela em &memória - + Drag && Drop SELECT Query - - + + When dragging fields from the same table or a single table, drop a SELECT query into the editor - + 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 - + Close Pro&ject - - + + Close project and database files and return to the initial state - + Ctrl+Shift+F4 - - + + Detach Database - - + + Detach database file attached to the current database connection - + 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 - + 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. 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 - + Opened '%1' from recent file list - + The statements in the tab '%1' 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? - + DB file '%1' could not be opened - + 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 no longer fully supported. If you want to load it completely, please use DB Browser for SQLite version 3.12 to convert it to the new file format. - + Table '%1' not found; settings ignored - + -- Reference to file "%1" (not supported by this version) -- - + Project saved to file '%1' Projeto salvo no arquivo '%1' - + Yes. Don't ask again - + This action will open a new SQL tab with the following statements for you to edit and run: - + 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 - + Automatically load the last opened DB file at startup - - + + 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... - + 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? - + 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 - + 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! @@ -4394,57 +4573,57 @@ So você optar por proceder, esteja avisado de que coisas ruins podem acontecer 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. @@ -6231,26 +6410,26 @@ Are you sure you want to proceed? 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: Cannot open the file for sending. Erro: Não pôde abrir o arquivo para envio. @@ -6975,7 +7154,7 @@ Uso dessa função precisa ser autorizado em Preferências. SqliteTableModel - + Error changing data: %1 Erro modificando dados: @@ -6992,25 +7171,25 @@ Uso dessa função precisa ser autorizado em Preferências. 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 @@ -7352,7 +7531,7 @@ Segure %3Shift e clique para ir para lá - + Delete Record Deletar registro @@ -7454,7 +7633,7 @@ Segure %3Shift e clique para ir para lá - + Set encoding Definir codificação @@ -7719,96 +7898,96 @@ Segure %3Shift e clique para ir para lá . 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... - + %L1 - %L2 of >= %L3 - + %L1 - %L2 of %L3 - + (clipped at %L1 rows) - + 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 - + 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). diff --git a/src/translations/sqlb_ro.ts b/src/translations/sqlb_ro.ts index 64f0c5656..c231a4979 100644 --- a/src/translations/sqlb_ro.ts +++ b/src/translations/sqlb_ro.ts @@ -745,115 +745,115 @@ Dacă oricare dintre celelalte setări au fost modificate pentru acest fișier d - + Cancel Anulează - - + + No database file opened Nu este deschis niciun fișier bază de date - + Executing SQL... Executând SQL... - + Action cancelled. Acțiune anulată. - - + + Error in statement #%1: %2. Aborting execution%3. Eroare în instrucțiunea #%1: %2. Se anulează execuția%3. - - + + and rolling back unclear translation și derulând înapoi - + didn't receive any output from %1 nu s-a primit niciun rezultat de la %1 - + could not execute command: %1 nu se poate executa comanda: %1 - + Cannot delete this object Nu se poate șterge acest obiect - + Cannot set data on this object Nu se pot seta date pe acest obiect - - + + A table with the name '%1' already exists in schema '%2'. Un tabel cu numele '%1' există deja în schema '%2'. - + No table with name '%1' exists in schema '%2'. Nu există tabel cu numele '%1' în schema '%2'. - - + + Cannot find column %1. Nu se poate găsi coloana %1. - + Creating savepoint failed. DB says: %1 Crearea punctului de salvare a eșuat. BD spune: %1 - + Renaming the column failed. DB says: %1 Redenumirea coloanei a eșuat. BD spune: %1 - - + + Releasing savepoint failed. DB says: %1 Eliberarea punctului de salvare a eșuat. BD spune: %1 - + Creating new table failed. DB says: %1 Crearea unui nou tabel a eșuat. BD spune: %1 - + Copying data to new table failed. DB says: %1 Copierea datelor într-un nou tabel a eșuat. BD spune: %1 - + Deleting old table failed. DB says: %1 Ștergerea tabelului vechi a eșuat. BD spune: %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: @@ -862,7 +862,7 @@ Se anulează execuția%3. - + Error renaming table '%1' to '%2'. Message from database engine: %3 @@ -871,37 +871,37 @@ Mesaj de la motorul bazei de date: %3 - + could not get list of db objects: %1 nu s-a putut obține lista obiectelor bd: %1 - + could not get list of databases: %1 nu s-a putut obține lista bazelor de date: %1 - + Error setting pragma %1 to %2: %3 Eroare la setarea pragma %1 la %2: %3 - + File not found. Fișierul nu a fost găsit. - + Error loading extension: %1 Eroare la încărcarea extensiei: %1 - + Error loading built-in extension: %1 - + could not get column information nu s-a putut obține informația coloanei @@ -1974,7 +1974,7 @@ Toate datele stocate în prezent în acest câmp vor fi pierde. ExtendedScintilla - + Ctrl+H Ctrl+H @@ -1985,22 +1985,22 @@ Toate datele stocate în prezent în acest câmp vor fi pierde. - + Ctrl+P Ctrl+P - + Find... Găsește... - + Find and Replace... Găsește și Înlocuiește... - + Print... Imprimare... @@ -2008,129 +2008,129 @@ Toate datele stocate în prezent în acest câmp vor fi pierde. ExtendedTableWidget - + Use as Exact Filter Folosește ca Filtru Exact - + Containing Conținând - + Not containing Nu conține - + Not equal to Nu este egal cu - + Greater than Mai mare ca - + Less than Mai mic ca - + Greater or equal Mai mare sau egal - + Less or equal Mai mic sau egal - + Between this and... Între asta și... - + Regular expression Expresie regulată - + Edit Conditional Formats... Editează Formatele Condiționale... - + Set to NULL Setează la NULL - + Cut Taie - + Copy Copiază - + Copy with Headers Copiază cu anteturi - + Copy as SQL Copiază ca SQL - + Paste Lipește - + Print... Imprimare... - + Use in Filter Expression Utilizează în Filtru Expresie - + 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? Conținutul clipboard-ului este mai mare decât intervalul selectat. Doriți să îl inserați oricum? - + <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>Nu toate datele au fost încărcate. <b>Doriți să încărcați toate datele înainte de a selecta toate rândurile?</b><p><p>Răspunzând<b>Nu</b> înseamnă că nu vor mai fi încărcate date și selecția nu va fi efectuată.<br/>Răspunzând <b>Da</b> ar putea dura ceva timp până când datele sunt încărcate, dar selecția va fi completă.</p>Avertisment: Încărcarea tuturor datelor poate necesita o cantitate mare de memorie pentru tabelele mari. - + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. Nu se poate seta selecția la NULL. Coloana %1 are o constrângere NOT NULL. @@ -2527,7 +2527,7 @@ x~y Interval: valori între x și y - + Tab Tab @@ -2670,7 +2670,7 @@ x~y Interval: valori între x și y - + Deselect All Deselectează Toate @@ -2680,52 +2680,52 @@ x~y Interval: valori între x și y Potrivire Similară - + Select All Selectează Toate - + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. Există deja un tabel numit '%1 ' și un import într-un tabel existent este posibil numai dacă numărul de coloane se potrivește. - + There is already a table named '%1'. Do you want to import the data into it? Există deja un tabel numit '%1'. Doriți să importați datele în el? - + Creating restore point failed: %1 Crearea punctului de restaurare a eșuat: %1 - + Creating the table failed: %1 Crearea tabelului a eșuat: %1 - + importing CSV importând CSV - + Could not prepare INSERT statement: %1 Nu s-a putut pregăti instrucțiunea INSERT: %1 - + Inserting row failed: %1 Inserarea rândului a eșuat: %1 - + Unexpected end of file. Please make sure that you have configured the correct quote characters and the file is not malformed. Sfârșit neașteptat de fișier. Vă rugăm să vă asigurați că ați configurat caracterele de citare corecte și că fișierul nu este malformat. - + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. Importarea fișierului '%1' a durat %2ms. Din aceasta, %3ms au fost petrecute în funcția de rând. @@ -2747,107 +2747,107 @@ Puteți glisa instrucțiuni SQL dintr-un rând de obiect și să le plasați în - + 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. Avertisment: acest pragma nu poate fi citit și această valoare a fost dedusă. Scrierea pragma ar putea suprascrie un LIKE redefinit furnizat de o extensie SQLite. - + toolBar1 barăDeInstrumente1 - + &File &Fișier - + &Import &Importă - + &Export &Exportă - + &Edit &Editează - + &View &Vizualizare - + &Help &Ajutor - + DB Toolbar Bară de instrumente BD - + Edit Database &Cell Editează &Celula Bazei De Date - + SQL &Log &Jurnal SQL - + Show S&QL submitted by Arată S&QL trimis de - + User Utilizator - + Application Aplicație - + Error Log Jurnal De Erori - + This button clears the contents of the SQL logs Acest buton șterge conținutul jurnalelor SQL - + &Clear &Golire - + This panel lets you examine a log of all SQL commands issued by the application or by yourself Acest panou vă permite să examinați un jurnal al tuturor comenzilor SQL emise de către aplicație sau de către dumneavoastră - + &Plot G&rafic - + DB Sche&ma Sche&mă BD - + 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. @@ -2858,419 +2858,419 @@ Puteți să glisați instrucțiunile SQL din coloana Schemă și să le plasați - + &Remote La &Distanță - - + + Project Toolbar Bară De Instrumente Proiect - + Extra DB toolbar Bară de instrumente suplimentară BD - - - + + + Close the current database file Închide fișierul bazei de date curente - + &New Database... &Bază De Date Nouă... - - + + Create a new database file Creează un nou fișier de bază de date - + This option is used to create a new database file. Această opțiune este utilizată pentru a crea un nou fișier de bază de date. - + Ctrl+N Ctrl+N - - + + &Open Database... &Deschide Bază De Date... - - - - - + + + + + Open an existing database file Deschide un fișier de bază de date existent - - - + + + This option is used to open an existing database file. Această opțiune este utilizată pentru a deschide un fișier de bază de date existent. - + Ctrl+O Ctrl+O - + &Close Database Înc&hide Bază De Date - + This button closes the connection to the currently open database file Acest buton închide conexiunea la fișierul bazei de date deschis în prezent - - + + Ctrl+F4 Ctrl+F4 - + &Revert Changes &Revocare Modificări - - + + Revert database to last saved state Revocare bază de date la ultima stare salvată - + 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. Această opțiune este utilizată pentru a revoca fișierul de bază de date curent la ultima sa stare salvată. Toate modificările efectuate de la ultima operațiune de salvare sunt pierdute. - + &Write Changes Scrie &Modificările - - + + Write changes to the database file Scrie modificările în fișierul bazei de date - + This option is used to save changes to the database file. Această opțiune este utilizată pentru a salva modificările la fișierul bazei de date. - + Ctrl+S Ctrl+S - + Compact &Database... &Compactare Bază De Date... - + Compact the database file, removing space wasted by deleted records Compactează fișierul bazei de date, eliminând spațiu irosit de înregistrări șterse - - + + Compact the database file, removing space wasted by deleted records. Compactează fișierul bazei de date, eliminând spațiu irosit de înregistrări șterse. - + E&xit Ieși&re - + Ctrl+Q Ctrl+Q - + &Database from SQL file... Bază de date din fișier &SQL... - + Import data from an .sql dump text file into a new or existing database. Importă date dintr-un fișier text .sql dump într-o bază de date nouă sau existentă. - + 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. Această opțiune vă permite să importați date dintr-un fișier text .sql dump într-o bază de date nouă sau existentă. Fișierele SQL dump pot fi create pe majoritatea motoarelor de baze de date, inclusiv MySQL și PostgreSQL. - + &Table from CSV file... Tabel din fișier &CSV... - + Open a wizard that lets you import data from a comma separated text file into a database table. Deschide un asistent care vă permite să importați date dintr-un fișier text separat prin virgulă într-un tabel de bază de date. - + 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. Deschide un asistent care vă permite să importați date dintr-un fișier text separat prin virgulă într-un tabel de bază de date. Fișierele CSV pot fi create în majoritatea aplicațiilor de baze de date și foi de calcul. - + &Database to SQL file... Bază de date în fișier &SQL... - + Export a database to a .sql dump text file. Exportă o bază de date într-un fișier text .sql dump. - + 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. Această opțiune vă permite să exportați o bază de date într-un fișier text .sql dump. Fișierele SQL dump conțin toate datele necesare pentru a recrea baza de date pe majoritatea motoarelor de baze de date, inclusiv MySQL și PostgreSQL. - + &Table(s) as CSV file... Tabel(e) ca fișier &CSV... - + Export a database table as a comma separated text file. Exportă un tabel de bază de date sub forma unui fișier text separat prin virgulă. - + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. Exportă un tabel de bază de date sub forma unui fișier text separat prin virgulă, gata să fie importat în alte aplicații de baze de date sau foi de calcul. - + &Create Table... Creează &Tabel... - + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database Deschide asistentul Creează Tabel, unde este posibilă definirea numelui și a câmpurilor pentru un tabel nou în baza de date - + &Delete Table... Șter&ge Tabel... - - + + Delete Table Șterge Tabel - + Open the Delete Table wizard, where you can select a database table to be dropped. Deschide asistentul Șterge Tabel, unde puteți selecta un tabel de bază de date pentru a fi șters. - + &Modify Table... &Modifică Tabel... - + Create &Index... Creează In&dice... - + Open the Create Index wizard, where it is possible to define a new index on an existing database table. Deschide asistentul Creează Indice, unde este posibil să definiți un nou indice pe un tabel existent de bază de date. - + &Preferences... &Preferinţe... - - + + Open the preferences window. Deschide fereastra de preferințe. - + &DB Toolbar Bară De Instrumente &BD - + Shows or hides the Database toolbar. Afișează sau ascunde bara de instrumente a Bazei De Date. - + W&hat's This? Ce Este &Asta? - + Shift+F1 Shift+F1 - + &About &Despre - + &Recently opened &Deschis recent - + This button opens a new tab for the SQL editor Acest buton deschide o filă nouă pentru editorul SQL - + Ctrl+T Ctrl+T - + &Execute SQL &Execută SQL - + Execute all/selected SQL Execută toate/selectat SQL - + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. Acest buton execută instrucțiunile SQL selectate în prezent. Dacă nu este selectat niciun text, sunt executate toate instrucțiunile SQL. - + Ctrl+Return Ctrl+Return - - - + + + Save SQL file Salvează fișier SQL - + &Load Extension... Încarcă &Extensie... - - + + Execute current line Execută linia curentă - + Execute line Execută linia - + This button executes the SQL statement present in the current editor line Acest buton execută instrucțiunea SQL prezentă în linia curentă a editorului - + Shift+F5 Shift+F5 - + Export as CSV file Exportă ca fișier CSV - + Export table as comma separated values file Exportă tabelul ca fișier cu valori separate prin virgulă - + &Wiki &Wiki - + F1 F1 - + Bug &Report... &Raport De Eroare... - + Feature Re&quest... Cerere &Caracteristică... - + Web&site &Site web - + &Donate on Patreon... Donează pe &Patreon... - + Sa&ve Project Sal&vează Proiect - - + + Save the current session to a file Salvează sesiunea curentă într-un fișier - + Open &Project... Deschide &Proiect... - - + + Load a working session from a file Încarcă o sesiune de lucru dintr-un fișier @@ -3296,851 +3296,1030 @@ Puteți să glisați instrucțiunile SQL din coloana Schemă și să le plasați Editează &Pragmele - - + + Temp Store + + + + + Secure Delete + + + + + Case Sensitive Like + + + + + Journal Mode + + + + + Journal Size Limit + + + + + Recursive Triggers + + + + + Delete + pragma + + + + + Truncate + pragma + + + + + Persist + pragma + + + + + Memory + pragma + + + + + WAL + pragma + + + + + Off + pragma + + + + + Page Size + + + + + Foreign Keys + Chei Străine + + + + Auto Vacuum + + + + + Max Page Count + + + + + Normal + pragma + + + + + Exclusive + pragma + + + + + Checkpoint Full FSYNC + + + + + Off + + + + + Normal + + + + + + Full + + + + + Default + Implicit + + + + File + Fişier + + + + Memory + + + + + Automatic Index + + + + + Ignore Check Constraints + + + + + Full FSYNC + + + + + WAL Auto Checkpoint + + + + + User Version + + + + + Synchronous + + + + + None + Niciunul + + + + Incremental + + + + + Locking Mode + + + + + E&xecute SQL This has to be equal to the tab title in all the main tabs &Execută SQL - + &Recent Files &Fișiere Recente - + Too&ls &Instrumente - + &New Database &Bază De Date Nouă - + &Undo &Anulează - - + + Undo last change to the database Anulează ultima modificare a bazei de date - + This action undoes the last change performed to the database in the Database Browser or in Execute SQL. Redoing is not possible. Această acțiune anulează ultima modificare efectuată în baza de date în Navigator Bază De Date sau în Execută SQL. Refacerea nu este posibilă. - + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields from a table, as well as modify field names and types. Deschide asistentul Modifică Tabel, unde este posibilă redenumirea unui tabel existent. De asemenea, este posibil să se adauge sau să se șteargă câmpuri dintr-un tabel, precum și să se modifice numele și tipurile de câmpuri. - + New &tab &Fila nouă - + Open SQL file(s) Deschide fișier(e) SQL - + This button opens files containing SQL statements and loads them in new editor tabs Acest buton deschide fișiere care conțin instrucțiuni SQL și le încarcă în file noi ale editorului - + Ctrl+Shift+T Ctrl+Shift+T - + &Save Project &Salvează Proiect - + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file Acest buton vă permite să salvați toate setările asociate BD deschise într-un fișier de proiect DB Browser for SQLite - + Open &Project &Deschide Proiect - + This button lets you open a DB Browser for SQLite project file Acest buton vă permite să deschideți un fișier de proiect DB Browser for SQLite - + &Attach Database... &Atașează Baza De Date... - - + + Add another database file to the current database connection Adaugă un alt fișier de bază de date la conexiunea curentă a bazei de date - + This button lets you add another database file to the current database connection Acest buton vă permite să adăugați un alt fișier de bază de date la conexiunea curentă a bazei de date - + &Set Encryption... &Setează Criptarea... - - + + Save SQL file as Salvează fișierul SQL ca - + This button saves the content of the current SQL editor tab to a file Acest buton salvează conținutul filei curente a editorului SQL într-un fișier - + &Browse Table &Răsfoire Tabel - + Copy Create statement Copiază Instrucțiunea De Creare - + Copy the CREATE statement of the item to the clipboard Copiază instrucțiunea CREATE a elementului în clipboard - + SQLCipher &FAQ SQLCipher &FAQ - + Opens the SQLCipher FAQ in a browser window Deschide SQLCipher FAQ într-o fereastră de browser - + Table(&s) to JSON... Tabel(e) în &JSON... - + Export one or more table(s) to a JSON file Exportă unul sau mai multe tabele într-un fișier JSON - + Open Data&base Read Only... abbreviated 'database' Deschide BD În Modul Doar-&Citire... - + Open an existing database file in read only mode Deschide un fișier de bază de date existent în modul doar-citire - + Ctrl+Shift+O Ctrl+Shift+O - + Save results Salvează rezultatele - + Save the results view Salvează vederea rezultatelor - + This button lets you save the results of the last executed query Acest buton vă permite să salvați rezultatele ultimei interogări executate - - + + Find text in SQL editor Găsește text în editorul SQL - + Find Găsește - + This button opens the search bar of the editor Acest buton deschide bara de căutare a editorului - + Ctrl+F Ctrl+F - - + + Find or replace text in SQL editor Găsește sau înlocuiește text în editorul SQL - + Find or replace Găsește sau înlocuiește - + This button opens the find/replace dialog for the current editor tab Acest buton deschide dialogul de găsire/înlocuire pentru fila curentă a editorului - + Ctrl+H Ctrl+H - + Export to &CSV Exportă în &CSV - + Export to &JSON Exportă în &JSON - + Save as &view Salvează ca &vedere - + Save as view Salvează ca vedere - + Shows or hides the Project toolbar. Afișează sau ascunde bara de instrumente Proiect. - + Extra DB Toolbar Bară De Instrumente Suplimentară BD - + &Open Database &Deschide Bază De Date - + New In-&Memory Database translation? 'In-Memory' Nouă Bază De Date În Mem&orie - + Drag && Drop SELECT Query Glisează && Plasează Interogarea SELECT - - + + When dragging fields from the same table or a single table, drop a SELECT query into the editor Când glisați câmpuri din același tabel sau dintr-un singur tabel, plasați o interogare SELECT în editor - + Drag && Drop Qualified Names Glisează && Plasează Nume Calificate - - + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor Utilizează nume calificate (ex., "Tabel"." Câmp") atunci când glisați obiectele și le plasați în editor - + Drag && Drop Enquoted Names Glisează && Plasează Nume Între Ghilimele - - + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor Utilizează identificatori scăpați (ex., "Tabel1") atunci când glisați obiectele și le plasați în editor - + &Integrity Check Verificare &Integritate - + 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. Rulează pragma integrity_check peste baza de date deschisă și returnează rezultatele în fila Execută SQL. Această pragma efectuează o verificare a integrității întregii baze de date. - + &Foreign-Key Check Verificare C&heie-Străină - + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab Rulează pragma foreign_key_check peste baza de date deschisă și returnează rezultatele în fila Execută SQL - + &Quick Integrity Check Verificare &Rapidă De Integritate - + Run a quick integrity check over the open DB Rulează o verificare rapidă a integrității peste BD deschisă - + 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. Rulează pragma quick_check peste baza de date deschisă și returnează rezultatele în fila Execută SQL. Această comandă face cea mai mare parte a verificării PRAGMA integrity_check, dar rulează mult mai repede. - + &Optimize &Optimizează - + Attempt to optimize the database Încercare de optimizare a bazei de date - + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. Rulează pragma de optimizare peste baza de date deschisă. Acest pragma ar putea efectua optimizări care vor îmbunătăți performanța interogărilor viitoare. - - + + Print Imprimare - + Print text from current SQL editor tab Imprimare text din fila curentă a editorului SQL - + Open a dialog for printing the text in the current SQL editor tab Deschide un dialog pentru imprimarea textului din fila curentă a editorului SQL - - + + Ctrl+P Ctrl+P - + Print the structure of the opened database Imprimează structura bazei de date deschise - + Open a dialog for printing the structure of the opened database Deschide un dialog pentru imprimarea structurii bazei de date deschise - + Un/comment block of SQL code De/comentează blocul de cod SQL - + Un/comment block De/comentează blocul - + Comment or uncomment current line or selected block of code Comentează sau decomentează linia curentă sau blocul de cod selectat - + 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. Comentează sau decomentează liniile selectate sau linia curentă, atunci când nu există selecție. Tot blocul este comutat conform primei linii. - + Ctrl+/ Ctrl+/ - + Stop SQL execution Oprire execuție SQL - + Stop execution Oprire execuție - + Stop the currently running SQL script Oprire script SQL care rulează în prezent - + &Save Project As... Salvea&ză Proiectul Ca... - - - + + + Save the project in a file selected in a dialog Salvează proiectul într-un fișier selectat într-un dialog - + Save A&ll Salvează &Toate - - - + + + Save DB file, project file and opened SQL files Salvează fișierul BD, fișierul de proiect și fișierele SQL deschise - + Ctrl+Shift+S Ctrl+Shift+S - + Browse Table Răsfoire Tabel - + Close Pro&ject Î&nchide Proiect - - + + Close project and database files and return to the initial state Închide fișierele proiectului și ale bazei de date și revenire la starea inițială - - + + Ctrl+Shift+W Ctrl+Shift+W - - + + Detach Database Detașează Baza De Date - - + + Detach database file attached to the current database connection Detașează fișierul de bază de date atașat la conexiunea curentă a bazei de date - + Table from CSV data in Clipboard... Tabel din date CSV din Clipboard... - + This treats the current clipboard contents as a CSV file and opens the same import wizard that is used for importing CSV data from a file. Asta tratează conținutul curent al clipboard-ului ca un fișier CSV și deschide același asistent de import care este utilizat pentru importarea datelor CSV dintr-un fișier. - + Show &Row Counts Afișează &Numărul De Rânduri - + This shows the number of rows for each table and view in the database. Asta arată numărul de rânduri pentru fiecare tabel și vedere în baza de date. - + Save Database &As... &Salvare Bază De Date Ca... - + Save the current database as a different file Salvează baza de date curentă ca un fișier diferit - + Refresh Reîmprospătează - + Reload the database structure Reîncarcă structura bazei de date - - + + Ctrl+W Ctrl+W - + Ctrl+Tab Ctrl+Tab - + Ctrl+Shift+Tab Ctrl+Shift+Tab - + Automatically load the last opened DB file at startup - + Clear List Șterge Listă - + Ctrl+L Ctrl+L - + Ctrl+D Ctrl+D - + Ctrl+I Ctrl+I - + Ctrl+E Ctrl+E - + Window Layout Aspect Fereastră - + Reset Window Layout Resetare Aspect Fereastră - + Ctrl+Alt+0 Ctrl+Alt+0 - + Simplify Window Layout Simplifică Aspect Fereastră - + Alt+Shift+0 Alt+Shift+0 - + Dock Windows at Bottom Ancorează Ferestrele în Partea De Jos - + Dock Windows at Left Side Ancorează Ferestrele în Partea Stângă - + Dock Windows at Top Ancorează Ferestrele în Partea De Sus - + The database is currently busy. Baza de date este momentan ocupată. - + Click here to interrupt the currently running query. Faceți clic aici pentru a întrerupe interogarea care rulează în prezent. - + Encrypted Criptat - + Database is encrypted using SQLCipher Baza de date este criptată folosind SQLCipher - + Read only Doar citire - + Database file is read only. Editing the database is disabled. Fișierul bazei de date este în modul doar-citire Editarea bazei de date este dezactivată. - + Database encoding Codificarea bazei de date - + Ctrl+Alt+W Ctrl+Alt+W - + Ctrl+Shift+F4 Ctrl+Shift+F4 - - + + Choose a database file Alege un fișier de bază de date - + Could not open database file. Reason: %1 Nu s-a putut deschide fișierul bazei de date. Motiv: %1 - - - + + + Choose a filename to save under Alegeți un nume de fișier sub care să salvați - + In-Memory database translation? 'In-Memory' Bază de date În-Memorie - + Choose a database file to save under Alege un fișier de bază de date pentru a salva sub - + Error while saving the database to the new file. Eroare la salvarea bazei de date în fișierul nou. - + 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? Încă executați instrucțiuni SQL. Închiderea bazei de date acum va opri executarea lor, lăsând eventual baza de date într-o stare inconsecventă. Sunteți sigur că doriți să închideți baza de date? - + Do you want to save the changes made to the project file '%1'? Doriți să salvați modificările făcute la fișierul de proiect '%1'? - + Are you sure you want to delete the table '%1'? All data associated with the table will be lost. Sunteți sigur că doriți să ștergeți tabelul '%1'? Toate datele asociate cu tabelul vor fi pierdute. - + Are you sure you want to delete the view '%1'? Sunteți sigur că doriți să ștergeți vederea '%1'? - + Are you sure you want to delete the trigger '%1'? Sunteți sigur că doriți să ștergeți declanșatorul '%1'? - + Are you sure you want to delete the index '%1'? Sunteți sigur că doriți să ștergeți indicele '%1'? - + Error: could not delete the table. Eroare: nu s-a putut șterge tabelul. - + Error: could not delete the view. Eroare: nu s-a putut șterge vederea. - + Error: could not delete the trigger. Eroare: nu s-a putut șterge declanșatorul. - + Error: could not delete the index. Eroare: nu s-a putut șterge indicele. - + Message from database engine: %1 Mesaj de la motorul bazei de date: %1 - + Editing the table requires to save all pending changes now. Are you sure you want to save the database? Editarea tabelului necesită salvarea tuturor modificărilor în așteptare acum. Sunteți sigur că doriți să salvați baza de date? - + Error checking foreign keys after table modification. The changes will be reverted. Eroare la verificarea cheilor străine după modificarea tabelului. Modificările vor fi anulate. - + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. Acest tabel nu a trecut o verificare a cheii străine.<br/>Ar trebui să rulați 'Instrumente | Verificare Cheie Străină' și să remediați problemele raportate. - + Edit View %1 Editează Vederea %1 - + Edit Trigger %1 Editează Declanșatorul %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. Executați deja instrucțiuni SQL. Doriți să le opriți pentru a executa în schimb instrucțiunile curente? Rețineți că acest lucru ar putea lăsa baza de date într-o stare inconsecventă. - + -- EXECUTING SELECTION IN '%1' -- -- EXECUTÂND SELECȚIA ÎN '%1' -- - + -- EXECUTING LINE IN '%1' -- -- EXECUTÂND LINIA ÎN '%1' -- - + -- EXECUTING ALL IN '%1' -- -- EXECUTÂND TOTUL ÎN '%1' -- - - + + At line %1: La linia %1: - + Result: %1 Rezultat: %1 - + Result: %2 Rezultat: %2 - + %1 rows returned in %2ms %1 rânduri returnate în %2ms - + Setting PRAGMA values or vacuuming will commit your current transaction. Are you sure? Setarea valorilor PRAGMA sau aspirarea va comite tranzacția curentă. Ești sigur? - + Execution finished with errors. Execuție terminată cu erori. - + Execution finished without errors. Execuție terminată fără erori. - + Choose text files Alege fișiere text - + 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 @@ -4149,114 +4328,114 @@ Ești sigur? %1 - + Are you sure you want to undo all changes made to the database file '%1' since the last save? Sunteți sigur că doriți să anulați toate modificările aduse fișierului bazei de date '%1 ' de la ultima salvare? - + Choose a file to import Alege un fișier pentru a importa - + 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. Doriți să creați un nou fișier de bază de date pentru a stoca datele importate? Dacă răspundeți nu, vom încerca să importăm datele din fișierul SQL în baza de date curentă. - + File %1 already exists. Please choose a different name. Fișierul %1 există deja. Vă rugăm să alegeți un nume diferit. - + Error importing data: %1 Eroare la importarea datelor: %1 - + Import completed. Some foreign key constraints are violated. Please fix them before saving. Import finalizat. Unele constrângeri de cheie străină sunt încălcate. Vă rugăm să le remediați înainte de salvare. - + Import completed. Import finalizat. - + Delete View Șterge Vedere - + Modify View Modifică Vedere - + Delete Trigger Șterge Declanșator - + Modify Trigger Modifică Declanșator - + Delete Index Șterge Indice - + Modify Index Modifică Indice - + Modify Table Modifică Tabel - + Opened '%1' in read-only mode from recent file list Deschis '%1' în modul doar-citire din lista de fișiere recente - + Opened '%1' from recent file list Deschis '%1' din lista de fișiere recente - + &%1 %2%3 &%1 %2%3 - + (read only) (doar-citire) - + Open Database or Project Deschide Bază De Date sau Proiect - + Attach Database... Atașare Bază De Date... - + Import CSV file(s)... Importă fișier(e) CSV... - + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. @@ -4266,137 +4445,137 @@ Dacă răspundeți nu, vom încerca să importăm datele din fișierul SQL în b - + The statements in the tab '%1' 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? Instrucțiunile din fila '%1' sunt încă în curs de executare. Închiderea filei va opri executarea. Acest lucru ar putea lăsa baza de date într-o stare inconsistentă. Sunteți sigur că doriți să închideți fila? - + DB file '%1' could not be opened Fișierul BD '%1' nu a putut fi deschis - + 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 no longer fully supported. If you want to load it completely, please use DB Browser for SQLite version 3.12 to convert it to the new file format. Acest fișier de proiect utilizează un format de fișier vechi, deoarece a fost creat utilizând DB Browser for SQLite versiunea 3.10 sau mai mică. Încărcarea acestui format de fișier nu mai este pe deplin suportată. Dacă doriți să îl încărcați complet, vă rugăm să utilizați DB Browser for SQLite versiunea 3.12 pentru a-l converti în noul format de fișier. - + Table '%1' not found; settings ignored Tabelul '%1' nu a fost găsit; setări ignorate - + Setting PRAGMA values will commit your current transaction. Are you sure? Setarea valorilor PRAGMA va comite tranzacția curentă. Ești sigur? - + Do you want to save the changes made to SQL tabs in a new project file? Doriți să salvați modificările aduse filelor SQL într-un nou fișier de proiect? - + Do you want to save the changes made to SQL tabs in the project file '%1'? Doriți să salvați modificările aduse filelor SQL în fișierul de proiect '%1'? - + Do you want to save the changes made to the SQL file %1? Doriți să salvați modificările aduse în fișierul SQL %1? - + Select SQL file to open Selectează fișierul SQL pentru deschidere - + Text files(*.sql *.txt);;All files(*) Fișiere text (*.sql *.txt);;Toate fișierele (*) - + Select file name Selectează numele fișierului - + Select extension file Selectează fișierul de extensie - + Extension successfully loaded. Extensie încărcată cu succes. - + Error loading extension: %1 Eroare la încărcarea extensiei: %1 - + Could not find resource file: %1 Nu s-a putut găsi fișierul resursă: %1 - - + + Don't show again Nu mai arăta - + New version available. Versiune nouă disponibilă. - + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. O nouă versiune DB Browser for SQLite este disponibilă (%1.%2.%3).<br/><br/>Vă rugăm să descărcați la <a href='%4'>%4</a>. - + Choose a project file to open Alege un fișier de proiect pentru a deschide - + DB Browser for SQLite project file (*.sqbpro) Fișier de proiect DB Browser for SQLite (*.sqbpro) - + Could not open project file for writing. Reason: %1 Nu s-a putut deschide fișierul de proiect pentru scriere. Motiv: %1 - + -- Reference to file "%1" (not supported by this version) -- -- Referință la fișierul "%1"(nu este suportat de această versiune) -- - + Project saved to file '%1' Proiect salvat în fișierul '%1' - + Yes. Don't ask again Da. Nu întreba din nou - + Collation needed! Proceed? Colaționare necesară! Continuați? - + 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! @@ -4405,82 +4584,82 @@ Dacă alegeți să continuați, fiți conștienți de faptul că se pot întâmp Creează o copie de rezervă! - + creating collation creând coloționare - + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. Setaează un nume nou pentru fila SQL. Utilizează caracterul '&&' pentru a permite utilizarea următorului caracter ca comandă rapidă de la tastatură. - + Please specify the view name Vă rugăm să specificați numele vederii - + There is already an object with that name. Please choose a different name. Există deja un obiect cu acest nume. Vă rugăm să alegeți un nume diferit. - + View successfully created. Vedere creată cu succes. - + Error creating view: %1 Eroare la crearea vederii: %1 - + This action will open a new SQL tab for running: Această acțiune va deschide o nouă filă SQL pentru rulare: - + This action will open a new SQL tab with the following statements for you to edit and run: Această acțiune va deschide o nouă filă SQL cu următoarele instrucțiuni pe care le puteți edita și executa: - + Press Help for opening the corresponding SQLite reference page. Apasă Ajutor pentru a deschide pagina de referință SQLite corespunzătoare. - + Busy (%1) Ocupat (%1) - + Rename Tab Redenumire Filă - + Duplicate Tab Duplicare Filă - + Close Tab Închidere Filă - + Opening '%1'... Deschizând '%1'... - + There was an error opening '%1'... A apărut o eroare la deschiderea '%1'... - + Value is not a valid URL or filename: %1 Valoarea nu este o adresă URL sau un nume de fișier valid: %1 @@ -6297,26 +6476,26 @@ Sunteți sigur că doriți să continuați? Vă rugăm să introduceți fraza de acces pentru acest certificat de client pentru a vă autentifica. - + Cancel Anulează - + Uploading remote database to %1 Încărcare bază de date la distanță către %1 - + Downloading remote database from %1 Descărcare bază de date la distanță de la %1 - + Error: Cannot open the file for sending. Eroare: Nu se poate deschide fișierul pentru trimitere. @@ -7060,33 +7239,33 @@ Utilizarea acestei funcții trebuie autorizată din Preferințe. încărcare... - + References %1(%2) Hold %3Shift and click to jump there Referințele %1(%2) Țineți apăsat %3Shift și faceți clic pentru a sări acolo - + Error changing data: %1 Eroare la modificarea datelor: %1 - + retrieving list of columns recuperare listă de coloane - + Fetching data... unclear translation - 'fetch' Preluarea datelor... - - + + Cancel Anulare @@ -7386,7 +7565,7 @@ Hold %3Shift and click to jump there - + Delete Record Șterge Înregistrare @@ -7504,7 +7683,7 @@ Hold %3Shift and click to jump there - + Set encoding Setează codificarea @@ -7792,12 +7971,12 @@ Hold %3Shift and click to jump there . Sumă: %1; Medie: %2; Minim: %3; Maxim: %4 - + Conditional formats for "%1" Formate condiționate pentru "%1" - + determining row count... determinând numărul de rânduri... @@ -7807,86 +7986,86 @@ Hold %3Shift and click to jump there Filtrează în orice coloană - + %L1 - %L2 of >= %L3 %L1 - %L2 din >= %L3 - + %L1 - %L2 of %L3 %L1 - %L2 din %L3 - + (clipped at %L1 rows) (tăiat la %L1 rânduri) - + 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. Vă rugăm introduceți o pseudo-cheie primară pentru a activa editarea în această vedere. Acesta ar trebui să fie numele unei coloane unice în vedere. - + Delete Records Șterge Înregistrările - + Duplicate records Înregistrări duplicate - + Duplicate record Înregistrare duplicată - + Ctrl+" Ctrl+" - + Adjust rows to contents Ajustează rândurile la conținut - + Error deleting record: %1 Eroare la ștergerea înregistrării: %1 - + Please select a record first Vă rugăm să selectați mai întâi o înregistrare - + Please choose a new encoding for all tables. Vă rugăm să alegeți o nouă codificare pentru toate tabelele. - + Please choose a new encoding for this table. Vă rugăm să alegeți o nouă codificare pentru acest tabel. - + %1 Leave the field empty for using the database encoding. %1 Lăsați câmpul gol pentru utilizarea codificării bazei de date. - + This encoding is either not valid or not supported. Această codificare nu este validă sau nu este suportată. - + %1 replacement(s) made. %1 înlocuire(i) efectuată. diff --git a/src/translations/sqlb_ru.ts b/src/translations/sqlb_ru.ts index 03a7c75ba..6f9a25176 100644 --- a/src/translations/sqlb_ru.ts +++ b/src/translations/sqlb_ru.ts @@ -698,17 +698,17 @@ If any of the other settings were altered for this database file you need to pro - + Cancel Отменить - + Executing SQL... Выполнить код SQL... - + Action cancelled. Действие отменено. @@ -744,109 +744,109 @@ If any of the other settings were altered for this database file you need to pro Вы хотите отменить эту операцию? - - + + 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: @@ -855,32 +855,32 @@ Message from database engine: - + could not get list of databases: %1 не могу получить список БД: %1 - + Error loading extension: %1 Ошибка загрузки расширения: %1 - + Error loading built-in extension: %1 - + could not get column information не могу получить информацию о колонке - + Error setting pragma %1 to %2: %3 Ошибка установки прагмы %1 в %2: %3 - + File not found. Файл не найден. @@ -1942,7 +1942,7 @@ All data currently stored in this field will be lost. ExtendedScintilla - + Ctrl+H @@ -1953,22 +1953,22 @@ All data currently stored in this field will be lost. - + Ctrl+P - + Find... - + Find and Replace... Найти и Заменить... - + Print... Печать... @@ -1976,129 +1976,129 @@ All data currently stored in this field will be lost. 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 - + Cut - + 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. @@ -2479,7 +2479,7 @@ x~y Range: values between x and y - + Tab Табуляция @@ -2622,7 +2622,7 @@ x~y Range: values between x and y - + Deselect All Отменить Выбор @@ -2632,52 +2632,52 @@ x~y Range: values between x and y Найти Совпадения - + 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 - + Could not prepare INSERT statement: %1 - + Unexpected end of file. Please make sure that you have configured the correct quote characters and the file is not malformed. - + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. Импорт файла '%1' занял %2мс. Из них %3мс было потрачено в функции строки. - + Inserting row failed: %1 Ошибка вставки строки: %1 @@ -2690,37 +2690,216 @@ x~y Range: values between x and y Обозреватель для 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. - + + Temp Store + + + + + Secure Delete + + + + + Case Sensitive Like + + + + + Journal Mode + + + + + Journal Size Limit + + + + + Recursive Triggers + + + + + Delete + pragma + + + + + Truncate + pragma + + + + + Persist + pragma + + + + + Memory + pragma + + + + + WAL + pragma + + + + + Off + pragma + + + + + Page Size + + + + + Foreign Keys + + + + + Auto Vacuum + + + + + Max Page Count + + + + + Normal + pragma + + + + + Exclusive + pragma + + + + + Checkpoint Full FSYNC + + + + + Off + + + + + Normal + + + + + + Full + + + + + Default + По умолчанию + + + + File + Файл + + + + Memory + + + + + Automatic Index + + + + + Ignore Check Constraints + + + + + Full FSYNC + + + + + WAL Auto Checkpoint + + + + + User Version + + + + + Synchronous + + + + + None + Нет + + + + Incremental + + + + + Locking Mode + + + + Too&ls &Инструменты - + 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. @@ -2731,326 +2910,326 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed - - + + Project Toolbar Панель Инструментов Проекта - + Extra DB toolbar Дополнительная Панель Инструментов БД - - - + + + Close the current database file Закрыть файл текущей БД - + &New Database - - + + Ctrl+F4 - + &Undo - - + + Undo last change to the database - + This action undoes the last change performed to the database in the Database Browser or in Execute SQL. Redoing is not possible. - + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields from a table, as well as modify field names and types. - + &About О &программе - + New &tab - + 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 выполняются. - + Ctrl+Shift+T - + &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... - + &Save Project - + Open &Project... Открыть &проект... - + 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 - + Export to &JSON - + Save as &view Сохранить как &представление - + Save as view Сохранить как представление - + Shows or hides the Project toolbar. Показывает или скрывает панель инструментов Проекта. - + Extra DB Toolbar Дополнительная Панель Инструментов БД - - + + Ctrl+Shift+W - + Table from CSV data in Clipboard... - + This treats the current clipboard contents as a CSV file and opens the same import wizard that is used for importing CSV data from a file. - + Show &Row Counts - + This shows the number of rows for each table and view in the database. - + Save Database &As... - + Save the current database as a different file - + Refresh Обновить - + Reload the database structure - + Open SQL file(s) @@ -3076,560 +3255,560 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed - - + + E&xecute SQL This has to be equal to the tab title in all the main tabs - + &Recent Files - + 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 - + &Open Database - + New In-&Memory Database Новая БД в &Памяти - + Drag && Drop SELECT Query - - + + When dragging fields from the same table or a single table, drop a SELECT query into the editor - + 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 - + Close Pro&ject - - + + Close project and database files and return to the initial state - + Ctrl+Shift+F4 - - + + Detach Database - - + + Detach database file attached to the current database connection - + &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 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 &Недавно открываемые - + Ctrl+T @@ -3643,227 +3822,227 @@ You can drag SQL statements from an object row and drop them into other applicat - + 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 - + The database is currently 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 @@ -3872,382 +4051,382 @@ Reason: %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 в текущую базу данных. - + Ctrl+Tab - + Ctrl+Shift+Tab - + Clear List - + Window Layout - + Ctrl+Alt+0 - + Simplify Window Layout - + Alt+Shift+0 - + Dock Windows at Bottom - + Dock Windows at Left Side - + Dock Windows at Top - + Ctrl+Alt+W - + Choose a database file to save under - + Error while saving the database to the new file. - + 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)... - + 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? - + Could not find resource file: %1 - + Choose a project file to open Выберите файл проекта для открытия - + DB file '%1' could not be opened - + Table '%1' not found; settings ignored - + Could not open project file for writing. Reason: %1 - + -- Reference to file "%1" (not supported by this version) -- - + 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 БД в памяти - + Automatically load the last opened DB file at startup - + 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 или вакуумирования приведет к фиксации текущей транзакции. Уверены ли вы? - + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. @@ -4257,133 +4436,133 @@ Are you sure? - + The statements in the tab '%1' 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? - + 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 no longer fully supported. If you want to load it completely, please use DB Browser for SQLite version 3.12 to convert it to the new file format. - + Yes. Don't ask again - + 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! @@ -4392,42 +4571,42 @@ 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. Задайте новое имя для вкладки 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. @@ -6213,26 +6392,26 @@ Are you sure you want to proceed? Пожалуйста введите ключевую фразу для этого сертификата клиента. - + Cancel Отменить - + Uploading remote database to %1 Загружается удаленная БД в %1 - + Downloading remote database from %1 Скачивается удаленная БД из %1 - + Error: Cannot open the file for sending. Ошибка: не удается открыть файл для отправки. @@ -6966,32 +7145,32 @@ Use of this function must be authorized from Preferences. загрузка... - + 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 Отменить @@ -7333,7 +7512,7 @@ Hold %3Shift and click to jump there - + Delete Record Удалить запись @@ -7435,7 +7614,7 @@ Hold %3Shift and click to jump there - + Set encoding Кодировка @@ -7702,95 +7881,95 @@ Hold %3Shift and click to jump there - + Conditional formats for "%1" - + determining row count... определяем количество строк... - + %L1 - %L2 of >= %L3 - + %L1 - %L2 of %L3 - + (clipped at %L1 rows) - + 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 Сначала выберите запись - + 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. diff --git a/src/translations/sqlb_sv.ts b/src/translations/sqlb_sv.ts index 456514e51..5b2e30e39 100644 --- a/src/translations/sqlb_sv.ts +++ b/src/translations/sqlb_sv.ts @@ -3466,6 +3466,150 @@ Skapa en backup! Automatically load the last opened DB file at startup + + Temp Store + + + + Secure Delete + + + + Case Sensitive Like + + + + Journal Mode + + + + Journal Size Limit + + + + Recursive Triggers + + + + Page Size + + + + Foreign Keys + + + + Auto Vacuum + + + + Max Page Count + + + + Checkpoint Full FSYNC + + + + Automatic Index + + + + Ignore Check Constraints + + + + Full FSYNC + + + + WAL Auto Checkpoint + + + + User Version + + + + Synchronous + + + + Locking Mode + + + + Delete + pragma + Ta bort + + + Truncate + pragma + + + + Persist + pragma + + + + Memory + pragma + + + + WAL + pragma + + + + Off + pragma + + + + Normal + pragma + + + + Exclusive + pragma + + + + Off + + + + Normal + + + + Full + + + + Default + Förvald + + + File + Fil + + + Memory + + + + None + Ingen + + + Incremental + + NullLineEdit diff --git a/src/translations/sqlb_tr.ts b/src/translations/sqlb_tr.ts index 5aed6c325..f36835d0d 100644 --- a/src/translations/sqlb_tr.ts +++ b/src/translations/sqlb_tr.ts @@ -700,17 +700,17 @@ Bu veritabanı için herhangi bir başka ayar daha yapılmışsa, bu bilgileri d - + Cancel İptal - + Executing SQL... SQL yürütülüyor... - + Action cancelled. İşlem iptal edildi. @@ -746,99 +746,99 @@ Bu veritabanı için herhangi bir başka ayar daha yapılmışsa, bu bilgileri d 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 @@ -847,12 +847,12 @@ 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: @@ -861,32 +861,32 @@ Veritabanı motoru mesajı: - + could not get list of databases: %1 veri tabanı listesi alınamadı: %1 - + Error loading extension: %1 Eklenti yüklenirken hata oluştu: %1 - + Error loading built-in extension: %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ı. @@ -1941,7 +1941,7 @@ All data currently stored in this field will be lost. ExtendedScintilla - + Ctrl+H @@ -1952,22 +1952,22 @@ All data currently stored in this field will be lost. - + Ctrl+P - + Find... Bul... - + Find and Replace... Bul ve Değiştir... - + Print... Yazdır... @@ -1975,129 +1975,129 @@ All data currently stored in this field will be lost. 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 - + Cut - + 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 - + 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. @@ -2489,7 +2489,7 @@ x~y Aralık: değerler x ve y arasında - + Tab Tab karakteri @@ -2632,7 +2632,7 @@ x~y Aralık: değerler x ve y arasında - + Deselect All Tüm seçimi iptal et @@ -2642,52 +2642,52 @@ x~y Aralık: değerler x ve y arasında 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 - + Could not prepare INSERT statement: %1 - + Unexpected end of file. Please make sure that you have configured the correct quote characters and the file is not malformed. - + 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 @@ -2700,312 +2700,312 @@ x~y Aralık: değerler x ve y arasında 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 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 - + Ctrl+T @@ -3019,87 +3019,87 @@ SQL ifadelerini bir nesne satırından sürükleyip başka uygulamalara veya &ap - + 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 - + 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. - + Too&ls 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. @@ -3110,267 +3110,267 @@ SQL deyimlerini Şema sütunundan sürükleyip SQL editörüne veya diğer uygul - - + + 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... - + New &tab - + 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... - + Close Pro&ject - - + + Close project and database files and return to the initial state - + Ctrl+Shift+F4 - - + + Detach Database - - + + Detach database file attached to the current database connection - + 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. @@ -3396,458 +3396,637 @@ SQL deyimlerini Şema sütunundan sürükleyip SQL editörüne veya diğer uygul - - + + Temp Store + + + + + Secure Delete + + + + + Case Sensitive Like + + + + + Journal Mode + + + + + Journal Size Limit + + + + + Recursive Triggers + + + + + Delete + pragma + + + + + Truncate + pragma + + + + + Persist + pragma + + + + + Memory + pragma + + + + + WAL + pragma + + + + + Off + pragma + + + + + Page Size + + + + + Foreign Keys + + + + + Auto Vacuum + + + + + Max Page Count + + + + + Normal + pragma + + + + + Exclusive + pragma + + + + + Checkpoint Full FSYNC + + + + + Off + + + + + Normal + + + + + + Full + + + + + Default + Varsayılan + + + + File + Dosya + + + + Memory + + + + + Automatic Index + + + + + Ignore Check Constraints + + + + + Full FSYNC + + + + + WAL Auto Checkpoint + + + + + User Version + + + + + Synchronous + + + + + None + Hiçbiri + + + + Incremental + + + + + Locking Mode + + + + + E&xecute SQL This has to be equal to the tab title in all the main tabs - + &Recent Files - + &New Database - + &Undo - - + + Undo last change to the database - + This action undoes the last change performed to the database in the Database Browser or in Execute SQL. Redoing is not possible. - + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields from a table, as well as modify field names and types. - + Ctrl+Shift+T - + &Save Project - + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file - + Open &Project - + This button lets you open a DB Browser for SQLite project file - + Export to &JSON - + Extra DB Toolbar Ekstra Veritabanı Araç Çubuğu - + &Open Database - + New In-&Memory Database &Yeni Bellek İçi Veritabanı - + Drag && Drop SELECT Query - - + + When dragging fields from the same table or a single table, drop a SELECT query into the editor - + 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 - - + + Ctrl+Shift+W - + Table from CSV data in Clipboard... - + This treats the current clipboard contents as a CSV file and opens the same import wizard that is used for importing CSV data from a file. - + Show &Row Counts - + This shows the number of rows for each table and view in the database. - + Save Database &As... - + Save the current database as a different file - + Refresh Yenile - + Reload the database structure - + &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 @@ -3856,370 +4035,370 @@ SQL deyimlerini Şema sütunundan sürükleyip SQL editörüne veya diğer uygul %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... - + 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? - + 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 - + 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? - + Ctrl+Tab - + Ctrl+Shift+Tab - + Clear List - + Window Layout - + Reset Window Layout Pencere Düzenini Sıfırla - + Simplify Window Layout - + Alt+Shift+0 - + Dock Windows at Bottom - + Dock Windows at Left Side - + Dock Windows at Top - + The database is currently 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. - + Ctrl+Alt+W - + Could not open database file. Reason: %1 Veritabanı dosyası açılamadı. Nedeni: %1 - + In-Memory database Bellek İçi Veritabanı - + Choose a database file to save under - + Error while saving the database to the new file. - + 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 - + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. @@ -4227,148 +4406,148 @@ Emin misiniz? - + The statements in the tab '%1' 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? - + DB file '%1' could not be opened - + 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 no longer fully supported. If you want to load it completely, please use DB Browser for SQLite version 3.12 to convert it to the new file format. - + Table '%1' not found; settings ignored - + -- Reference to file "%1" (not supported by this version) -- - + Yes. Don't ask again - + 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ü - + Automatically load the last opened DB file at startup - + Ctrl+Alt+0 - + 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! @@ -4377,67 +4556,67 @@ Daha fazla bilgi olmadan program bunu sağlayamaz. Eğer bu şekilde devam edece 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ı. @@ -6238,26 +6417,26 @@ Are you sure you want to proceed? 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: Cannot open the file for sending. Hata: Dosya gönderim için açılamadı. @@ -6991,31 +7170,31 @@ Bu işlevin kullanımına Tercihler'den izin verilmelidir. 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 @@ -7357,7 +7536,7 @@ Buraya atlamak için %3Shift'e basılı tutun ve tıklayın - + Delete Record Kaydı Sil @@ -7459,7 +7638,7 @@ Buraya atlamak için %3Shift'e basılı tutun ve tıklayın - + Set encoding Kodlama seç @@ -7722,96 +7901,96 @@ Buraya atlamak için %3Shift'e basılı tutun ve tıklayın . 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... - + %L1 - %L2 of >= %L3 - + %L1 - %L2 of %L3 - + (clipped at %L1 rows) - + 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 - + 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ı. diff --git a/src/translations/sqlb_uk_UA.ts b/src/translations/sqlb_uk_UA.ts index cfbed44e4..92c53dca9 100644 --- a/src/translations/sqlb_uk_UA.ts +++ b/src/translations/sqlb_uk_UA.ts @@ -722,156 +722,156 @@ If any of the other settings were altered for this database file you need to pro - + 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 - + Error loading built-in extension: %1 - + could not get column information неможливо отримати інформацію про стовпець - + Error setting pragma %1 to %2: %3 Помилка встановлення Прагми %1 в %2: %3 - + File not found. Файл не знайдено. @@ -1933,7 +1933,7 @@ All data currently stored in this field will be lost. ExtendedScintilla - + Ctrl+H @@ -1944,22 +1944,22 @@ All data currently stored in this field will be lost. - + Ctrl+P - + Find... - + Find and Replace... - + Print... @@ -1967,129 +1967,129 @@ All data currently stored in this field will be lost. 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 - + Cut - + 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. @@ -2470,7 +2470,7 @@ x~y Range: values between x and y - + Tab Табуляція @@ -2613,7 +2613,7 @@ x~y Range: values between x and y - + Deselect All Скасувати вибір @@ -2623,52 +2623,52 @@ x~y Range: values between x and y Співпадіння - + 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 - + Could not prepare INSERT statement: %1 - + Unexpected end of file. Please make sure that you have configured the correct quote characters and the file is not malformed. - + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. - + Inserting row failed: %1 Помилка вставки рядка: %1 @@ -2681,17 +2681,17 @@ x~y Range: values between x and y Оглядач для SQLite - + toolBar1 панельІнструментів1 - + &Remote &Віддалений - + &File &Файл @@ -2717,782 +2717,782 @@ x~y Range: values between x and y - + &Import &Імпорт - + &Export &Експорт - + &Edit &Редагування - + &View &Вид - + &Help &Довідка - + Too&ls - + 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 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 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 - + New &tab - + 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 - + Ctrl+Shift+T - + Execute line - + &Wiki - + F1 - + Bug &Report... - + Feature Re&quest... - + Web&site - + &Donate on Patreon... - + &Save Project - + 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 - + Export to &JSON - + Save as &view Зберегти як &вигляд - + Save as view Зберегти як вигляд - + &Open Database - + Drag && Drop SELECT Query - - + + When dragging fields from the same table or a single table, drop a SELECT query into the editor - + Browse Table - + Close Pro&ject - - + + Close project and database files and return to the initial state - - + + Ctrl+Shift+W - + Table from CSV data in Clipboard... - + This treats the current clipboard contents as a CSV file and opens the same import wizard that is used for importing CSV data from a file. - + Show &Row Counts - + This shows the number of rows for each table and view in the database. - + Save Database &As... - + Save the current database as a different file - + Refresh Оновити - + Reload the database structure - + Ctrl+Shift+F4 - - + + Detach Database - - + + Detach database file attached to the current database connection - + 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 an existing database file in read only mode Відкрити існуючий файл БД у режимі тільки для читання - + Ctrl+T @@ -3504,79 +3504,258 @@ You can drag SQL statements from an object row and drop them into other applicat - + 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. - - + + Temp Store + + + + + Secure Delete + + + + + Case Sensitive Like + + + + + Journal Mode + + + + + Journal Size Limit + + + + + Recursive Triggers + + + + + Delete + pragma + + + + + Truncate + pragma + + + + + Persist + pragma + + + + + Memory + pragma + + + + + WAL + pragma + + + + + Off + pragma + + + + + Page Size + + + + + Foreign Keys + + + + + Auto Vacuum + + + + + Max Page Count + + + + + Normal + pragma + + + + + Exclusive + pragma + + + + + Checkpoint Full FSYNC + + + + + Off + + + + + Normal + + + + + + Full + + + + + Default + За замовчуванням + + + + File + Файл + + + + Memory + + + + + Automatic Index + + + + + Ignore Check Constraints + + + + + Full FSYNC + + + + + WAL Auto Checkpoint + + + + + User Version + + + + + Synchronous + + + + + None + Ні + + + + Incremental + + + + + Locking Mode + + + + + E&xecute SQL This has to be equal to the tab title in all the main tabs - + &Recent Files - + 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. @@ -3584,651 +3763,651 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed - - + + Project Toolbar - + Extra DB toolbar - - - + + + Close the current database file - + &New Database - - + + Ctrl+F4 - + &Revert Changes &Скасувати зміни - + &Undo - - + + Undo last change to the database - + This action undoes the last change performed to the database in the Database Browser or in Execute SQL. Redoing is not possible. - + &Write Changes &Записати зміни - + &Database from SQL file... &База даних з файлу SQL... - + &Table from CSV file... &Таблиці з файлу CSV... - + &Database to SQL file... Базу &даних в файл SQL... - + &Create Table... &Створити таблицю... - + &Delete Table... &Видалити таблицю... - + &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 from a table, as well as modify field names and types. - + 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 - + Automatically load the last opened DB file at startup - + The database is currently busy. - + Click here to interrupt the currently running query. - + Ctrl+Alt+W - + In-Memory database - + Choose a database file to save under - + Error while saving the database to the new file. - + 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)... - + Do you want to save the changes made to SQL tabs in the project file '%1'? - + The statements in the tab '%1' 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? - + DB file '%1' could not be opened - + 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 no longer fully supported. If you want to load it completely, please use DB Browser for SQLite version 3.12 to convert it to the new file format. - + Table '%1' not found; settings ignored - + -- Reference to file "%1" (not supported by this version) -- - + Project saved to file '%1' - + Yes. Don't ask again - + 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 - + Ctrl+Tab - + Ctrl+Shift+Tab - + Clear List - + Window Layout - + Ctrl+Alt+0 - + Simplify Window Layout - + Alt+Shift+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? - + Import completed. Some foreign key constraints are violated. Please fix them before saving. - + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. @@ -4238,38 +4417,38 @@ Are you sure you want to save the database? - + 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? - + Could not find resource file: %1 - + Choose a project file to open - + 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! @@ -4278,70 +4457,70 @@ 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. - - + + 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 @@ -4350,63 +4529,63 @@ Are you sure? %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. Доступна нова версія. @@ -6190,26 +6369,26 @@ Are you sure you want to proceed? Будь ласка, введіть парольну фразу для цього сертифіката клієнта, для автентифікації - + Cancel Скасувати - + Uploading remote database to %1 Вивантаження віддаленої бази даних до %1. {1?} - + Downloading remote database from %1 Завантаження віддаленої бази даних із %1. {1?} - + Error: Cannot open the file for sending. Помилка: Неможливо відкрити файл для відправлення. @@ -6942,31 +7121,31 @@ Use of this function must be authorized from Preferences. - + References %1(%2) Hold %3Shift and click to jump there - + Error changing data: %1 Помилка зміни даних: %1 - + retrieving list of columns - + Fetching data... - - + + Cancel Скасувати @@ -7302,7 +7481,7 @@ Hold %3Shift and click to jump there - + Delete Record Видалити запис @@ -7404,7 +7583,7 @@ Hold %3Shift and click to jump there - + Set encoding Кодування @@ -7671,96 +7850,96 @@ Hold %3Shift and click to jump there - + Conditional formats for "%1" - + determining row count... - + %L1 - %L2 of >= %L3 - + %L1 - %L2 of %L3 - + (clipped at %L1 rows) - + 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 Будь ласка, спочатку оберіть запис - + 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. diff --git a/src/translations/sqlb_zh.ts b/src/translations/sqlb_zh.ts index 24960ad62..a4f4666d1 100644 --- a/src/translations/sqlb_zh.ts +++ b/src/translations/sqlb_zh.ts @@ -698,17 +698,17 @@ If any of the other settings were altered for this database file you need to pro - + Cancel 取消 - + Executing SQL... 正在执行 SQL... - + Action cancelled. 操作已取消。 @@ -744,97 +744,97 @@ If any of the other settings were altered for this database file you need to pro 确定要放弃操作吗? - - + + 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 @@ -843,12 +843,12 @@ Message from database engine: %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: @@ -857,32 +857,32 @@ Message from database engine: - + could not get list of databases: %1 无法获取数据库列表: %1 - + Error loading extension: %1 加载扩展时出错: %1 - + Error loading built-in extension: %1 - + could not get column information 无法获取列信息 - + Error setting pragma %1 to %2: %3 设置杂注 %1 为 %2 时出错: %3 - + File not found. 文件找不到。 @@ -1946,7 +1946,7 @@ All data currently stored in this field will be lost. ExtendedScintilla - + Ctrl+H @@ -1957,22 +1957,22 @@ All data currently stored in this field will be lost. - + Ctrl+P - + Find... 查找... - + Find and Replace... 查找并替换... - + Print... 打印... @@ -1980,129 +1980,129 @@ All data currently stored in this field will be lost. 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 - + Cut 剪切 - + 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 约束。 @@ -2494,7 +2494,7 @@ x~y 范围: 值在 x 和 y 之间 - + Tab Tab @@ -2637,7 +2637,7 @@ x~y 范围: 值在 x 和 y 之间 - + Deselect All 全不选 @@ -2647,52 +2647,52 @@ x~y 范围: 值在 x 和 y 之间 匹配相似 - + 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 - + Could not prepare INSERT statement: %1 无法准备 INSERT 语句: %1 - + Unexpected end of file. Please make sure that you have configured the correct quote characters and the file is not malformed. 意外的文件结束。请确认已正确配置引号字符,并确认文件没有格式错误。 - + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. 导入文件 '%1' 用时 %2ms. 其中 %3ms 用在行方程上。 - + Inserting row failed: %1 插入行失败: %1 @@ -2705,437 +2705,437 @@ x~y 范围: 值在 x 和 y 之间 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 浏览表(&B) - + 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 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) - + Ctrl+T @@ -3149,57 +3149,236 @@ You can drag SQL statements from an object row and drop them into other applicat - + + Temp Store + + + + + Secure Delete + + + + + Case Sensitive Like + + + + + Journal Mode + + + + + Journal Size Limit + + + + + Recursive Triggers + + + + + Delete + pragma + + + + + Truncate + pragma + + + + + Persist + pragma + + + + + Memory + pragma + + + + + WAL + pragma + + + + + Off + pragma + + + + + Page Size + + + + + Foreign Keys + 外键 + + + + Auto Vacuum + + + + + Max Page Count + + + + + Normal + pragma + + + + + Exclusive + pragma + + + + + Checkpoint Full FSYNC + + + + + Off + + + + + Normal + + + + + + Full + + + + + Default + 默认 + + + + File + 文件 + + + + Memory + + + + + Automatic Index + + + + + Ignore Check Constraints + + + + + Full FSYNC + + + + + WAL Auto Checkpoint + + + + + User Version + + + + + Synchronous + + + + 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。 - + + None + + + + + Incremental + + + + + Locking Mode + + + + Too&ls 工具(&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. @@ -3209,304 +3388,304 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed 你可以从架构列拖拽 SQL 语句到 SQL 编辑器或其他的应用程序。 - - + + Project Toolbar 项目工具栏 - + Extra DB toolbar 其他数据库工具栏 - - - + + + Close the current database file 关闭当前数据库文件 - + &New Database 新建数据库(&N) - + This button closes the connection to the currently open database file 此按钮关闭到当前打开的数据库文件的连接 - - + + Ctrl+F4 - + &Revert Changes 倒退更改(&R) - + &Undo 撤销(&U) - - + + Undo last change to the database 撤销对数据库的最后更改 - + This action undoes the last change performed to the database in the Database Browser or in Execute SQL. Redoing is not possible. 此操作将撤销上一次在数据库浏览器或 SQL 执行中对数据库所执行的更改。不能撤销(重做)本次撤销。 - + &Write Changes 写入更改(&W) - + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields from a table, as well as modify field names and types. 打开修改表向导,可以在里面重命名现有表,添加或删除字段,修改字段名称和类型。 - + New &tab 新建标签页(&T) - + Open SQL file(s) 打开 SQL 文件 - + This button opens files containing SQL statements and loads them in new editor tabs 此按钮可打开包含 SQL 语句的一个或多个文件,将它们加载到新的编辑器标签页中 - + Ctrl+Shift+T Ctrl+Shift+T - + Execute line 执行行 - + F1 - + &Save Project 保存项目(&S) - + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file 此按钮允许你将与已打开的数据库相关联的所有设置保存到一个本软件可用的项目文件中 - + Open &Project 打开项目(&P) - + 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 - + Export to &JSON 导出到 &JSON - + Save as &view 保存为视图(&V) - + Save as view 保存为视图 - + &Open Database 打开数据库(&O) - + Drag && Drop SELECT Query 拖放 SELECT 查询(&&) - - + + When dragging fields from the same table or a single table, drop a SELECT query into the editor 在同一个或单个表中拖拽字段,释放时将一条 SELECT 查询插入编辑器 - + Browse Table 浏览表 - + Close Pro&ject 关闭项目(&J) - - + + Close project and database files and return to the initial state 关闭项目和数据库文件并返回初始状态 - - + + Ctrl+Shift+W Ctrl+Shift+W - + Table from CSV data in Clipboard... 剪贴板中 CSV 的数据制表... - + This treats the current clipboard contents as a CSV file and opens the same import wizard that is used for importing CSV data from a file. 这会将剪贴板内容视作 CSV 文件,打开从文件导入 CSV 数据的向导来处理它。 - + Show &Row Counts 显示行数(&R) - + This shows the number of rows for each table and view in the database. 显示数据库中每个表和视图的行数。 - + Save Database &As... 另存为数据库(&A)... - + Save the current database as a different file 将当前数据库保存到另一个文件 - + Refresh 刷新 - + Reload the database structure 重新载入数据库结构 - + Ctrl+Shift+F4 Ctrl+Shift+F4 - - + + Detach Database 断开数据库 - - + + Detach database file attached to the current database connection 断开已附加到当前数据库连接的数据库文件 - + Shows or hides the Project toolbar. 显示或隐藏项目工具栏。 @@ -3532,334 +3711,334 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed 编辑杂注(&R) - - + + E&xecute SQL This has to be equal to the tab title in all the main tabs 执行 SQL(&X) - + &Recent Files 最近的文件(&R) - + 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+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 @@ -3868,462 +4047,462 @@ Are you sure? %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 重置窗口布局 - + The database is currently 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文件... - + Do you want to save the changes made to SQL tabs in a new project file? 是否要将对 SQL 标签页的修改保存为项目文件? - + The statements in the tab '%1' 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? 标签页 '%1' 中的语句仍在执行。关闭该标签页将停止执行。这可能使数据库处于不一致状态。确定关闭标签页吗? - + 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 no longer fully supported. If you want to load it completely, please use DB Browser for SQLite version 3.12 to convert it to the new file format. 此项目文件使用了 DB Browser for SQLite 3.10 或更旧版本使用的旧文件格式。这种文件格式的加载已不再充分支持。如要完全加载该文件,请使用 DB Browser for SQLite 3.12 版本将其转换为新型文件格式。 - + Yes. Don't ask again 是,不再询问 - + 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 的修改? - + 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) - + 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 文件中的数据到当前数据库。 - + Ctrl+Tab Ctrl+Tab - + Ctrl+Shift+Tab Ctrl+Shift+Tab - + Clear List 清除列表 - + Window Layout 窗口布局 - + Simplify Window Layout 简化窗口布局 - + Alt+Shift+0 Alt+Shift+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 内存数据库 - + Automatically load the last opened DB file at startup - + Ctrl+Alt+0 Ctrl+Alt+0 - + Ctrl+Alt+W Ctrl+Alt+W - + Choose a database file to save under 选择数据库文件保存位置 - + Error while saving the database to the new file. 保存数据库到新文件时出错。 - + 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 修改表 - + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. @@ -4331,73 +4510,73 @@ Are you sure you want to save the database? - + 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. 新版本可用。 - + DB file '%1' could not be opened 无法打开数据库文件 '%1' - + Table '%1' not found; settings ignored 找不到表 '%1'; 设置已忽略 - + -- Reference to file "%1" (not supported by this version) -- -- 引用文件 "%1" (此版本暂不支持) -- - + 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! @@ -4406,42 +4585,42 @@ 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. 为 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 参考页。 @@ -6251,26 +6430,26 @@ Are you sure you want to proceed? 请输入此客户端证书的口令以进行身份验证。 - + Cancel 取消 - + Uploading remote database to %1 正在上传远程数据库到 %1 - + Downloading remote database from %1 正在下载远程数据库自 %1 - + Error: Cannot open the file for sending. 错误:无法打开文件以进行发送。 @@ -7005,32 +7184,32 @@ Use of this function must be authorized from Preferences. 正在加载... - + 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 取消 @@ -7372,7 +7551,7 @@ Hold %3Shift and click to jump there - + Delete Record 删除记录 @@ -7474,7 +7653,7 @@ Hold %3Shift and click to jump there - + Set encoding 设置编码 @@ -7740,96 +7919,96 @@ Hold %3Shift and click to jump there . Sum: %1; Average: %2; Min: %3; Max: %4 - + Conditional formats for "%1" "%1" 的条件格式 - + determining row count... 正在决定行数... - + %L1 - %L2 of >= %L3 %L1 - %L2 / 至少 %L3 - + %L1 - %L2 of %L3 %L1 - %L2 / %L3 - + (clipped at %L1 rows) (%L1 行的一部分) - + 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 请首先选择一条记录 - + 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 次替换。 diff --git a/src/translations/sqlb_zh_TW.ts b/src/translations/sqlb_zh_TW.ts index ba5213c8c..bb6b1063e 100644 --- a/src/translations/sqlb_zh_TW.ts +++ b/src/translations/sqlb_zh_TW.ts @@ -700,17 +700,17 @@ If any of the other settings were altered for this database file you need to pro - + Cancel 取消 - + Executing SQL... 正在執行 SQL... - + Action cancelled. 操作已取消。 @@ -746,99 +746,99 @@ If any of the other settings were altered for this database file you need to pro 您是否要中止其他操作? - - + + 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'. 在結構 '%2' 中已存在名為 '%1' 的資料表。 - + 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 重新命名欄位失敗。資料庫顯示: %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 複製資料到新資料表失敗。資料庫顯示: %1 - + Deleting old table failed. DB says: %1 刪除舊資料表失敗。資料庫顯示:%1 - + Error renaming table '%1' to '%2'. Message from database engine: %3 @@ -847,12 +847,12 @@ Message from database engine: %3 - + 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: @@ -861,32 +861,32 @@ Message from database engine: - + could not get list of databases: %1 無法取得資料庫的列表:%1 - + Error loading extension: %1 載入擴充套件時出現錯誤: %1 - + Error loading built-in extension: %1 - + could not get column information 無法取得列資訊 - + Error setting pragma %1 to %2: %3 設定 pragma %1 為 %2 時出現錯誤: %3 - + File not found. 找不到檔案。 @@ -1948,7 +1948,7 @@ All data currently stored in this field will be lost. ExtendedScintilla - + Ctrl+H Ctrl+H @@ -1959,22 +1959,22 @@ All data currently stored in this field will be lost. - + Ctrl+P Ctrl+P - + Find... 尋找... - + Find and Replace... 尋找和取代... - + Print... 列印... @@ -1982,129 +1982,129 @@ All data currently stored in this field will be lost. 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 - + Cut 剪下 - + 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。欄位 %1 有一個 NOT NULL 條件。 @@ -2496,7 +2496,7 @@ x~y 範圍:介於 x 和 y 之間的值 - + Tab Tab @@ -2639,7 +2639,7 @@ x~y 範圍:介於 x 和 y 之間的值 - + Deselect All 全部取消選取 @@ -2649,52 +2649,52 @@ x~y 範圍:介於 x 和 y 之間的值 符合相似 - + 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 - + Could not prepare INSERT statement: %1 無法準備 INSERT 陳述式:%1 - + Unexpected end of file. Please make sure that you have configured the correct quote characters and the file is not malformed. 檔案意外結束。請確保您已設定正確的引號字元,並且檔案格式正確。 - + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. 匯入檔案 '%1' 花費了 %2ms。其中 %3ms 花在行函式上。 - + Inserting row failed: %1 插入資料列失敗%1 @@ -2702,17 +2702,17 @@ x~y 範圍:介於 x 和 y 之間的值 MainWindow - + toolBar1 工具列1 - + Opens the SQLCipher FAQ in a browser window 在瀏覽器視窗中開啟 SQLCipher 常見問題 - + Export one or more table(s) to a JSON file 匯出一個或多個資料表到 JSON 檔案 @@ -2722,12 +2722,12 @@ x~y 範圍:介於 x 和 y 之間的值 DB Browser for SQLite - + Open an existing database file in read only mode 以唯讀模式開啟現有的資料庫檔案 - + &File 檔案(&F) @@ -2753,314 +2753,314 @@ x~y 範圍:介於 x 和 y 之間的值 編輯 P&ragmas - - + + E&xecute SQL This has to be equal to the tab title in all the main tabs 執&行 SQL - + &Import 匯入(&I) - + &Export 匯出(&E) - + &Recent Files 最近使用的檔案 - + &Edit 編輯(&E) - + &View 檢視(&V) - + &Help 幫助(&H) - + Edit Database &Cell 編輯資料庫儲存格(&C) - + DB Sche&ma 資料庫結構(&M) - + &Remote 遠端(&R) - - + + Execute current line 執行目前這一行 - + This button executes the SQL statement present in the current editor line 這個按鈕執行目前編輯器這一行的 SQL 陳述式 - + Shift+F5 Shift+F5 - + Sa&ve Project 儲存專案(&V) - - + + 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 將項目的 CREATE 陳述式複製到剪貼簿 - + User 使用者 - + Application 應用程式 - + &Clear 清除(&C) - + &New Database... 新建資料庫(&N)... - - + + Create a new database file 建立一個新的資料庫檔 - + This option is used to create a new database file. 這個選項用於建立一個新的資料庫檔案。 - + Ctrl+N Ctrl+N - - + + &Open Database... 開啟資料庫(&O)... - - - - - + + + + + Open an existing database file 開啟一個現有的資料庫檔 - - - + + + This option is used to open an existing database file. 這個選項用於開啟一個現有的資料庫檔案。 - + Ctrl+O Ctrl+O - + &Close Database 關閉資料庫(&C) - - + + Ctrl+W 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 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 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 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 Shift+F1 - + &Recently opened 最近開啟(&R) - + Ctrl+T Ctrl+T @@ -3073,92 +3073,271 @@ You can drag SQL statements from an object row and drop them into other applicat 您可以從物件列中拖曳 SQL 陳述式,並將它們拖曳到其他應用程式或另一個「DB Browser for 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 可能會覆蓋由 SQLite 擴充套件提供的已重新定義的 LIKE。 - + + Temp Store + + + + + Secure Delete + + + + + Case Sensitive Like + + + + + Journal Mode + + + + + Journal Size Limit + + + + + Recursive Triggers + + + + + Delete + pragma + + + + + Truncate + pragma + + + + + Persist + pragma + + + + + Memory + pragma + + + + + WAL + pragma + + + + + Off + pragma + + + + + Page Size + + + + + Foreign Keys + 外鍵 + + + + Auto Vacuum + + + + + Max Page Count + + + + + Normal + pragma + + + + + Exclusive + pragma + + + + + Checkpoint Full FSYNC + + + + + Off + + + + + Normal + + + + + + Full + + + + + Default + 預設 + + + + File + 檔案 + + + + Memory + + + + + Automatic Index + + + + + Ignore Check Constraints + + + + + Full FSYNC + + + + + WAL Auto Checkpoint + + + + + User Version + + + + + Synchronous + + + + + None + + + + + Incremental + + + + + Locking Mode + + + + Too&ls 工具(&T) - + DB Toolbar 資料庫工具列 - + 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. @@ -3168,707 +3347,707 @@ You can drag SQL statements from the Schema column and drop them into the SQL ed 您可以從結構欄位中拖曳 SQL 陳述式,並將它們拖曳到 SQL 編輯器或其他應用程式。 - - + + Project Toolbar 專案工具列 - + Extra DB toolbar 額外的資料庫工具列 - - - + + + Close the current database file 關閉目前的資料庫檔案 - + &New Database &新建資料庫 - + This button closes the connection to the currently open database file 這個按鈕會關閉目前開啟的資料庫檔案的連線 - - + + Ctrl+F4 Ctrl+F4 - + &Revert Changes &還原變更 - + &Undo &復原 - - + + Undo last change to the database 復原資料庫的最後一次變更 - + This action undoes the last change performed to the database in the Database Browser or in Execute SQL. Redoing is not possible. 這個動作會復原在 Database Browser 或執行 SQL 中對資料庫進行的最後一次變更。無法重做。 - + &Write Changes 寫入變更(&W) - + Compact &Database... 壓縮資料庫(&D)... - + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields from a table, as well as modify field names and types. 開啟「修改表格」精靈,在此您可以重新命名已存在的表格。您也可以新增或刪除表格中的欄位,以及修改欄位名稱和類型。 - + 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 陳述式。 - + Ctrl+Shift+T Ctrl+Shift+T - + &Load Extension... 載入擴充套件(&L)... - + Execute line 執行這一行 - + &Wiki 維基(&W) - + F1 F1 - + Bug &Report... 錯誤回報(&R)... - + Feature Re&quest... 功能請求(&Q)... - + Web&site 網站(&S) - + &Donate on Patreon... 在 Patreon 上贊助(&D)... - + &Save Project 儲存專案(&S) - + Open &Project... 開啟專案(&P)... - + 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 常見問題(&F) - + Table(&s) to JSON... 資料表(&S)轉換為 JSON... - + Open Data&base Read Only... 以唯讀模式開啟資料庫(&B)... - + 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 - + Export to &JSON 匯出為 &JSON - + Save as &view 儲存為檢視表(&V) - + Save as view 儲存為檢視表 - + &Open Database &開啟資料庫 - + Drag && Drop SELECT Query 拖曳 && 放下 SELECT 查詢 - - + + When dragging fields from the same table or a single table, drop a SELECT query into the editor 當從同一資料表或單一資料表拖曳欄位時,將 SELECT 查詢放入編輯器 - + Browse Table 瀏覽資料表 - - + + Ctrl+Shift+W Ctrl+Shift+W - + Table from CSV data in Clipboard... 從剪貼簿中的 CSV 資料建立資料表... - + This treats the current clipboard contents as a CSV file and opens the same import wizard that is used for importing CSV data from a file. 將目前剪貼簿的內容視為 CSV 檔案,並開啟與從檔案匯入 CSV 資料相同的匯入精靈。 - + Show &Row Counts 顯示 &列計數 - + This shows the number of rows for each table and view in the database. 顯示資料庫中每個資料表和檢視表的列數。 - + Save Database &As... 另存資料庫 &為... - + Save the current database as a different file 將目前的資料庫另存為不同的檔案 - + Refresh 重新整理 - + Reload the database structure 重新載入資料庫結構 - + Shows or hides the Project toolbar. 顯示或隱藏專案工具列。 - + New &tab 新分頁(&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 這個按鈕讓您儲存所有與開啟的資料庫相關的設定到一個 DB Browser for SQLite 的專案檔 - + This button lets you open a DB Browser for SQLite project file 這個按鈕讓您開啟一個 DB Browser for SQLite 的專案檔 - + 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 - + Close Pro&ject 關閉專案 - - + + Close project and database files and return to the initial state 關閉專案和資料庫檔案,並返回初始狀態 - + Ctrl+Shift+F4 Ctrl+Shift+F4 - - + + Detach Database 分離資料庫 - - + + Detach database file attached to the current database connection 分離目前資料庫連線所附加的資料庫檔案 - + &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? 這是什麼? - + &About &關於 - + 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 檔案 - + Ctrl+E Ctrl+E - + Export as CSV file 匯出為 CSV 檔案 - + Export table as comma separated values file 將資料表匯出為逗號分隔值檔案 - + Ctrl+L Ctrl+L - - + + Ctrl+P Ctrl+P - + Database encoding 資料庫編碼 - - + + Choose a database file 選擇一個資料庫檔案 - + Ctrl+Return Ctrl+Return - + Ctrl+D Ctrl+D - + Ctrl+I Ctrl+I - + Reset Window Layout 重設視窗配置 - + The database is currently 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. 資料庫檔案是唯讀的。已停用編輯資料庫。 - + Could not open database file. Reason: %1 無法開啟資料庫檔案。 原因: %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 @@ -3877,302 +4056,302 @@ Reason: %1 %1 - + Do you want to save the changes made to SQL tabs in the project file '%1'? 您是否要儲存對專案檔案「%1」中的 SQL 分頁所做的變更? - + 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) - + 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. 執行完成並未出現錯誤。 - + 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 記憶體內部資料庫 - + Ctrl+Tab Ctrl+Tab - + Ctrl+Shift+Tab Ctrl+Shift+Tab - + Clear List 清除清單 - + Window Layout 視窗配置 - + Ctrl+Alt+0 Ctrl+Alt+0 - + Simplify Window Layout 簡化視窗配置 - + Alt+Shift+0 Alt+Shift+0 - + Dock Windows at Bottom 在底端停駐視窗 - + Dock Windows at Left Side 在左側停駐視窗 - + Dock Windows at Top 在頂端停駐視窗 - + Ctrl+Alt+W Ctrl+Alt+W - + Choose a database file to save under 選擇一個資料庫檔案進行儲存 - + Error while saving the database to the new file. 儲存資料庫到新檔案時發生錯誤。 - + 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? 編輯表格前必須先儲存所有尚未完成的修改。 您確定要儲存這個資料庫嗎? - + 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 值或清理將會提交您的目前交易。. 您確認嗎? - + Opened '%1' in read-only mode from recent file list 從最近的檔案列表中以唯讀模式開啟 '%1' - + Opened '%1' from recent file list 從最近的檔案列表中開啟 '%1' - + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. Note for translation: Although there is no %n in the original, you can use the numerus-form to adjust 'files(s)' and remove the note when n = 1. Including %n in the translation will also work. @@ -4180,220 +4359,220 @@ Are you sure? - + The statements in the tab '%1' 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? 標籤 '%1' 中的指令仍在執行。關閉標籤將會停止執行。這可能會使資料庫處於不一致的狀態。您確定要關閉標籤嗎? - + DB file '%1' could not be opened 無法開啟資料庫檔案 '%1' - + 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 no longer fully supported. If you want to load it completely, please use DB Browser for SQLite version 3.12 to convert it to the new file format. 此專案檔案使用舊的檔案格式,因為它是使用 DB Browser for SQLite 3.10 版或更舊的版本建立的。我們已經不再完全支援載入此檔案格式。如果您想完全載入,請使用 DB Browser for SQLite 3.12 版將其轉換為新的檔案格式。 - + Table '%1' not found; settings ignored 找不到資料表 '%1';設定已忽略 - + -- Reference to file "%1" (not supported by this version) -- -- 指向檔案 "%1"(本版本不支援)-- - + Project saved to file '%1' 專案已儲存到檔案 '%1' - + Yes. Don't ask again 是的。不再詢問 - + 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 行 - + Automatically load the last opened DB file at startup - + 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' 所做的更改? - + 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)... 匯入 CSV 檔案... - + 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 檔案 %1 所做的變更? - + 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 找不到資源檔案: %1 - - + + Don't show again 不再顯示 - + New version available. 有新版本可用。 - + Choose a project file to open 選擇要開啟的專案檔 - + Could not open project file for writing. Reason: %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! @@ -4402,47 +4581,47 @@ 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. 為 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 參考頁面。 - + Busy (%1) 忙碌 (%1) @@ -6251,26 +6430,26 @@ Are you sure you want to proceed? 請輸入此客戶端憑證的密碼以進行驗證。 - + Cancel 取消 - + Uploading remote database to %1 正在上傳遠端資料庫到 %1 - + Downloading remote database from %1 正在從 %1 下載遠端資料庫 - + Error: Cannot open the file for sending. 錯誤:無法開啟要傳送的檔案。 @@ -7005,32 +7184,32 @@ Use of this function must be authorized from Preferences. 正在載入... - + 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 取消 @@ -7372,7 +7551,7 @@ Hold %3Shift and click to jump there - + Delete Record 刪除記錄 @@ -7474,7 +7653,7 @@ Hold %3Shift and click to jump there - + Set encoding 設定編碼 @@ -7737,96 +7916,96 @@ Hold %3Shift and click to jump there . 總計:%1;平均:%2;最小值:%3;最大值:%4 - + Conditional formats for "%1" "%1" 的條件式格式 - + determining row count... 正在計算列數... - + %L1 - %L2 of >= %L3 %L1 - %L2 / 總數 >= %L3 - + %L1 - %L2 of %L3 %L1 - %L2 / 總數 %L3 - + (clipped at %L1 rows) (在 %L1 列處截斷) - + 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+" Ctrl+" - + Adjust rows to contents 調整列以適應內容 - + Error deleting record: %1 刪除記錄時出現錯誤: %1 - + Please select a record first 請先選擇一筆記錄 - + 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 次取代。 From 0ef22031aaf361f4de700e26485ea54f490d56c7 Mon Sep 17 00:00:00 2001 From: mgrojo Date: Fri, 9 Aug 2024 22:19:35 +0200 Subject: [PATCH 33/67] Help button to open wiki page for "Display formats" --- src/ColumnDisplayFormatDialog.cpp | 6 ++++++ src/ColumnDisplayFormatDialog.h | 1 + src/ColumnDisplayFormatDialog.ui | 22 +++++++++++++++++++--- 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/src/ColumnDisplayFormatDialog.cpp b/src/ColumnDisplayFormatDialog.cpp index 8a5a42d6f..bc394dbea 100644 --- a/src/ColumnDisplayFormatDialog.cpp +++ b/src/ColumnDisplayFormatDialog.cpp @@ -1,4 +1,5 @@ #include +#include #include "ColumnDisplayFormatDialog.h" #include "ui_ColumnDisplayFormatDialog.h" @@ -171,3 +172,8 @@ void ColumnDisplayFormatDialog::setCustom(bool modified) if(modified && ui->editDisplayFormat->hasFocus()) ui->comboDisplayFormat->setCurrentIndex(ui->comboDisplayFormat->findData("custom")); } + +void ColumnDisplayFormatDialog::help() +{ + QDesktopServices::openUrl(QUrl("https://github.com/sqlitebrowser/sqlitebrowser/wiki/Display-Formats")); +} diff --git a/src/ColumnDisplayFormatDialog.h b/src/ColumnDisplayFormatDialog.h index 5ddd706d9..5910b5a31 100644 --- a/src/ColumnDisplayFormatDialog.h +++ b/src/ColumnDisplayFormatDialog.h @@ -32,6 +32,7 @@ private slots: void updateSqlCode(); void accept() override; void setCustom(bool modified); + void help(); private: Ui::ColumnDisplayFormatDialog* ui; diff --git a/src/ColumnDisplayFormatDialog.ui b/src/ColumnDisplayFormatDialog.ui index 5816b8b05..d2cf4d977 100644 --- a/src/ColumnDisplayFormatDialog.ui +++ b/src/ColumnDisplayFormatDialog.ui @@ -6,8 +6,8 @@ 0 0 - 624 - 205 + 677 + 217 @@ -42,7 +42,7 @@ Qt::Horizontal - QDialogButtonBox::Cancel|QDialogButtonBox::Ok + QDialogButtonBox::Cancel|QDialogButtonBox::Help|QDialogButtonBox::Ok @@ -126,6 +126,22 @@ + + buttonBox + helpRequested() + ColumnDisplayFormatDialog + help() + + + 338 + 195 + + + 338 + 108 + + + updateSqlCode() From d72f4225e4efd7aac23fe5eb78c23d6804e41793 Mon Sep 17 00:00:00 2001 From: mgrojo Date: Sat, 10 Aug 2024 00:31:28 +0200 Subject: [PATCH 34/67] Add links to the wiki as help for many dialogs Fix compilation problem with some Qt versions regarding QUrl header. --- src/CipherDialog.cpp | 6 ++++++ src/CipherDialog.h | 1 + src/CipherDialog.ui | 20 ++++++++++++++++++-- src/ColumnDisplayFormatDialog.cpp | 1 + src/FilterLineEdit.cpp | 3 +++ src/MainWindow.cpp | 1 + src/PlotDock.cpp | 8 ++++++++ 7 files changed, 38 insertions(+), 2 deletions(-) diff --git a/src/CipherDialog.cpp b/src/CipherDialog.cpp index 7090e0cdb..16b7f33aa 100644 --- a/src/CipherDialog.cpp +++ b/src/CipherDialog.cpp @@ -4,6 +4,8 @@ #include #include +#include +#include #include @@ -149,3 +151,7 @@ void CipherDialog::toggleEncryptionSettings() ui->plaintextHeaderSize->setEnabled(true); } } + +void CipherDialog::help() { + QDesktopServices::openUrl(QUrl("https://github.com/sqlitebrowser/sqlitebrowser/wiki/Encrypted-Databases")); +} diff --git a/src/CipherDialog.h b/src/CipherDialog.h index ac7adc972..edb57b3b8 100644 --- a/src/CipherDialog.h +++ b/src/CipherDialog.h @@ -31,6 +31,7 @@ class CipherDialog : public QDialog private slots: void checkInputFields(); void toggleEncryptionSettings(); + void help(); }; #endif diff --git a/src/CipherDialog.ui b/src/CipherDialog.ui index 586314601..f8f123d85 100644 --- a/src/CipherDialog.ui +++ b/src/CipherDialog.ui @@ -7,7 +7,7 @@ 0 0 712 - 299 + 322 @@ -246,7 +246,7 @@ Qt::Horizontal - QDialogButtonBox::Cancel|QDialogButtonBox::Ok + QDialogButtonBox::Cancel|QDialogButtonBox::Help|QDialogButtonBox::Ok @@ -395,6 +395,22 @@ + + buttonBox + helpRequested() + CipherDialog + help() + + + 355 + 300 + + + 355 + 160 + + + checkInputFields() diff --git a/src/ColumnDisplayFormatDialog.cpp b/src/ColumnDisplayFormatDialog.cpp index bc394dbea..69ca8c8b1 100644 --- a/src/ColumnDisplayFormatDialog.cpp +++ b/src/ColumnDisplayFormatDialog.cpp @@ -1,5 +1,6 @@ #include #include +#include #include "ColumnDisplayFormatDialog.h" #include "ui_ColumnDisplayFormatDialog.h" diff --git a/src/FilterLineEdit.cpp b/src/FilterLineEdit.cpp index 19d0f6cd5..661570625 100644 --- a/src/FilterLineEdit.cpp +++ b/src/FilterLineEdit.cpp @@ -5,6 +5,8 @@ #include #include #include +#include +#include FilterLineEdit::FilterLineEdit(QWidget* parent, std::vector* filters, size_t columnnum) : QLineEdit(parent), @@ -133,6 +135,7 @@ void FilterLineEdit::showContextMenu(const QPoint &pos) QAction* whatsThisAction = new QAction(QIcon(":/icons/whatis"), tr("What's This?"), editContextMenu); connect(whatsThisAction, &QAction::triggered, this, [&]() { + QDesktopServices::openUrl(QUrl("https://github.com/sqlitebrowser/sqlitebrowser/wiki/Using-the-Filters")); QWhatsThis::showText(pos, whatsThis(), this); }); diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 50e38dcdf..adf06c29d 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -51,6 +51,7 @@ #include #include #include +#include #ifdef Q_OS_MACX //Needed only on macOS #include diff --git a/src/PlotDock.cpp b/src/PlotDock.cpp index 34f02744c..f1bb50737 100644 --- a/src/PlotDock.cpp +++ b/src/PlotDock.cpp @@ -9,6 +9,8 @@ #include #include +#include +#include #if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) #include #endif @@ -92,6 +94,12 @@ PlotDock::PlotDock(QWidget* parent) openPrintDialog(); }); + QAction* helpAction = new QAction(QIcon(":/icons/whatis"), tr("Help"), m_contextMenu); + m_contextMenu->addAction(helpAction); + connect(helpAction, &QAction::triggered, this, [&]() { + QDesktopServices::openUrl(QUrl("https://github.com/sqlitebrowser/sqlitebrowser/wiki/Plot-Dock")); + }); + QAction* showLegendAction = new QAction(tr("Show legend"), m_contextMenu); showLegendAction->setCheckable(true); m_contextMenu->addAction(showLegendAction); From 1dcb1a8397370f50d9edec5057e1e1af95e2d3a6 Mon Sep 17 00:00:00 2001 From: mgrojo Date: Mon, 12 Aug 2024 15:46:12 +0200 Subject: [PATCH 35/67] About: fix link for Qt licensing info --- src/AboutDialog.ui | 2 +- src/translations/sqlb_ar_SA.ts | 2 +- src/translations/sqlb_cs.ts | 2 +- src/translations/sqlb_de.ts | 4 ++-- src/translations/sqlb_en_GB.ts | 2 +- src/translations/sqlb_es_ES.ts | 4 ++-- src/translations/sqlb_fa.ts | 2 +- src/translations/sqlb_fr.ts | 2 +- src/translations/sqlb_id.ts | 2 +- src/translations/sqlb_it.ts | 4 ++-- src/translations/sqlb_ja.ts | 4 ++-- src/translations/sqlb_ko_KR.ts | 4 ++-- src/translations/sqlb_nl.ts | 2 +- src/translations/sqlb_pl.ts | 2 +- src/translations/sqlb_pt_BR.ts | 2 +- src/translations/sqlb_ro.ts | 2 +- src/translations/sqlb_ru.ts | 2 +- src/translations/sqlb_sv.ts | 2 +- src/translations/sqlb_tr.ts | 2 +- src/translations/sqlb_uk_UA.ts | 2 +- src/translations/sqlb_zh.ts | 2 +- src/translations/sqlb_zh_TW.ts | 2 +- 22 files changed, 27 insertions(+), 27 deletions(-) diff --git a/src/AboutDialog.ui b/src/AboutDialog.ui index f4619e981..a94455e63 100644 --- a/src/AboutDialog.ui +++ b/src/AboutDialog.ui @@ -87,7 +87,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop diff --git a/src/translations/sqlb_ar_SA.ts b/src/translations/sqlb_ar_SA.ts index fa591bc80..72b3139a7 100644 --- a/src/translations/sqlb_ar_SA.ts +++ b/src/translations/sqlb_ar_SA.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_cs.ts b/src/translations/sqlb_cs.ts index f01ea51da..b37a615ad 100644 --- a/src/translations/sqlb_cs.ts +++ b/src/translations/sqlb_cs.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_de.ts b/src/translations/sqlb_de.ts index 4de24d157..6544cca6d 100644 --- a/src/translations/sqlb_de.ts +++ b/src/translations/sqlb_de.ts @@ -15,8 +15,8 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> - <html><head/><body><p>DB-Browser für SQLite ist eine freie Open-Source-Anwendung mit GUI zum Erstellen, Entwerfen und Bearbeiten von SQLite-Datenbanken.</p><p>Die Anwendung ist sowohl unter der Mozilla Public License Version 2 als auch der GNU General Public License Version 3 or later verfügbar. Modifikationen oder Weitergabe sind unter Beachtung der Bedingungen dieser Lizenzen möglich.</p><p>Siehe <a href="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> und <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> für Details.</p><p>Weitere Informationen über diese Anwendung gibt es auf unserer Webseite: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">Diese Software verwendet das Qt-Toolkit unter der GPL/LGPL Qt Toolkit, welches unter </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a> verfügbar ist. <span style=" font-size:small;"><br/>Zugehörige Lizenzbedingungen und Informationen gibt es unter </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"></span></p><p><span style=" font-size:8pt;">Wir verwenden die nalgeon/sqlean-Bibliothek für die Unterstützung von SQLite-Erweiterungen.<br/>Diese Bibliothek ist unter der MIT license verfügbar; mehr Informationen gibt es unter:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">Zudem wird das Pastel SVG Iconset von Michael Buckley verwendet, das unter der Creative Commons Attribution Share Alike 4.0 Lizenz steht.<br/>Siehe </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> für weitere Details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB-Browser für SQLite ist eine freie Open-Source-Anwendung mit GUI zum Erstellen, Entwerfen und Bearbeiten von SQLite-Datenbanken.</p><p>Die Anwendung ist sowohl unter der Mozilla Public License Version 2 als auch der GNU General Public License Version 3 or later verfügbar. Modifikationen oder Weitergabe sind unter Beachtung der Bedingungen dieser Lizenzen möglich.</p><p>Siehe <a href="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> und <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> für Details.</p><p>Weitere Informationen über diese Anwendung gibt es auf unserer Webseite: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">Diese Software verwendet das Qt-Toolkit unter der GPL/LGPL Qt Toolkit, welches unter </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a> verfügbar ist. <span style=" font-size:small;"><br/>Zugehörige Lizenzbedingungen und Informationen gibt es unter </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"></span></p><p><span style=" font-size:8pt;">Wir verwenden die nalgeon/sqlean-Bibliothek für die Unterstützung von SQLite-Erweiterungen.<br/>Diese Bibliothek ist unter der MIT license verfügbar; mehr Informationen gibt es unter:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">Zudem wird das Pastel SVG Iconset von Michael Buckley verwendet, das unter der Creative Commons Attribution Share Alike 4.0 Lizenz steht.<br/>Siehe </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> für weitere Details.</span></p></body></html> diff --git a/src/translations/sqlb_en_GB.ts b/src/translations/sqlb_en_GB.ts index 3353e75f8..3b789e7d4 100644 --- a/src/translations/sqlb_en_GB.ts +++ b/src/translations/sqlb_en_GB.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_es_ES.ts b/src/translations/sqlb_es_ES.ts index ef00c539e..7468d5be2 100644 --- a/src/translations/sqlb_es_ES.ts +++ b/src/translations/sqlb_es_ES.ts @@ -15,8 +15,8 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> - <html><head/><body><p><em>DB Browser for SQLite</em> es una herramienta visual gratuita y de código abierto que se utiliza para crear, diseñar y editar archivos de bases de datos SQLite.</p><p>Tiene licencia doble bajo la Licencia Pública de Mozilla versión 2, así como la Licencia Pública General de GNU versión 3 o posterior. Puede modificarlo o redistribuirlo bajo las condiciones de estas licencias.</p><p>Vea <a href="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> y <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> para los detalles.</p><p>Para obtener más información sobre este programa, visite nuestra página en: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">Esta aplicación usa el Qt Toolkit GPL/LGPL de </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>Vea </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> para los detalles y los términos de licencia.</span></p><p><span style=" font-size:8pt;">Utilizamos la biblioteca nalgeon/sqlen para el soporte de extensiones SQLite.<br/>Esta biblioteca se distribuye bajo la licencia MIT, vea lo siguiente para más información:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">También utiliza el conjunto de iconos SVG de Michael Buckley bajo licencia Creative Commons Attribution Share Alike 4.0.<br/>Vea </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> para los detalles.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p><em>DB Browser for SQLite</em> es una herramienta visual gratuita y de código abierto que se utiliza para crear, diseñar y editar archivos de bases de datos SQLite.</p><p>Tiene licencia doble bajo la Licencia Pública de Mozilla versión 2, así como la Licencia Pública General de GNU versión 3 o posterior. Puede modificarlo o redistribuirlo bajo las condiciones de estas licencias.</p><p>Vea <a href="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> y <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> para los detalles.</p><p>Para obtener más información sobre este programa, visite nuestra página en: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">Esta aplicación usa el Qt Toolkit GPL/LGPL de </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>Vea </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> para los detalles y los términos de licencia.</span></p><p><span style=" font-size:8pt;">Utilizamos la biblioteca nalgeon/sqlen para el soporte de extensiones SQLite.<br/>Esta biblioteca se distribuye bajo la licencia MIT, vea lo siguiente para más información:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">También utiliza el conjunto de iconos SVG de Michael Buckley bajo licencia Creative Commons Attribution Share Alike 4.0.<br/>Vea </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> para los detalles.</span></p></body></html> diff --git a/src/translations/sqlb_fa.ts b/src/translations/sqlb_fa.ts index e3e052632..0360ff109 100644 --- a/src/translations/sqlb_fa.ts +++ b/src/translations/sqlb_fa.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_fr.ts b/src/translations/sqlb_fr.ts index 6a90f4aeb..bdcac4573 100644 --- a/src/translations/sqlb_fr.ts +++ b/src/translations/sqlb_fr.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_id.ts b/src/translations/sqlb_id.ts index 98242febf..8630faf5d 100644 --- a/src/translations/sqlb_id.ts +++ b/src/translations/sqlb_id.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_it.ts b/src/translations/sqlb_it.ts index 15dabe216..984f14690 100644 --- a/src/translations/sqlb_it.ts +++ b/src/translations/sqlb_it.ts @@ -15,8 +15,8 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> - <html><head/><body><p>DB Browser for SQLite è uno strumento visuale open source e freeware utilizzato per creare, progettare ed editare files di database SQLite.</p><p>È licenziato sia sotto la Mozilla Public License Version 2, che la GNU General Public License Version 3 o successive. Puoi modificare o redistribuirlo rispettando le condizioni di queste licenze.</p><p>Visita <a href="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> e <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> per i dettagli.</p><p>Per ulteriori informazioni su questo applicativo si prega di visitare il nostro sito: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">Questo software utilizza la versione GPL/LGPL del Toolkit Qt da: </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>Visita: </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> per i termini della licenza ed informazioni.</span></p><p><span style=" font-size:8pt;">Utilizziamo la libreria nalgeon/sqlean per il supporto alle estensioni SQLite.<br/>Questa libreria è licenziata tramite la licenza MIT, per ulteriori informazioni visita:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">Utilizziamo anche il set di icone Pastel SVG di Michael Buckley tramite la licenza Creative Commons Attribution Share Alike 4.0.<br/>Visita: </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> per i dettagli.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB Browser for SQLite è uno strumento visuale open source e freeware utilizzato per creare, progettare ed editare files di database SQLite.</p><p>È licenziato sia sotto la Mozilla Public License Version 2, che la GNU General Public License Version 3 o successive. Puoi modificare o redistribuirlo rispettando le condizioni di queste licenze.</p><p>Visita <a href="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> e <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> per i dettagli.</p><p>Per ulteriori informazioni su questo applicativo si prega di visitare il nostro sito: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">Questo software utilizza la versione GPL/LGPL del Toolkit Qt da: </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>Visita: </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> per i termini della licenza ed informazioni.</span></p><p><span style=" font-size:8pt;">Utilizziamo la libreria nalgeon/sqlean per il supporto alle estensioni SQLite.<br/>Questa libreria è licenziata tramite la licenza MIT, per ulteriori informazioni visita:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">Utilizziamo anche il set di icone Pastel SVG di Michael Buckley tramite la licenza Creative Commons Attribution Share Alike 4.0.<br/>Visita: </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> per i dettagli.</span></p></body></html> diff --git a/src/translations/sqlb_ja.ts b/src/translations/sqlb_ja.ts index 5c6946e75..07997a27c 100644 --- a/src/translations/sqlb_ja.ts +++ b/src/translations/sqlb_ja.ts @@ -15,8 +15,8 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://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>このプログラムの更なる情報を得るには、私たちのウェブサイトを訪れてください:<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="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>ライセンス条項や情報は </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> をご覧ください。</span></p><p><span style=" font-size:8pt;">このソフトウェアはSQLite拡張サポートのため、nalgeon/sqlean library を使用しています。<br/>このライブラリはMITライセンスです。更なる情報は以下をご覧ください:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">また、Michael Buckley の Pastel SVG icon set を Creative Commons Attribution Share Alike 4.0 license の元に使用しています。<br/>詳細は </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> をご覧ください。</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://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>このプログラムの更なる情報を得るには、私たちのウェブサイトを訪れてください:<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="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>ライセンス条項や情報は </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> をご覧ください。</span></p><p><span style=" font-size:8pt;">このソフトウェアはSQLite拡張サポートのため、nalgeon/sqlean library を使用しています。<br/>このライブラリはMITライセンスです。更なる情報は以下をご覧ください:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">また、Michael Buckley の Pastel SVG icon set を Creative Commons Attribution Share Alike 4.0 license の元に使用しています。<br/>詳細は </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> をご覧ください。</span></p></body></html> diff --git a/src/translations/sqlb_ko_KR.ts b/src/translations/sqlb_ko_KR.ts index 45fda1f52..ca7008b11 100644 --- a/src/translations/sqlb_ko_KR.ts +++ b/src/translations/sqlb_ko_KR.ts @@ -16,8 +16,8 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> - <html><head/><body><p>DB Browser for SQLite는 데이터베이스 파일을 생성, 디자인 및 편집하는 데 사용되는 오픈 소스 프리웨어 시각 도구입니다.</p><p>Mozilla Public License 버전 2와 GNU General Public License 버전 3 이상에 따라 이중 라이선스가 적용됩니다. 이러한 라이선스 조건에 따라 수정하거나 재배포할 수 있습니다.</p><p>자세한 사항은 <a href="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://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>이 프로그램에 대한 자세한 내용은 웹사이트에서 확인하세요: <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 툴킷을 사용합니다.</span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;"> https://qt-project.org/</span></a><span style=" font-size:small;"><br/>자세한 라이센스 약관 및 정보는 </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;">를 확인하세요.</span></p><p><span style=" font-size:8pt;">저희는 SQLite 확장 지원을 위해 nalgeon/sqlean 라이브러리를 사용합니다.<br/>이 라이브러리는 MIT 라이선스에 따라 라이선스가 부여되며, 자세한 내용은 다음을 참조하세요:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">또한 크리에이티브 커먼즈 저작자표시 동일조건변경허락 4.0 라이선스에 따라 Michael Buckley가 설정한 파스텔 SVG 아이콘을 사용합니다.<br/>자세한 사항은 </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> 을 확인하세요.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB Browser for SQLite는 데이터베이스 파일을 생성, 디자인 및 편집하는 데 사용되는 오픈 소스 프리웨어 시각 도구입니다.</p><p>Mozilla Public License 버전 2와 GNU General Public License 버전 3 이상에 따라 이중 라이선스가 적용됩니다. 이러한 라이선스 조건에 따라 수정하거나 재배포할 수 있습니다.</p><p>자세한 사항은 <a href="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://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>이 프로그램에 대한 자세한 내용은 웹사이트에서 확인하세요: <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 툴킷을 사용합니다.</span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;"> https://qt-project.org/</span></a><span style=" font-size:small;"><br/>자세한 라이센스 약관 및 정보는 </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;">를 확인하세요.</span></p><p><span style=" font-size:8pt;">저희는 SQLite 확장 지원을 위해 nalgeon/sqlean 라이브러리를 사용합니다.<br/>이 라이브러리는 MIT 라이선스에 따라 라이선스가 부여되며, 자세한 내용은 다음을 참조하세요:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">또한 크리에이티브 커먼즈 저작자표시 동일조건변경허락 4.0 라이선스에 따라 Michael Buckley가 설정한 파스텔 SVG 아이콘을 사용합니다.<br/>자세한 사항은 </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> 을 확인하세요.</span></p></body></html> diff --git a/src/translations/sqlb_nl.ts b/src/translations/sqlb_nl.ts index 1cefb015a..44a5a1bd3 100644 --- a/src/translations/sqlb_nl.ts +++ b/src/translations/sqlb_nl.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_pl.ts b/src/translations/sqlb_pl.ts index 915ae52cb..e75457942 100644 --- a/src/translations/sqlb_pl.ts +++ b/src/translations/sqlb_pl.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_pt_BR.ts b/src/translations/sqlb_pt_BR.ts index 3c60f2290..1995ff3ff 100644 --- a/src/translations/sqlb_pt_BR.ts +++ b/src/translations/sqlb_pt_BR.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_ro.ts b/src/translations/sqlb_ro.ts index c231a4979..03139909e 100644 --- a/src/translations/sqlb_ro.ts +++ b/src/translations/sqlb_ro.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_ru.ts b/src/translations/sqlb_ru.ts index 6f9a25176..5838f97ad 100644 --- a/src/translations/sqlb_ru.ts +++ b/src/translations/sqlb_ru.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_sv.ts b/src/translations/sqlb_sv.ts index 5b2e30e39..29f65909c 100644 --- a/src/translations/sqlb_sv.ts +++ b/src/translations/sqlb_sv.ts @@ -12,7 +12,7 @@ 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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_tr.ts b/src/translations/sqlb_tr.ts index f36835d0d..b97f200f6 100644 --- a/src/translations/sqlb_tr.ts +++ b/src/translations/sqlb_tr.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_uk_UA.ts b/src/translations/sqlb_uk_UA.ts index 92c53dca9..a85f0fcdd 100644 --- a/src/translations/sqlb_uk_UA.ts +++ b/src/translations/sqlb_uk_UA.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_zh.ts b/src/translations/sqlb_zh.ts index a4f4666d1..b2bebc832 100644 --- a/src/translations/sqlb_zh.ts +++ b/src/translations/sqlb_zh.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> diff --git a/src/translations/sqlb_zh_TW.ts b/src/translations/sqlb_zh_TW.ts index bb6b1063e..060468a9e 100644 --- a/src/translations/sqlb_zh_TW.ts +++ b/src/translations/sqlb_zh_TW.ts @@ -15,7 +15,7 @@ - <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://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:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <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="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">https://www.gnu.org/licenses/gpl.html</span></a> and <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> for details.</p><p>For more information on this program please visit our website at: <a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="https://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="https://doc.qt.io/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://doc.qt.io/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:8pt;">We use the nalgeon/sqlean library for SQLite extensions support.<br/>This library is licensed under the MIT license, see the following for more information:<br/></span><a href="https://github.com/nalgeon/sqlean"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">https://github.com/nalgeon/sqlean</span></a></p><p><span style=" font-size:small;">It also uses the Pastel SVG icon set by Michael Buckley under a Creative Commons Attribution Share Alike 4.0 license.<br/>See </span><a href="https://codefisher.org/pastel-svg/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">https://codefisher.org/pastel-svg/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> From 8dda3eeb7ca9b5bf9cf502eaf0f87d16c79b40de Mon Sep 17 00:00:00 2001 From: mgrojo Date: Mon, 12 Aug 2024 16:25:29 +0200 Subject: [PATCH 36/67] Edit DB cell & SQL Log: log expanded query and only when preparation worked See issue #3702 --- src/sqlitedb.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/sqlitedb.cpp b/src/sqlitedb.cpp index 0de8c6b28..8f2cecb41 100644 --- a/src/sqlitedb.cpp +++ b/src/sqlitedb.cpp @@ -1517,7 +1517,6 @@ bool DBBrowserDB::updateRecord(const sqlb::ObjectIdentifier& table, const std::s sql += "sqlb_make_single_value(" + sqlb::joinStringVector(sqlb::escapeIdentifier(pks), ",") + ")=" + sqlb::escapeString(rowid.toStdString()); setSavepoint(); - logSQL(QString::fromStdString(sql), kLogMsg_App); // If we get a NULL QByteArray we insert a NULL value, and for that // we can pass NULL to sqlite3_bind_text() so that it behaves like sqlite3_bind_null() @@ -1543,8 +1542,11 @@ bool DBBrowserDB::updateRecord(const sqlb::ObjectIdentifier& table, const std::s success = -1; } } - if(success == 1 && sqlite3_step(stmt) != SQLITE_DONE) - success = -1; + if(success == 1) { + logSQL(QString::fromUtf8(sqlite3_expanded_sql(stmt)), kLogMsg_App); + if(sqlite3_step(stmt) != SQLITE_DONE) + success = -1; + } if(success != 0 && sqlite3_finalize(stmt) != SQLITE_OK) success = -1; From 7f85da82995d18fe89caa86e2b57a1b370b59f89 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Aug 2024 20:07:07 +0900 Subject: [PATCH 37/67] build(deps): bump signpath/github-action-submit-signing-request from 0.4 to 1 (#3704) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build-windows.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 259cf19ca..555c0989d 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -156,7 +156,7 @@ jobs: # Change the signing-policy-slug when you release an RC, RTM or stable release. - if: github.event_name != 'pull_request' name: Code signing with SignPath - uses: signpath/github-action-submit-signing-request@v0.4 + uses: signpath/github-action-submit-signing-request@v1 with: api-token: '${{ secrets.SIGNPATH_API_TOKEN }}' github-artifact-id: '${{ steps.unsigned-artifacts.outputs.artifact-id }}' From 3bbedaf57d77ca4234156193a5d978db1d3554dc Mon Sep 17 00:00:00 2001 From: SeongTae Jeong Date: Wed, 28 Aug 2024 00:53:42 +0900 Subject: [PATCH 38/67] Include the `qsvgiconengine` for Windows builds Related: #3684, #3700 --- .github/patch/product.wxs.patch | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/.github/patch/product.wxs.patch b/.github/patch/product.wxs.patch index c0e14c061..abb0e62ad 100644 --- a/.github/patch/product.wxs.patch +++ b/.github/patch/product.wxs.patch @@ -1,18 +1,21 @@ diff --git a/installer/windows/product.wxs b/installer/windows/product.wxs -index c040591a..12c3aee8 100644 +index c040591a..46d57881 100644 --- a/installer/windows/product.wxs +++ b/installer/windows/product.wxs -@@ -63,7 +63,8 @@ +@@ -63,7 +63,11 @@ - + + ++ ++ ++ -@@ -84,6 +85,9 @@ +@@ -84,6 +88,9 @@ @@ -22,7 +25,7 @@ index c040591a..12c3aee8 100644 -@@ -149,8 +153,11 @@ +@@ -149,8 +156,11 @@ @@ -35,7 +38,15 @@ index c040591a..12c3aee8 100644 -@@ -186,6 +193,9 @@ +@@ -169,6 +179,7 @@ + + + ++ + + + +@@ -186,6 +197,9 @@ From bc3d0938dd4d5196ec5e52c46014bb04a2be4d38 Mon Sep 17 00:00:00 2001 From: Nikolay Zlatev Date: Wed, 28 Aug 2024 20:08:23 +0300 Subject: [PATCH 39/67] Workaround for #3706 Move connection to the DBBrowserDB::structureUpdated signal to the constructor after LoadLastDBFile is executed (if needed). For all Widgets to be attached to the UI, the callback also calls QApplication::processEvents (mainly for project files) This should resolve autocomplete for: Opening a project in general Opening a file from the command line Opening a file with autoLoadLastDBFileAtStartup --- src/MainWindow.cpp | 33 +++++++++++++++++++++++---------- 1 file changed, 23 insertions(+), 10 deletions(-) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index adf06c29d..ef0c09ba1 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -79,8 +79,30 @@ MainWindow::MainWindow(QWidget* parent) activateFields(false); updateRecentFileActions(); - if (Settings::getValue("General", "autoLoadLastDBFileAtStartup").toBool()) + auto update_structure = [this] { + const auto docks = allTableBrowserDocks(); + std::vector old_tables; + old_tables.reserve(docks.size()); + for(const auto &dock: docks) { + old_tables.push_back(dock->tableBrowser()->currentlyBrowsedTableName()); + } + + dbStructureModel->reloadData(); + // Process all waiting events before we call populateStructure, + // giving the Application a chance to attach all Widgets. + // See #3706 + QApplication::processEvents(); + populateStructure(old_tables); + }; + + if (Settings::getValue("General", "autoLoadLastDBFileAtStartup").toBool()) { recentFileActs[0]->trigger(); + update_structure(); + } + + connect(&db, &DBBrowserDB::structureUpdated, this, [update_structure = std::move(update_structure)]() { + update_structure(); + }); } MainWindow::~MainWindow() @@ -133,15 +155,6 @@ void MainWindow::init() // Set up DB structure tab dbStructureModel = new DbStructureModel(db, this); - connect(&db, &DBBrowserDB::structureUpdated, this, [this]() { - std::vector old_tables; - for(const auto& d : allTableBrowserDocks()) - old_tables.push_back(d->tableBrowser()->currentlyBrowsedTableName()); - - dbStructureModel->reloadData(); - - populateStructure(old_tables); - }); ui->dbTreeWidget->setModel(dbStructureModel); ui->dbTreeWidget->setColumnWidth(DbStructureModel::ColumnName, 300); ui->dbTreeWidget->setColumnHidden(DbStructureModel::ColumnObjectType, true); From 2b4dea7b4a2a4100606c97f794be08d1ff84570e Mon Sep 17 00:00:00 2001 From: Nikolay Zlatev Date: Wed, 28 Aug 2024 21:08:39 +0300 Subject: [PATCH 40/67] autoLoadLastDBFileAtStartup: refresh table browsers Refresh table browser if its active --- src/MainWindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index ef0c09ba1..064a183d6 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -98,6 +98,8 @@ MainWindow::MainWindow(QWidget* parent) if (Settings::getValue("General", "autoLoadLastDBFileAtStartup").toBool()) { recentFileActs[0]->trigger(); update_structure(); + if (ui->mainTab->currentWidget() == ui->browser) + refreshTableBrowsers(); } connect(&db, &DBBrowserDB::structureUpdated, this, [update_structure = std::move(update_structure)]() { From dac47f9335c618ff0cf5785ab7fbee8a7a793e8f Mon Sep 17 00:00:00 2001 From: Nikolay Zlatev Date: Wed, 28 Aug 2024 21:55:55 +0300 Subject: [PATCH 41/67] If we have file passed from the cli, skip autoLoadLastDBFileAtStartup --- src/Application.cpp | 3 +++ src/MainWindow.cpp | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Application.cpp b/src/Application.cpp index d47b5b4fa..9fdff1e15 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -285,6 +285,9 @@ Application::Application(int& argc, char** argv) : QScreen *screen = primaryScreen(); setStyle(new DB4SProxyStyle(18, screen != nullptr ? screen->logicalDotsPerInch() : 96, style())); + // Skip db/project autoLoadLastDBFileAtStartup if we have file passed from the cli + Settings::setValue("tmp", "fileWillBeOpenedFromCLI", !fileToOpen.isEmpty(), false); + // Show main window m_mainWindow = new MainWindow(); m_mainWindow->show(); diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 064a183d6..895b3d09a 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -95,7 +95,8 @@ MainWindow::MainWindow(QWidget* parent) populateStructure(old_tables); }; - if (Settings::getValue("General", "autoLoadLastDBFileAtStartup").toBool()) { + if (!Settings::getValue("tmp", "fileWillBeOpenedFromCLI").toBool() && + Settings::getValue("General", "autoLoadLastDBFileAtStartup").toBool()) { recentFileActs[0]->trigger(); update_structure(); if (ui->mainTab->currentWidget() == ui->browser) From da7772e01918e6b4fa2a570998e90cf5751b575f Mon Sep 17 00:00:00 2001 From: Nikolay Zlatev Date: Fri, 30 Aug 2024 15:36:40 +0300 Subject: [PATCH 42/67] Workaround for issue #3706 on GNOME Mutter compositor --- src/MainWindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 895b3d09a..e857f9a1f 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -78,6 +78,7 @@ MainWindow::MainWindow(QWidget* parent) activateFields(false); updateRecentFileActions(); + QApplication::processEvents(); auto update_structure = [this] { const auto docks = allTableBrowserDocks(); From 57a41abd5d586f9632e8bd2b3c61b37d92afde3f Mon Sep 17 00:00:00 2001 From: Nikolay Zlatev Date: Sat, 31 Aug 2024 00:51:40 +0300 Subject: [PATCH 43/67] Revert all workarounds for #3706 and apply a fix Let's hope :) --- src/MainWindow.cpp | 33 +++++++++------------------------ src/SqlUiLexer.cpp | 7 ++++++- 2 files changed, 15 insertions(+), 25 deletions(-) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index e857f9a1f..a2e8aeace 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -78,35 +78,11 @@ MainWindow::MainWindow(QWidget* parent) activateFields(false); updateRecentFileActions(); - QApplication::processEvents(); - - auto update_structure = [this] { - const auto docks = allTableBrowserDocks(); - std::vector old_tables; - old_tables.reserve(docks.size()); - for(const auto &dock: docks) { - old_tables.push_back(dock->tableBrowser()->currentlyBrowsedTableName()); - } - - dbStructureModel->reloadData(); - // Process all waiting events before we call populateStructure, - // giving the Application a chance to attach all Widgets. - // See #3706 - QApplication::processEvents(); - populateStructure(old_tables); - }; if (!Settings::getValue("tmp", "fileWillBeOpenedFromCLI").toBool() && Settings::getValue("General", "autoLoadLastDBFileAtStartup").toBool()) { recentFileActs[0]->trigger(); - update_structure(); - if (ui->mainTab->currentWidget() == ui->browser) - refreshTableBrowsers(); } - - connect(&db, &DBBrowserDB::structureUpdated, this, [update_structure = std::move(update_structure)]() { - update_structure(); - }); } MainWindow::~MainWindow() @@ -159,6 +135,15 @@ void MainWindow::init() // Set up DB structure tab dbStructureModel = new DbStructureModel(db, this); + connect(&db, &DBBrowserDB::structureUpdated, this, [this]() { + std::vector old_tables; + for(const auto& d : allTableBrowserDocks()) + old_tables.push_back(d->tableBrowser()->currentlyBrowsedTableName()); + + dbStructureModel->reloadData(); + + populateStructure(old_tables); + }); ui->dbTreeWidget->setModel(dbStructureModel); ui->dbTreeWidget->setColumnWidth(DbStructureModel::ColumnName, 300); ui->dbTreeWidget->setColumnHidden(DbStructureModel::ColumnObjectType, true); diff --git a/src/SqlUiLexer.cpp b/src/SqlUiLexer.cpp index ef97d18d0..314a73bca 100644 --- a/src/SqlUiLexer.cpp +++ b/src/SqlUiLexer.cpp @@ -195,7 +195,12 @@ void SqlUiLexer::setupAutoCompletion() listFunctions.append(keyword.first); } - autocompleteApi->prepare(); + // Push the QsciAPIs::prepare method call to the + // execution queue, callers should receive + // callbacks in order. + QMetaObject::invokeMethod(this, [this] { + autocompleteApi->prepare(); + }, Qt::QueuedConnection); } void SqlUiLexer::setTableNames(const QualifiedTablesMap& tables) From 2b15d3765f1fae4a1f18c68dce573b1dde3b959f Mon Sep 17 00:00:00 2001 From: SeongTae Jeong Date: Wed, 11 Sep 2024 10:07:21 +0900 Subject: [PATCH 44/67] This should fix #2567 --- src/MainWindow.cpp | 34 ++++++++++++++++++++++------------ 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index a2e8aeace..29575313a 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -562,6 +562,9 @@ bool MainWindow::fileOpen(const QString& fileName, bool openFromProject, bool re // When a new DB file has been open while a project is open, set the project modified. if(!currentProjectFilename.isEmpty()) isProjectModified = true; + } else { + // loadProject will init the rest + return true; } if(ui->tabSqlAreas->count() == 0) openSqlTab(true); @@ -2720,6 +2723,8 @@ MainWindow::LoadAttempResult MainWindow::loadProject(QString filename, bool read addToRecentFilesMenu(filename, readOnly); currentProjectFilename = filename; + int projectRestoreIdx = -1; + QString projectRestoreTabs; while(!xml.atEnd() && !xml.hasError()) { // Read next token @@ -2771,16 +2776,14 @@ MainWindow::LoadAttempResult MainWindow::loadProject(QString filename, bool read // Window settings while(xml.readNext() != QXmlStreamReader::EndElement && xml.name() != "window") { - if(xml.name() == "main_tabs") { - // Currently open tabs - restoreOpenTabs(xml.attributes().value("open").toString()); - // Currently selected open tab - ui->mainTab->setCurrentIndex(xml.attributes().value("current").toString().toInt()); + if(xml.name() == QT_UNICODE_LITERAL("main_tabs")) { + projectRestoreTabs = xml.attributes().value("open").toString(); + projectRestoreIdx = xml.attributes().value("current").toString().toInt(); xml.skipCurrentElement(); } else if(xml.name() == "current_tab") { // Currently selected tab (3.11 or older format, first restore default open tabs) - restoreOpenTabs(defaultOpenTabs); - ui->mainTab->setCurrentIndex(xml.attributes().value("id").toString().toInt()); + projectRestoreTabs = defaultOpenTabs; + projectRestoreIdx = xml.attributes().value("id").toString().toInt(); xml.skipCurrentElement(); } } @@ -2910,7 +2913,6 @@ MainWindow::LoadAttempResult MainWindow::loadProject(QString filename, bool read } else { xml.skipCurrentElement(); } - } } else if(xml.name() == "tab_sql") { // Close all open tabs first @@ -2948,12 +2950,20 @@ MainWindow::LoadAttempResult MainWindow::loadProject(QString filename, bool read file.close(); - if(ui->mainTab->currentWidget() == ui->browser) { - refreshTableBrowsers(); // Refresh view + if (projectRestoreIdx != -1 && !projectRestoreTabs.isEmpty()) { + ui->mainTab->blockSignals(true); + restoreOpenTabs(projectRestoreTabs); + ui->mainTab->blockSignals(false); + ui->mainTab->setCurrentIndex(projectRestoreIdx); } - isProjectModified = false; - + // This is done because on consecutive reloads, + // we have events in queue which will activate + // &TableBrowser::projectModified, + // append ourselves after those events + QMetaObject::invokeMethod(this, [this] { + isProjectModified = false; + }, Qt::QueuedConnection); return !xml.hasError()? Success : Aborted; } else { // No project was opened From 03bbbc61594620432b5f69136b2b3e9f12ada866 Mon Sep 17 00:00:00 2001 From: SeongTae Jeong Date: Wed, 11 Sep 2024 20:04:08 +0900 Subject: [PATCH 45/67] Prepare to build v3.13.1-rc1 --- .github/workflows/build-appimage.yml | 2 +- .github/workflows/build-macos.yml | 1 + .github/workflows/build-windows.yml | 6 +++--- .github/workflows/cppcmake.yml | 2 +- .github/workflows/release.yml | 2 +- CMakeLists.txt | 2 +- installer/macos/nightly.json | 2 +- installer/macos/notarize.sh | 2 +- installer/windows/variables.wxi | 2 +- src/app.plist | 6 +++--- 10 files changed, 14 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build-appimage.yml b/.github/workflows/build-appimage.yml index fb68124ae..3c41dd6fc 100644 --- a/.github/workflows/build-appimage.yml +++ b/.github/workflows/build-appimage.yml @@ -33,7 +33,7 @@ jobs: run: | wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage" chmod a+x linuxdeployqt-continuous-x86_64.AppImage - export VERSION=v3.13.0 + export VERSION=v3.13.1-rc1 ./linuxdeployqt-continuous-x86_64.AppImage appdir/usr/share/applications/*.desktop -appimage - name: Rename a file diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index b2d2d476e..8915c5a46 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -36,6 +36,7 @@ jobs: - name: Configure build run: | + sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLite-v3.13.1-rc1"/' CMakeLists.txt mkdir build && cd build cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64" -DcustomTap=1 -DENABLE_TESTING=ON -Dsqlcipher=1 .. diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 555c0989d..0fcb57bc3 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -143,7 +143,7 @@ jobs: cd installer/windows ./build.cmd "${{ matrix.arch }}".ToLower() $ARCH="${{ matrix.arch }}".ToLower() - mv DB.Browser.for.SQLite-*.msi "DB.Browser.for.SQLite-v3.13.0-$ARCH.msi" + mv DB.Browser.for.SQLite-*.msi "DB.Browser.for.SQLite-v3.13.1-rc1-$ARCH.msi" - if: github.event_name != 'pull_request' name: Upload artifacts for code signing with SignPath @@ -163,14 +163,14 @@ jobs: organization-id: '${{ secrets.SIGNPATH_ORGANIZATION_ID }}' output-artifact-directory: .\installer\windows project-slug: 'sqlitebrowser' - signing-policy-slug: 'release-signing' + signing-policy-slug: 'test-signing' wait-for-completion: true - if: github.event_name != 'pull_request' name: Create ZIP run: | $ARCH="${{ matrix.arch }}".ToLower() - $FILENAME_FORMAT="DB.Browser.for.SQLite-v3.13.0-$ARCH.zip" + $FILENAME_FORMAT="DB.Browser.for.SQLite-v3.13.1-rc1-$ARCH.zip" Start-Process msiexec.exe -ArgumentList "/a $(dir installer\windows\DB.Browser.for.SQLite-*.msi) /q TARGETDIR=$PWD\target\" -Wait if ("${{ matrix.arch }}" -eq "Win32") { move target\System\* "target\DB Browser for SQLite\" diff --git a/.github/workflows/cppcmake.yml b/.github/workflows/cppcmake.yml index 749670121..a2f9dd932 100644 --- a/.github/workflows/cppcmake.yml +++ b/.github/workflows/cppcmake.yml @@ -1,4 +1,4 @@ -name: Build v3.13.0 +name: Build v3.13.1-rc1 on: workflow_dispatch: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5bc0b806a..fb4b12f64 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,7 +4,7 @@ on: workflow_call: env: - tag_name: "v3.13.0" + tag_name: "v3.13.1-rc1" jobs: release: diff --git a/CMakeLists.txt b/CMakeLists.txt index a581da5a6..c33cdf013 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.15) project(sqlitebrowser - VERSION 3.13.0 + VERSION 3.13.1 DESCRIPTION "GUI editor for SQLite databases" ) diff --git a/installer/macos/nightly.json b/installer/macos/nightly.json index 3f5545841..dee4fa753 100644 --- a/installer/macos/nightly.json +++ b/installer/macos/nightly.json @@ -11,7 +11,7 @@ } }, "contents": [ - { "x": 90, "y": 180, "type": "file", "path": "DB Browser for SQLite.app" }, + { "x": 90, "y": 180, "type": "file", "path": "DB Browser for SQLite-v3.13.1-rc1.app" }, { "x": 395, "y": 180, "type": "link", "path": "/Applications" }, { "x": 90, "y": 380, "type": "position", "path": ".background" }, diff --git a/installer/macos/notarize.sh b/installer/macos/notarize.sh index 8ecb2f4e9..3e995ca5c 100644 --- a/installer/macos/notarize.sh +++ b/installer/macos/notarize.sh @@ -74,7 +74,7 @@ done mv build/*.app installer/macos # Create the DMG -TARGET="DB.Browser.for.SQLite-v3.13.0.dmg" +TARGET="DB.Browser.for.SQLite-v3.13.1-rc1.dmg" appdmg --quiet installer/macos/nightly.json "$TARGET" codesign --sign "$DEV_ID" --verbose --options=runtime --timestamp "$TARGET" diff --git a/installer/windows/variables.wxi b/installer/windows/variables.wxi index fbedf0c31..d52749177 100644 --- a/installer/windows/variables.wxi +++ b/installer/windows/variables.wxi @@ -3,7 +3,7 @@ - +